/[smecontribs]/rpms/smeserver-affa/contribs7/smeserver-affa.spec
ViewVC logotype

Diff of /rpms/smeserver-affa/contribs7/smeserver-affa.spec

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

Revision 1.1 by slords, Tue Feb 26 01:05:31 2008 UTC Revision 1.11 by mweinber, Mon Mar 10 17:43:23 2008 UTC
# Line 2  Summary: Makes the SME server a dedicate Line 2  Summary: Makes the SME server a dedicate
2  %define name smeserver-affa  %define name smeserver-affa
3  Name: %{name}  Name: %{name}
4  %define version 0.9.0  %define version 0.9.0
5  %define release 1  %define release 11
6  Version: %{version}  Version: %{version}
7  Release: %{release}%{?dist}  Release: %{release}%{?dist}
8  License: GNU GPL (GNU General Public License)  License: GNU GPL (GNU General Public License)
# Line 14  AutoReq: no Line 14  AutoReq: no
14  Requires: smeserver-release >= 7  Requires: smeserver-release >= 7
15  Requires: perl-Filesys-DiskFree  Requires: perl-Filesys-DiskFree
16  BuildRequires: e-smith-devtools  BuildRequires: e-smith-devtools
17    Patch0: smeserver-affa-0.9.0-debugsshquiet.patch
18    Patch1: smeserver-affa-0.9.0-defaultRemoteHostName.patch
19    Patch2: smeserver-affa-0.9.0-dovecotDeleteNewStyleIndexFiles.patch
20    Patch3: smeserver-affa-0.9.0-createBackupFileOption.patch
21    Patch4: smeserver-affa-0.9.0-createBackupFileOption2.patch
22    Patch5: smeserver-affa-0.9.0-trapsignals.patch
23    Patch5: smeserver-affa-0.9.0-trapsignals.patch
24    Patch6: smeserver-affa-0.9.0-bug4035.patch
25    
26  %description  %description
27  Main purpose ist to make the SME server a dedicated rsync based backup server.  Main purpose ist to make the SME server a dedicated rsync based backup server.
28  Also providing functions to backup to USB disks or SMB shares in SOHO environments.  Also providing functions to backup to USB disks or SMB shares in SOHO environments.
29    
30  %changelog  %changelog
31    * Mon Mar 10 2008 Michael Weinberger 0.9.0-11
32      Specfile fix
33    * Mon Mar 10 2008 Michael Weinberger 0.9.0-10
34      Delete locally created watchdog file after remotecopy
35      Bugfix 4035
36      Added default AutoUnmount property to sample script
37      Fix man page
38      Do not delete md5sum in --create-backup-file when verify is skipped by user
39      Set lock in --create-backup-file
40    * Sun Mar 09 2008 Michael Weinberger 0.9.0-9
41      trap signals in --create-backup-file
42    * Sat Mar 08 2008 Michael Weinberger 0.9.0-8
43      Permissions in /usr/lib/affa
44    * Sat Mar 08 2008 Michael Weinberger 0.9.0-7
45      md5sum in --create-backup-file
46    * Fri Mar 07 2008 Michael Weinberger 0.9.0-6
47      Added option --create-backup-file
48      Using line number as error code in affaErrorExit()
49      Fixed /etc/profile.d/affa.sh
50      
51    * Mon Mar 03 2008 Michael Weinberger 0.9.0-5
52    - delete new style Dovecot's index files dovecot.index*
53    - delete dovecot index files on remote server in --full-restore
54    
55    * Fri Feb 29 2008 Michael Weinberger 0.9.0-4
56      set localhost as default remoteHostName in /etc/e-smith/templates//etc/cron.d/affa/00jobs
57    
58    * Wed Feb 27 2008 Michael Weinberger 0.9.0-3
59      removed %post from spec file
60    
61    * Sat Feb 02 2008 Michael Weinberger 0.9.0-2
62      Bugfix: Report db was not deleted in deleteJob()
63      don't use -q on ssh commands with Debug=yes
64    
65  * Fri Feb 1 2008 Shad L. Lords <slords@mail.com> 0.9.0-1  * Fri Feb 1 2008 Shad L. Lords <slords@mail.com> 0.9.0-1
66  - Fix specfile for building in new buildsystem  - Fix specfile for building in new buildsystem
67    
# Line 285  Also providing functions to backup to US Line 327  Also providing functions to backup to US
327    
328  %prep  %prep
329  %setup -q -n %{name}-%{version}  %setup -q -n %{name}-%{version}
330    %patch0 -p1
331    %patch1 -p1
332    %patch2 -p1
333    %patch3 -p1
334    %patch4 -p1
335    %patch5 -p1
336    %patch6 -p1
337    
338  %build  %build
339    
# Line 295  rm -f %{name}-%{version}-filelist Line 344  rm -f %{name}-%{version}-filelist
344    
345  perl createlinks $RPM_BUILD_ROOT  perl createlinks $RPM_BUILD_ROOT
346    
347    # Set version String
348    cp -a $RPM_BUILD_ROOT/sbin/e-smith/affa $RPM_BUILD_ROOT/sbin/e-smith/affa.tmp
349    VERSIONSTRING=%{version}-`echo %{release}|sed -e 's/\..*$//'`
350    sed -e "s/my \$VERSION.*;/my \$VERSION='$VERSIONSTRING';/" < $RPM_BUILD_ROOT/sbin/e-smith/affa.tmp > $RPM_BUILD_ROOT/sbin/e-smith/affa
351    rm -f $RPM_BUILD_ROOT/sbin/e-smith/affa.tmp
352    
353  rm -f %{name}-%{version}-filelist  rm -f %{name}-%{version}-filelist
354    
355  find $RPM_BUILD_ROOT -depth -type f -print |\  find $RPM_BUILD_ROOT -depth -type f -print |\
# Line 302  find $RPM_BUILD_ROOT -depth -type f -pri Line 357  find $RPM_BUILD_ROOT -depth -type f -pri
357   -e "s@^/sbin/e-smith/@%attr(0750,root,root) &@"\   -e "s@^/sbin/e-smith/@%attr(0750,root,root) &@"\
358   -e "s@^/etc/profile.d/@%attr(0755,root,root) &@"\   -e "s@^/etc/profile.d/@%attr(0755,root,root) &@"\
359   -e "s@^/etc/e-smith/templates/@%attr(0644,root,root) &@"\   -e "s@^/etc/e-smith/templates/@%attr(0644,root,root) &@"\
360     -e "s@^/usr/lib/affa/COPYING@%attr(0444,root,root) &@"\
361     -e "s@^/usr/lib/affa/@%attr(0750,root,root) &@"\
362   >> %{name}-%{version}-filelist   >> %{name}-%{version}-filelist
363    
364  find $RPM_BUILD_ROOT -depth -type l -print |\  find $RPM_BUILD_ROOT -depth -type l -print |\
# Line 311  find $RPM_BUILD_ROOT -depth -type l -pri Line 368  find $RPM_BUILD_ROOT -depth -type l -pri
368  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
369  exit 0  exit 0
370    
 %post  
 /sbin/e-smith/db affa get AffaGlobalDisable > /dev/null || /sbin/e-smith/affa --make-cronjobs > /dev/null  
371    
372  %files -f %{name}-%{version}-filelist  %files -f %{name}-%{version}-filelist
373  %defattr(-,root,root)  %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