/[smeserver]/rpms/smeserver-yum/sme10/smeserver-yum.spec
ViewVC logotype

Diff of /rpms/smeserver-yum/sme10/smeserver-yum.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.1 by stephdl, Fri Feb 5 23:20:26 2016 UTC Revision 1.16 by unnilennium, Wed Mar 29 20:26:56 2017 UTC
# Line 1  Line 1 
1  # $Id: smeserver-yum.spec,v 1.14 2016/01/13 10:55:43 vip-ire Exp $  # $Id: smeserver-yum.spec,v 1.15 2017/03/27 21:40:56 unnilennium 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.6.0  %define version 2.6.0
7  %define release 1  %define release 14
8  Version: %{version}  Version: %{version}
9  Release: %{release}%{?dist}  Release: %{release}%{?dist}
10  License: GPL  License: GPL
11  Group: SMEServer/addon  Group: SMEServer/addon
12  Source: %{name}-%{version}.tar.xz  Source: %{name}-%{version}.tar.xz
13    Patch0: smeserver-yum-2.6.0.SME10.patch
14    Patch1: smeserver-yum-2.6.0.SME10CentOS7EPEL7Keys.rpm
15    Patch2: smeserver-yum-2.6.0.bz8834.DeltaRpm.patch
16    Patch3: smeserver-yum-2.6.0.bz1502.DownloadOnly.patch
17    Patch4: smeserver-yum-2.6.0.bz9903.remiGPG.patch
18    Patch5: smeserver-yum-2.6.0.bz8705.avoidReboot.patch
19    Patch6: smeserver-yum-2.6.0.bz10119.scloGPGkey.patch
20    Patch7: smeserver-yum-2.6.0.bz10156.remContrib.patch
21    Patch8: smeserver-yum-2.6.0.bz8705.avoidReboot-fixKeyError.patch
22    Patch9: smeserver-yum-2.6.0.bz8705.avoidReboot-service-names.patch
23    
24  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
25  BuildArchitectures: noarch  BuildArchitectures: noarch
26  Requires: e-smith-formmagick >= 1.4.0-12  Requires: e-smith-formmagick >= 1.4.0-12
# Line 25  Requires: yum-plugin-fastestmirror Line 36  Requires: yum-plugin-fastestmirror
36  Obsoletes: yum-plugin-installonlyn  Obsoletes: yum-plugin-installonlyn
37  Obsoletes: yum-protect-packages <= 1.1.16  Obsoletes: yum-protect-packages <= 1.1.16
38  Requires: mailx  Requires: mailx
39    Requires: deltarpm
40  BuildRequires: e-smith-devtools >= 1.13.1-03  BuildRequires: e-smith-devtools >= 1.13.1-03
41    BuildRequires: python
42  Conflicts: centos-yumconf  Conflicts: centos-yumconf
43  AutoReqProv: no  AutoReqProv: no
44  %description  %description
45  %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
46    
47    %prep
48    %setup
49    %patch0 -p1
50    %patch1 -p1
51    %patch2 -p1
52    %patch3 -p1
53    %patch4 -p1
54    %patch5 -p1
55    %patch6 -p1
56    %patch7 -p1
57    %patch8 -p1
58    %patch9 -p1
59    
60    %build
61    perl createlinks
62    ln -s /var/service/yum root/service/yum
63    mkdir -p root/etc/yum.smerepos.d
64    
65    %install
66    /bin/rm -rf $RPM_BUILD_ROOT
67    (cd root   ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
68    /bin/rm -f %{name}-%{version}-filelist
69    /sbin/e-smith/genfilelist \
70        --file '/sbin/e-smith/yum_update_dbs' 'attr(0700,root,root)' \
71        --file '/sbin/e-smith/yum' 'attr(0755,root,root)' \
72        --file '/sbin/e-smith/check4updates' 'attr(0755,root,root)' \
73        --file '/sbin/e-smith/check4contribsupdates' 'attr(0755,root,root)' \
74        --file '/sbin/e-smith/yumdownloadonly' 'attr(0755,root,root)' \
75        --file '/etc/cron.daily/smeserver-yum' 'attr(0700,root,root)' \
76        --file /var/service/yum/down 'attr(0644,root,root)' \
77        --file /var/service/yum/run 'attr(0755,root,root)' \
78        --dir /var/service/yum/log 'attr(0755,root,root)' \
79        --dir /var/service/yum/log/supervise 'attr(0700,root,root)' \
80        --dir /var/service/yum/supervise 'attr(0700,root,root)' \
81        --file /var/service/yum/log/run 'attr(0755,root,root)' \
82        --dir /var/log/yum 'attr(2750,smelog,smelog)' \
83        $RPM_BUILD_ROOT > %{name}-%{version}-%{release}-filelist
84    
85    %clean
86    /bin/rm -rf $RPM_BUILD_ROOT
87    
88    %files -f %{name}-%{version}-%{release}-filelist
89    
90    %defattr(-,root,root)
91    
92    
93  %changelog  %changelog
94    * Wed Mar 29 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-14.sme
95    - correct service names with plugin to avoid reboot [SME: 8705]
96    - code by stefano zamboni <zamboni@mind-at-work.it>
97    
98    * Mon Mar 27 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme
99    - fix KeyError with plugin to avoid reboot [SME: 8705]
100    - code by stefano zamboni <zamboni@mind-at-work.it>
101    
102    * Mon Mar 20 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-12.sme
103    - remove centos contrib repo [SME: 10156]
104    
105    * Sat Feb 25 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme
106    - added centos SCLo SIG gpg rpm signing key [SME: 10119]
107    - will allow to install SCL packages directly from smecontribs
108    
109    * Sat Feb 18 2017 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-10.sme
110    - Added smeserver-yum-2.6.0.bz8705.avoidReboot.patch [SME: 8705]
111    - code by stefano zamboni <zamboni@mind-at-work.it>
112    - Avoid to reboot after the installation of a smeserver-* package
113    
114    * Fri Jan 06 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
115    - add Remi Collet RPM GPG KEY [SME: 9903]
116    
117    * Thu Aug 04 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-7.sme
118    - Rpm updates can be downloaded during the night [SME: 1502]
119    - Added smeserver-yum-2.6.0.bz1502.DownloadOnly.patch
120    
121    * Mon Aug 1 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-6.sme
122    - Deltarpm is now a setting in the yum panel (disabled by default)
123    - Added smeserver-yum-2.6.0.bz8834.DeltaRpm.patch [SME: 8834]
124    
125    * Fri May 27 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-5.sme
126    - adding Koozali SME10, EPEL7 and Centos7 gpg keys [SME: 9533]
127    
128    * Thu May 12 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-4.sme
129    - Rebuild [SME: 9393]
130    
131    * Wed Mar 23 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-3.sme
132    - yum points now to SME10 mirrors [SME: 9377]
133    - moved changelog at the end of file
134    - Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
135      by assuming the date is correct and changing the weekday.
136      Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or ....
137      Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
138      Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or ....
139    
140    
141    * Sun Feb 7 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-2.sme
142    - Add python to BuildReq so brp-python-bytecode compiles sme yum plugin
143      [SME: 9229]
144    
145  * Sat Feb 06 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-1.sme  * Sat Feb 06 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-1.sme
146  - Initial release to sme10  - Initial release to sme10
147    
# Line 265  AutoReqProv: no Line 375  AutoReqProv: no
375  * Wed Nov 29 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-20  * Wed Nov 29 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-20
376  - Revert to 10s panel refresh [SME: 2097]  - Revert to 10s panel refresh [SME: 2097]
377    
378  * Fri Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-19  * Thu Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-19
379      Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or ....
380  - Make CentOS base and updates enabled/Visible by default [SME: 1849]  - Make CentOS base and updates enabled/Visible by default [SME: 1849]
381  - Migrate CentOS base and updates to Visible, but leave status [SME: 1849]  - Migrate CentOS base and updates to Visible, but leave status [SME: 1849]
382    
383  * Fri Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-18  * Thu Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-18
384      Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or ....
385  - Adjust wording on post-upgrade page [SME: 2076]  - Adjust wording on post-upgrade page [SME: 2076]
386    
387  * Tue Nov 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-17  * Tue Nov 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-17
# Line 281  AutoReqProv: no Line 393  AutoReqProv: no
393    page is displayed from other sessions    page is displayed from other sessions
394  - TODO: Re-add display of LogFile prior to reconfigure  - TODO: Re-add display of LogFile prior to reconfigure
395    
396  * Fri Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-15  * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-15
397      Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
398  - Add dependency on yum-plugin-fastestmirror [SME: 1163]  - Add dependency on yum-plugin-fastestmirror [SME: 1163]
399  - Alpha sort dependencies  - Alpha sort dependencies
400    
401  * Fri Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-14  * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-14
402      Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
403  - Add MirrorList options to each of the SME repos [SME: 1163]  - Add MirrorList options to each of the SME repos [SME: 1163]
404    
405  * Fri Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-13  * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-13
406      Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
407  - Put back missed patch for post-upgrade [SME: 2071]  - Put back missed patch for post-upgrade [SME: 2071]
408    
409  * Fri Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-12  * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-12
410      Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
411  - Re-add post-upgrade handling [SME: 2071]  - Re-add post-upgrade handling [SME: 2071]
412  - Display yum output  - Display yum output
413  - Lower refresh to 3 seconds from 10  - Lower refresh to 3 seconds from 10
# Line 332  AutoReqProv: no Line 448  AutoReqProv: no
448  * Wed Mar 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-01  * Wed Mar 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-01
449  - Roll stable stream version. [SME: 1016]  - Roll stable stream version. [SME: 1016]
450    
451  * Wed Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-26  * Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-26
452  - And migrate old SME repo URLs to new paths [SME: 951]  - And migrate old SME repo URLs to new paths [SME: 951]
453    
454  * Wed Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-25  * Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-25
455  - Change SME Server repo URLs to match repo names so we avoid confusion  - Change SME Server repo URLs to match repo names so we avoid confusion
456    with CentOS repos and can remove the symlinks [SME: 951]    with CentOS repos and can remove the symlinks [SME: 951]
457    
458  * Wed Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-24  * Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-24
459  - Don't force the BaseURL properties - just set defaults [SME: 951]  - Don't force the BaseURL properties - just set defaults [SME: 951]
460    
461  * Wed Feb 22 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-23  * Wed Feb 22 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-23
# Line 643  AutoReqProv: no Line 759  AutoReqProv: no
759    are modified for the SMEServer releases    are modified for the SMEServer releases
760  - INSTALL: Need to manually remove old version of yum_repositories DB  - INSTALL: Need to manually remove old version of yum_repositories DB
761    
762  * Fri May 31 2005 Gordon Rowell <gordonr@gormand.com.au>  * Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au>
763      Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or ....
764  - [1.1.0-01gr05]  - [1.1.0-01gr05]
765  - Add enable/disable repository support to configuration page  - Add enable/disable repository support to configuration page
766    
767  * Fri May 31 2005 Gordon Rowell <gordonr@gormand.com.au>  * Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au>
768      Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or ....
769  - [1.1.0-01gr04]  - [1.1.0-01gr04]
770  - Hide empty group/package select boxes  - Hide empty group/package select boxes
771    
# Line 893  AutoReqProv: no Line 1011  AutoReqProv: no
1011  * Thu Jan 22 2004 Darrell May <dmay@myezserver.com>  * Thu Jan 22 2004 Darrell May <dmay@myezserver.com>
1012  - [0.0.1a-01]  - [0.0.1a-01]
1013  - Original version  - Original version
   
 %prep  
 %setup  
   
 %build  
 perl createlinks  
 ln -s /var/service/yum root/service/yum  
 mkdir -p root/etc/yum.smerepos.d  
   
 %install  
 /bin/rm -rf $RPM_BUILD_ROOT  
 (cd root   ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)  
 /bin/rm -f %{name}-%{version}-filelist  
 /sbin/e-smith/genfilelist \  
     --file '/sbin/e-smith/yum_update_dbs' 'attr(0700,root,root)' \  
     --file '/sbin/e-smith/yum' 'attr(0755,root,root)' \  
     --file '/sbin/e-smith/check4updates' 'attr(0755,root,root)' \  
     --file '/sbin/e-smith/check4contribsupdates' 'attr(0755,root,root)' \  
     --file '/etc/cron.daily/smeserver-yum' 'attr(0700,root,root)' \  
     --file /var/service/yum/down 'attr(0644,root,root)' \  
     --file /var/service/yum/run 'attr(0755,root,root)' \  
     --dir /var/service/yum/log 'attr(0755,root,root)' \  
     --dir /var/service/yum/log/supervise 'attr(0700,root,root)' \  
     --dir /var/service/yum/supervise 'attr(0700,root,root)' \  
     --file /var/service/yum/log/run 'attr(0755,root,root)' \  
     --dir /var/log/yum 'attr(2750,smelog,smelog)' \  
     $RPM_BUILD_ROOT > %{name}-%{version}-%{release}-filelist  
   
 %clean  
 /bin/rm -rf $RPM_BUILD_ROOT  
   
 %files -f %{name}-%{version}-%{release}-filelist  
   
 %defattr(-,root,root)  
   


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed