1 |
# $Id: smeserver-yum.spec,v 1.35 2009/05/30 18:05:01 slords Exp $ |
# $Id: smeserver-yum.spec,v 1.40 2009/11/05 18:43:13 slords Exp $ |
2 |
|
|
3 |
%define name smeserver-yum |
%define name smeserver-yum |
4 |
Summary: YUM, an rpm updater |
Summary: YUM, an rpm updater |
5 |
Name: %{name} |
Name: %{name} |
6 |
%define version 2.2.0 |
%define version 2.2.0 |
7 |
%define release 9 |
%define release 13 |
8 |
|
|
9 |
|
# These packages come from CentOS, but wee need to use care when |
10 |
|
# updating them - either we've patched them, or we need to do something |
11 |
|
# prior to taking the update |
12 |
|
|
13 |
|
# TODO: check mkinitrd,mdadm to see if needed |
14 |
|
%define centos_excludes initscripts |
15 |
|
|
16 |
Version: %{version} |
Version: %{version} |
17 |
Release: %{release}%{?dist} |
Release: %{release}%{?dist} |
18 |
License: GPL |
License: GPL |
24 |
Patch4: smeserver-yum-2.2.0-protected.patch |
Patch4: smeserver-yum-2.2.0-protected.patch |
25 |
Patch5: smeserver-yum-2.2.0-mirrorlist.patch |
Patch5: smeserver-yum-2.2.0-mirrorlist.patch |
26 |
Patch6: smeserver-yum-2.2.0-updatetoggle.patch |
Patch6: smeserver-yum-2.2.0-updatetoggle.patch |
27 |
|
Patch7: smeserver-yum-2.2.0-nosemi.patch |
28 |
|
Patch8: smeserver-yum-2.2.0-unsavedchanges.patch |
29 |
|
Patch9: smeserver-yum-2.2.0-import-keys.patch |
30 |
|
Patch10: smeserver-yum-2.2.0-fixremove.patch |
31 |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
32 |
BuildArchitectures: noarch |
BuildArchitectures: noarch |
33 |
Requires: e-smith-formmagick >= 1.4.0-12 |
Requires: e-smith-formmagick >= 1.4.0-12 |
51 |
%name is an implementation of http://linux.duke.edu/projects/yum on SME Server |
%name is an implementation of http://linux.duke.edu/projects/yum on SME Server |
52 |
|
|
53 |
%changelog |
%changelog |
54 |
* Sat Sep 12 2009 Stephen Noble <support@dungog.net> 2.2.0-9.sme |
* Mon May 17 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-13.sme |
55 |
|
- Migrate CentOS Exclude property default values to smeserver-yum [SME: 5962] |
56 |
|
|
57 |
|
* Thu Nov 5 2009 Shad L. Lords <slords@mail.com> 2.2.0-12.sme |
58 |
|
- only unlink file if we created it [SME: 5476] |
59 |
|
|
60 |
|
* Wed Oct 14 2009 Filipo Carletti <filippo.carletti@gmail.com> 2.2.0-11.sme |
61 |
|
- Import only keys not already imported [SME: 5507] |
62 |
|
|
63 |
|
* Tue Sep 15 2009 Shad L. Lords <slords@mail.com> 2.2.0-10.sme |
64 |
|
- set unsaved changes in yum event [SME: 5475] |
65 |
|
- move yum warming to sme yum plugin [SME: 5474] |
66 |
|
- ensure file exists before unlinking [SME: 5476] |
67 |
|
- remove semicolons from yum plugin |
68 |
|
|
69 |
|
* Tue Sep 15 2009 Shad L. Lords <slords@mail.com> 2.2.0-9.sme |
70 |
- Add frequency of updates toggle [SME: 3764] |
- Add frequency of updates toggle [SME: 3764] |
71 |
- remove stray files and directories |
- remove stray file |
72 |
|
|
73 |
* Sat May 30 2009 Shad L. Lords <slords@mail.com> 2.2.0-8.sme |
* Sat May 30 2009 Shad L. Lords <slords@mail.com> 2.2.0-8.sme |
74 |
- Add /etc/yum.smerepos.d to package [SME: 5305] |
- Add /etc/yum.smerepos.d to package [SME: 5305] |
858 |
%patch4 -p1 |
%patch4 -p1 |
859 |
%patch5 -p1 |
%patch5 -p1 |
860 |
%patch6 -p1 |
%patch6 -p1 |
861 |
|
%patch7 -p1 |
862 |
|
%patch8 -p1 |
863 |
|
%patch9 -p1 |
864 |
|
%patch10 -p1 |
865 |
|
|
866 |
%build |
%build |
867 |
perl createlinks |
perl createlinks |
876 |
|
|
877 |
mkdir -p root/etc/e-smith/db/yum_{available,installed,updates} |
mkdir -p root/etc/e-smith/db/yum_{available,installed,updates} |
878 |
|
|
879 |
|
YUM_REPOS=root/etc/e-smith/db/yum_repositories/ |
880 |
|
for dir in base updates |
881 |
|
do |
882 |
|
mkdir -p $YUM_REPOS/defaults/$dir |
883 |
|
echo %{centos_excludes} > $YUM_REPOS/defaults/$dir/Exclude |
884 |
|
done |
885 |
|
|
886 |
%install |
%install |
887 |
/bin/rm -rf $RPM_BUILD_ROOT |
/bin/rm -rf $RPM_BUILD_ROOT |
888 |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |