Blame SPECS/rsync.spec

d3382b
%global _hardened_build 1
b685ff
%define isprerelease 0
b685ff
b685ff
%if %isprerelease
b685ff
%define prerelease pre1
b685ff
%endif
b685ff
b685ff
Summary: A program for synchronizing files over a network
b685ff
Name: rsync
b685ff
Version: 3.0.9
4666ac
Release: 18%{?prerelease}%{?dist}
b685ff
Group: Applications/Internet
b685ff
URL: http://rsync.samba.org/
b685ff
b685ff
Source0: ftp://rsync.samba.org/pub/rsync/rsync-%{version}%{?prerelease}.tar.gz
b685ff
Source1: ftp://rsync.samba.org/pub/rsync/rsync-patches-%{version}%{?prerelease}.tar.gz
b685ff
Source2: rsyncd.socket
b685ff
Source3: rsyncd.service
b685ff
Source4: rsyncd.conf
b685ff
Source5: rsyncd.sysconfig
63c345
Source6: rsyncd@.service
b685ff
BuildRequires: libacl-devel, libattr-devel, autoconf, popt-devel, zlib-devel, systemd-units
b685ff
Requires: zlib
b685ff
Requires(post): systemd-units
b685ff
Requires(preun): systemd-units
b685ff
Requires(postun): systemd-units
b685ff
License: GPLv3+
b685ff
b685ff
Patch0: rsync-3.0.10-lose-track.patch
b685ff
Patch1: rsync-man.patch
b685ff
Patch2: rsync-3.1.0-protect_args.patch
d3382b
Patch3: rsync-3.0.6-iconv-logging.patch
63c345
Patch4: rsync-3.0.9-ineffective-owner.patch
4666ac
Patch5: rsync-3.1.0-sigterm-handle.patch
b685ff
b685ff
%description
b685ff
Rsync uses a reliable algorithm to bring remote and host files into
b685ff
sync very quickly. Rsync is fast because it just sends the differences
b685ff
in the files over the network instead of sending the complete
b685ff
files. Rsync is often used as a very powerful mirroring process or
b685ff
just as a more capable replacement for the rcp command. A technical
b685ff
report which describes the rsync algorithm is included in this
b685ff
package.
b685ff
b685ff
%prep
b685ff
# TAG: for pre versions use
b685ff
b685ff
%if %isprerelease
b685ff
%setup -q -n rsync-%{version}%{?prerelease}
b685ff
%setup -q -b 1 -n rsync-%{version}%{?prerelease}
b685ff
%else
b685ff
%setup -q
b685ff
%setup -q -b 1
b685ff
%endif
b685ff
b685ff
chmod -x support/*
b685ff
b685ff
#Needed for compatibility with previous patched rsync versions
b685ff
patch -p1 -i patches/acls.diff
b685ff
patch -p1 -i patches/xattrs.diff
b685ff
b685ff
#Enable --copy-devices parameter
b685ff
patch -p1 -i patches/copy-devices.diff
b685ff
b685ff
%patch0 -p1 -b .lose-track
b685ff
%patch1 -p1 -b .man
b685ff
%patch2 -p1 -b .protect_args
d3382b
%patch3 -p1 -b .iconv-logging
63c345
%patch4 -p1 -b .ineffective-owner
4666ac
%patch5 -p1 -b .sigterm-handle
b685ff
b685ff
%build
b685ff
rm -fr autom4te.cache
b685ff
autoconf -o configure.sh
b685ff
autoheader && touch config.h.in
b685ff
b685ff
%configure
b685ff
    
b685ff
make proto
b685ff
make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS"
b685ff
b685ff
%install
b685ff
rm -rf $RPM_BUILD_ROOT
b685ff
b685ff
%makeinstall INSTALLCMD='install -p' INSTALLMAN='install -p'
b685ff
b685ff
install -D -m644 %{SOURCE3} $RPM_BUILD_ROOT/%{_unitdir}/rsyncd.service
b685ff
install -D -m644 %{SOURCE2} $RPM_BUILD_ROOT/%{_unitdir}/rsyncd.socket
b685ff
install -D -m644 %{SOURCE4} $RPM_BUILD_ROOT/%{_sysconfdir}/rsyncd.conf
b685ff
install -D -m644 %{SOURCE5} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/rsyncd
63c345
install -D -m644 %{SOURCE6} $RPM_BUILD_ROOT/%{_unitdir}/rsyncd@.service
b685ff
b685ff
%clean
b685ff
rm -rf $RPM_BUILD_ROOT
b685ff
b685ff
%files
b685ff
%defattr(-,root,root)
b685ff
%doc COPYING NEWS OLDNEWS README support/ tech_report.tex
b685ff
%{_bindir}/%{name}
b685ff
%{_mandir}/man1/%{name}.1*
b685ff
%{_mandir}/man5/rsyncd.conf.5*
b685ff
%config(noreplace) %{_sysconfdir}/rsyncd.conf
b685ff
%config(noreplace) %{_sysconfdir}/sysconfig/rsyncd
b685ff
/%{_unitdir}/rsyncd.socket
b685ff
/%{_unitdir}/rsyncd.service
63c345
/%{_unitdir}/rsyncd@.service
b685ff
b685ff
%post
b685ff
%systemd_post rsyncd.service
b685ff
b685ff
%preun
b685ff
%systemd_preun rsyncd.service
b685ff
b685ff
%postun
b685ff
%systemd_postun_with_restart rsyncd.service
b685ff
b685ff
%changelog
4666ac
* Tue Jan 24 2017 Michal Ruprich - 3.0.9-18
4666ac
- Resolves: #1324754 -  rsyncd unit enters failed state on exit
4666ac
63c345
* Tue Jun 23 2015 Luboš Uhliarik <luhliari@redhat.com> - 3.0.9-17
63c345
- Resolves: #1082496 - socket activation for rsync doesn't work (added missing
63c345
  rsyncd@.service file)
63c345
63c345
* Tue Jun 23 2015 Luboš Uhliarik <luhliari@redhat.com> - 3.0.9-16
63c345
- Resolves: #1090825 - rsync -X is ineffective when setting owner/group
63c345
- Fixed bogus dates
63c345
d3382b
* Tue Feb 11 2014 Pavel Å imerda <psimerda@redhat.com> - 3.0.9-15
d3382b
- Resolves: #1032637 - rsync unit tests cannot be compiled
d3382b
- switch to hardened build
d3382b
d3382b
* Tue Jan 28 2014 Pavel Å imerda <psimerda@redhat.com> - 3.0.9-14
d3382b
- Resolves: #1052814 - rsync command is terminated with SIGSEGV
d3382b
- Resolves: #1052814 - add missing patch file
d3382b
d3382b
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.0.9-13
d3382b
- Mass rebuild 2014-01-24
d3382b
d3382b
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.0.9-12
d3382b
- Mass rebuild 2013-12-27
d3382b
b685ff
* Fri Jun 28 2013 Michal Luscon <mluscon@redhat.com> - 3.0.9-11
b685ff
- Add BuildRequires: systemd-units
b685ff
b685ff
* Mon Jun 17 2013 Michal Luscon <mluscon@redhat.com> - 3.0.9-10
b685ff
- Fixed: #947765 - rsync daemon chooses wrong destination place
b685ff
b685ff
* Fri May 17 2013 Michal Luscon <mluscon@redhat.com> - 3.0.9-9
b685ff
- Fix missing man page and help options
b685ff
b685ff
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.9-8
b685ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b685ff
b685ff
* Thu Nov 15 2012 Michal Luscon <mluscon@redhat.com> 3.0.9-6
b685ff
- Systemd units for rsync
b685ff
b685ff
* Tue Oct 23 2012 Michal Luscon <mluscon@redhat.com> 3.0.9-5
b685ff
- Reverted: #495310 - rsync contains forked copy of zlib
b685ff
b685ff
* Tue Oct 16 2012 Michal Luscon <mluscon@redhat.com> 3.0.9-4
b685ff
- Fixed: #823088 - rsync loses track of files with different directory prefixes
b685ff
- Fixed: #495310 - rsync contains forked copy of zlib
b685ff
b685ff
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.9-3
b685ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b685ff
b685ff
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.9-2
b685ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b685ff
b685ff
* Wed Sep 14 2011 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 3.0.9-1
b685ff
- Rebase to 3.0.9 (#741004)
b685ff
b685ff
* Wed Sep 14 2011 Vojtech Vitek (V-Teq) <vvitek@redhat.com> - 3.0.8-2
b685ff
- Fix security context of symbolic links (#709779)
b685ff
b685ff
* Tue Mar 29 2011 Vojtech Vitek <vvitek@redhat.com> - 3.0.8-1
b685ff
- Rebase to 3.0.8, remove buffer overflow patch (#691362, #675036)
b685ff
b685ff
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.7-4
b685ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b685ff
b685ff
* Mon Mar 29 2010 Jan Zeleny <jzeleny@redhat.com> - 3.0.7-3
b685ff
- buffer overflow patch replaced by upstream version
b685ff
b685ff
* Fri Jan 22 2010 Jan Zeleny <jzeleny@redhat.com> - 3.0.7-2
b685ff
- fixed issue with buffer overflow when using long filenames (#557916)
b685ff
b685ff
* Tue Jan 19 2010 Jan Zeleny <jzeleny@redhat.com> - 3.0.7-1
b685ff
- rebased to 3.0.7
b685ff
b685ff
* Mon Dec 07 2009 Jan Zeleny <jzeleny@redhat.com> - 3.0.6-4
b685ff
- applied patch to avoid retouching dir permissions (#542679)
b685ff
b685ff
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.6-3
b685ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b685ff
b685ff
* Mon Jun  1 2009 Simo Sorce <ssorce@redhat.com> 3.0.6-2
b685ff
- Final 3.0.6 release
b685ff
b685ff
* Thu May 21 2009 Ján ONDREJ (SAL) <ondrejj(at)salstar.sk> - 3.0.6-1pre1
b685ff
- Enabled patches/copy-devices.diff patch (bz#494313)
b685ff
b685ff
* Wed Apr 15 2009 Simo Sorce <ssorce@redhat.com> 3.0.6-0pre1
b685ff
- First 3.0.6 pre release
b685ff
- Also change the spec to simplify releasing pre-releases
b685ff
b685ff
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-1
b685ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b685ff
b685ff
* Thu Jan  1 2009 Simo Sorce <ssorce@redhat.com> 3.0.5-0.fc11
b685ff
- New upstream bugfix release
b685ff
b685ff
* Mon Sep  8 2008 Simo Sorce <ssorce@redhat.com> 3.0.4-0.fc10
b685ff
- New upstream bugfix release
b685ff
b685ff
* Mon Jun 30 2008 Simo Sorce <ssorce@redhat.com> 3.0.3-0.fc10
b685ff
- New upstream release
b685ff
b685ff
* Tue Apr  8 2008 Simo Sorce <ssorce@redhat.com> 3.0.2-0.fc9
b685ff
- Security release: http://rsync.samba.org/security.html#s3_0_2
b685ff
b685ff
* Fri Apr  4 2008 Simo Sorce <ssorce@redhat.com> 3.0.1-2.fc9
b685ff
- Make sure support scripts are not executable so that no bad perl dependecies
b685ff
  are created
b685ff
b685ff
* Fri Apr  4 2008 Simo Sorce <ssorce@redhat.com> 3.0.1-1.fc9
b685ff
- Add NEWS and support/ scripts in the docs section
b685ff
- 3.0.1 final
b685ff
b685ff
* Mon Mar 31 2008 Simo Sorce <ssorce@redhat.com> 3.0.1-0.3.pre3.fc9
b685ff
- 3.0.1 pre release #3
b685ff
- Fixes some annoying minor bugs (see release notes)
b685ff
b685ff
* Thu Mar 27 2008 Simo Sorce <ssorce@redhat.com> 3.0.1-0.2.pre2.fc9
b685ff
- 3.0.1 pre release #2
b685ff
- Fixes #439074
b685ff
b685ff
* Tue Mar 25 2008 Simo Sorce <ssorce@redhat.com> 3.0.1-0.1.pre1.fc9
b685ff
- 3.0.1 pre release #1
b685ff
- Fixes #438694
b685ff
b685ff
* Sun Mar  2 2008 Simo Sorce <ssorce@redhat.com> 3.0.0-1.fc9
b685ff
- Final 3.0.0 release
b685ff
b685ff
* Sat Feb 23 2008 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre10.fc9
b685ff
- Tenth preprelease of the 3.0.0 series
b685ff
b685ff
* Sat Feb 16 2008 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre9.fc9
b685ff
- Ninth preprelease of the 3.0.0 series
b685ff
b685ff
* Sat Feb  2 2008 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre8.fc9
b685ff
- Eight prerelease
b685ff
- Add second source, now patches are in a separate file
b685ff
- Add temporary fix to the xattrs.diff patch line as, in this version
b685ff
  the patch contains one extra humk already contained in acls.diff
b685ff
b685ff
* Sat Oct 27 2007 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre4.fc9
b685ff
- Fourth prerelease
b685ff
b685ff
* Mon Oct 15 2007 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre2.1.fc9
b685ff
- Add support for IPv6 by default with xinetd
b685ff
b685ff
* Fri Oct 12 2007 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre2.fc9
b685ff
- Second prerelease
b685ff
b685ff
* Wed Oct 10 2007 Simo Sorce <ssorce@redhat.com> 3.0.0-0.pre1.fc9
b685ff
- New Major version prerelease
b685ff
b685ff
* Wed Sep 5 2007 Simo Sorce <ssorce@redhat.com> 2.6.9-3.fc8
b685ff
- Add patch to fix crash bug with hardlinks and ACLs patches
b685ff
b685ff
* Mon Feb 19 2007 Adam Jackson <ajax@redhat.com> 2.6.9-2
b685ff
- Add dist tag to Release to fix upgrades from FC5 or FC6.
b685ff
b685ff
* Mon Feb 19 2007 Simo Sorce <ssorce@redhat.com> - 2.6.9-2
b685ff
- fix acl/xattr bug with --delete: (bz#229145)
b685ff
b685ff
* Wed Nov 22 2006 Florian La Roche <laroche@redhat.com> - 2.6.9-1
b685ff
- update to 2.6.9
b685ff
b685ff
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.8-3.1
b685ff
- rebuild
b685ff
b685ff
* Fri Jun 9 2006 Jay Fenlason <fenlason@redhat.com> 2.6.8-3
b685ff
- Add my xattrs_bug patch to fix a bug where xattrs don't get sent correctly.
b685ff
- Add BuildRequires to make sure libattr-devel and libacl-devel are avaliable
b685ff
- replace --with... with --enable... so they actually work
b685ff
- Add make, autoconf and gcc to BuildRequires
b685ff
b685ff
* Mon May 8 2006 Jay Fenlason <fenlason@redhat.com> 2.6.8-2
b685ff
- New upstream release
b685ff
- Use the upstream xattr patch instead of mine.  This closes
b685ff
  bz#190208 CVE-2006-2083 rsync buffer overflow issue
b685ff
b685ff
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.6.6-2.2.1
b685ff
- bump again for double-long bug on ppc(64)
b685ff
b685ff
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.6.6-2.2
b685ff
- rebuilt for new gcc4.1 snapshot and glibc changes
b685ff
b685ff
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
b685ff
- rebuilt
b685ff
b685ff
* Thu Jul 28 2005 Jay Fenlason <fenlason@redhat.com> 2.6.6-2
b685ff
- New upstream release.  See the NEWS file for details.
b685ff
b685ff
* Thu Jun 2 2005 Jay Fenlason <fenlason@redhat.com> 2.6.5-2
b685ff
- New upstream release
b685ff
b685ff
* Tue May 17 2005 Jay Fenlason <fenlason@redhat.com> 2.6.5-0.pre1.0
b685ff
- new upstream pre-release
b685ff
b685ff
* Tue May 17 2005 Jay Fenlason <fenlason@redhat.com> 2.6.4-3
b685ff
- Include the -address patch from upstream, to close
b685ff
  bz#154752 Unable to use --address in client mode
b685ff
b685ff
* Thu Mar 31 2005 Jay Fenlason <fenlason@redhat.com> 2.6.4-2
b685ff
- New upstream version
b685ff
b685ff
* Wed Mar 2 2005 Jay Fenlason <fenlason@redhat.com> 2.6.3-3
b685ff
- bump release, rebuild with gcc4
b685ff
- pass RPM_OPT_FLAGS to make
b685ff
b685ff
* Thu Feb 10 2005 Jay Fenlason <fenlason@redhat.com> 2.6.3-2
b685ff
- Added my -xattr patch, which is based on the -acl patch.
b685ff
b685ff
* Thu Sep 30 2004 Jay Fenlason <fenlason@redhat.com> 2.6.3-1
b685ff
- New upstream release.
b685ff
b685ff
* Tue Sep 21 2004 Jay Fenlason <fenlason@redhat.com> 2.6.3-0.pre2
b685ff
- new upstream version.
b685ff
b685ff
* Tue Aug 17 2004 Jay Fenlason <fenlason@redhat.com> 2.6.3-0.pre1
b685ff
- New upstream version with security fix for CAN-2004-0792
b685ff
- This obsoletes the -lastdir-corruption patch.
b685ff
b685ff
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
b685ff
- rebuilt
b685ff
b685ff
* Tue May 25 2004 Mark McLoughlin <markmc@redhat.com> - 2.6.2-1
b685ff
- Backport fix for crasher when passing multiple directories of the same
b685ff
  length (bug #123708)
b685ff
b685ff
* Fri Apr 30 2004 Jay Fenlason <fenlason@redhat.com> 2.6.2-0
b685ff
- New upstream version to correct the problems with 2.6.1.
b685ff
  This obsoletes all the patches to 2.6.1
b685ff
b685ff
* Thu Apr 29 2004 Jay Fenlason <fenlason@redhat.com> 2.6.1-1
b685ff
- Rsync 2.6.1 final.
b685ff
- Add a patch from Wayne Davison <wayned@samba.org> that fixes a
b685ff
  use of uninitilized memory in the map_uid and map_gid functions.
b685ff
- Add another patch from Wayne Davidson that fixes the -R option.
b685ff
- Add a patch (extracted from a patch by Sami Farin
b685ff
  <safari-rsync@safari.iki.fi>) to not ignore the return value
b685ff
  of close().
b685ff
b685ff
* Thu Mar 25 2004 Jay Fenlason <fenlason@redhat.com> 2.6.1-0.pre1
b685ff
- New upstream version
b685ff
b685ff
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
b685ff
- rebuilt
b685ff
b685ff
* Mon Jan  5 2004 Jay Fenlason <fenlason@redhat.com> 2.6.0-0
b685ff
- New upstream version, obsoletes the rsync-2.5.6-signal.patch
b685ff
b685ff
* Wed Dec  3 2003 Bill Nottingham <notting@redhat.com> 2.5.7-2
b685ff
- rebuild
b685ff
b685ff
* Wed Dec  3 2003 Bill Nottingham <notting@redhat.com> 2.5.7-1
b685ff
- update to 2.5.7
b685ff
b685ff
* Tue Aug 05 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-20
b685ff
- rebuild in new build env
b685ff
b685ff
* Tue Aug 05 2003 Lon Hohberger <lhh@redhat.com> 2.5.6-19
b685ff
- spec file fix
b685ff
b685ff
* Tue Aug 05 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-18
b685ff
- rebuild in new build env
b685ff
b685ff
* Tue Aug 05 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-17
b685ff
- fixed spec - added patch0 to prep.
b685ff
b685ff
* Tue Aug 05 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-16
b685ff
- rebuild in new build env
b685ff
b685ff
* Mon Aug 04 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-15
b685ff
- add rsync-2.5.6-signal.patch to fix kernel warnings that
b685ff
  appear because socket.c sets SIGCHLD to SIG_IGN and then
b685ff
  calls wait.  This is in response to bug#98740.  This patch
b685ff
  *has* been committed to CVS upstream and will be in
b685ff
  upstream rsync-2.5.7.
b685ff
b685ff
* Fri Jun 13 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-14
b685ff
- build scratch - for compile warnings
b685ff
b685ff
* Fri Jun 13 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-13
b685ff
- build scratch - for compile warnings
b685ff
b685ff
* Thu Jun 12 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-12
b685ff
- rebuild in new build env
b685ff
b685ff
* Thu Jun 12 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-11
b685ff
- removed rsync-2.5.6-sign.patch.  Upstream code
b685ff
  incorporates signed vs unsigned changes.
b685ff
b685ff
* Wed Jun 11 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-10_CVSHEAD_signpatch
b685ff
- build scratch - added rsync-2.5.6-sign.patch.
b685ff
b685ff
* Wed Jun 11 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-9_CVSHEAD_nopatches
b685ff
- build scratch.
b685ff
b685ff
* Wed Jun 11 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-8
b685ff
- build scratch - deleted rsync-2.5.6-sign.patch.
b685ff
b685ff
* Mon Jun 09 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-7
b685ff
- rebuild in new build env
b685ff
b685ff
* Thu Jun 05 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-6
b685ff
- removed patch rsync-2.5.4-maxdel.patch
b685ff
- removed patch rsync-2.4.6-segv.patch
b685ff
   - current 2.5.6 properly handles (no segfault) the situation
b685ff
     (rsync '[a]') that caused a need for this patch.
b685ff
- added patch rsync-2.5.6-sign.patch, which is a working
b685ff
  subset of patches (that still apply) included in the original
b685ff
  rsync-2.5.4-moresignage.patch
b685ff
b685ff
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
b685ff
- rebuilt
b685ff
63c345
* Tue Mar 11 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-4
b685ff
- rebuild in new build env
b685ff
63c345
* Tue Mar 11 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-3
b685ff
- fixed changelog comments
b685ff
b685ff
* Mon Mar 10 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-2
b685ff
- rebuild in new build env
b685ff
b685ff
* Mon Mar 10 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.6-1
b685ff
- update to 2.5.6 from upstream
b685ff
b685ff
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
b685ff
- rebuilt
b685ff
b685ff
* Fri Jan 17 2003 Hardy Merrill <hmerrill@redhat.com> 2.5.5-3
b685ff
- fix spelling mistake in rsync.xinetd.  #66036 & dup #75006
b685ff
b685ff
* Wed Dec 11 2002 Tim Powers <timp@redhat.com> 2.5.5-2
b685ff
- rebuild on all arches
b685ff
b685ff
* Mon Jun 24 2002 Bill Nottingham <notting@redhat.com> 2.5.5-1
b685ff
- update to 2.5.5
b685ff
b685ff
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
b685ff
- automated rebuild
b685ff
b685ff
* Thu May 23 2002 Tim Powers <timp@redhat.com>
b685ff
- automated rebuild
b685ff
b685ff
* Wed Apr 10 2002 Bill Nottingham <notting@redhat.com> 2.5.4-2
b685ff
- upstream patches: fix accidental use of --whole-file, fix
b685ff
  minor memory leak, and bad worst-case child kill behavior
b685ff
- make passing -e to rsync:// URLs not cause an error exit (#62489)
b685ff
b685ff
* Wed Mar 13 2002 Bill Nottingham <notting@redhat.com> 2.5.4-1
b685ff
- update to 2.5.4, do assorted patchmerging
b685ff
b685ff
* Wed Feb 20 2002 Bill Nottingham <notting@redhat.com>
b685ff
- fix --address (#60127)
b685ff
- call setgroups before dropping privs (<mkp@samba.org>)
b685ff
b685ff
* Mon Jan 28 2002 Bill Nottingham <notting@redhat.com>
b685ff
- fix some errors in the unsigned patch
b685ff
b685ff
* Sun Jan 27 2002 Bill Nottingham <notting@redhat.com>
b685ff
- rebuild to get proper LFS_CFLAGS
b685ff
b685ff
* Wed Jan 23 2002 Bill Nottingham <notting@redhat.com>
b685ff
- fix some signed/unsigned issues (<krahmer@suse.de>)
b685ff
- tweak ipv6 patch (#55337, <john.l.villalovos@intel.com>)
b685ff
- make xinetd file %config(noreplace)
b685ff
b685ff
* Fri Aug 17 2001 Bill Nottingham <notting@redhat.com>
b685ff
- fix segfault on weird arguments (#51801)
b685ff
b685ff
* Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
b685ff
- IPv6 patch (<pekkas@netcore.fi>) (#47780)
b685ff
b685ff
* Tue Jun 19 2001 Bill Nottingham <notting@redhat.com>
b685ff
- add patch to fix hangs at end of sync, and other odd behaviors (#42111)
b685ff
b685ff
* Sat Sep 30 2000 Florian La Roche <Florian.LaRoche@redhat.de>
b685ff
- add xinetd configuration
b685ff
b685ff
* Tue Sep 26 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b685ff
- 2.4.6
b685ff
b685ff
* Mon Jul 31 2000 Bill Nottingham <notting@redhat.com>
b685ff
- update to 2.4.4 - fixes yet another problem with rsh transport
b685ff
b685ff
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
b685ff
- automatic rebuild
b685ff
b685ff
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
b685ff
- rebuild in new build env.
b685ff
b685ff
* Mon Apr 10 2000 Bill Nottingham <notting@redhat.com>
b685ff
- update to 2.4.3
b685ff
b685ff
* Tue Apr  4 2000 Bill Nottingham <notting@redhat.com>
b685ff
- update to 2.4.2
b685ff
b685ff
* Tue Mar  7 2000 Bill Nottingham <notting@redhat.com>
b685ff
- fix maxdelete behavior so it isn't sent to older servers.
b685ff
b685ff
* Mon Jan 31 2000 Jeff Johnson <jbj@redhat.com>
b685ff
- update to 2.4.1.
b685ff
b685ff
* Fri Dec 17 1999 Bill Nottingham <notting@redhat.com>
b685ff
- update to 2.3.2
b685ff
b685ff
* Sat Jun 12 1999 Jeff Johnson <jbj@redhat.com>
b685ff
- add "max. delete" patch to limit damage when server is hosed.
b685ff
b685ff
* Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
b685ff
- update to 2.3.1.
b685ff
b685ff
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
b685ff
- auto rebuild in the new build environment (release 2)
b685ff
b685ff
* Tue Mar 16 1999 Jeff Johnson <jbj@redhat.com>
b685ff
- update to 2.3.0.
b685ff
b685ff
* Sat Mar 13 1999 Jeff Johnson <jbj@redhat.com>
b685ff
- update to 2.3.0 beta.
b685ff
b685ff
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
b685ff
- update to 2.2.1
b685ff
b685ff
* Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
b685ff
- updated to 2.1.1
b685ff
b685ff
* Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
b685ff
- updated to 2.1.0
b685ff
b685ff
* Thu Aug 06 1998 Erik Troan <ewt@redhat.com>
b685ff
- buildrooted and attr-rophied
b685ff
- removed tech-report.ps; the .tex should be good enough
b685ff
b685ff
* Mon Aug 25 1997 John A. Martin <jam@jamux.com>
b685ff
- Built 1.6.3-2 after finding no rsync-1.6.3-1.src.rpm although there
b685ff
  was an ftp://ftp.redhat.com/pub/contrib/alpha/rsync-1.6.3-1.alpha.rpm
b685ff
  showing no packager nor signature but giving 
b685ff
  "Source RPM: rsync-1.6.3-1.src.rpm".
b685ff
- Changes from 1.6.2-1 packaging: added '$RPM_OPT_FLAGS' to make, strip
b685ff
  to '%%build', removed '%%prefix'.
b685ff
b685ff
* Thu Apr 10 1997 Michael De La Rue <miked@ed.ac.uk>
b685ff
- rsync-1.6.2-1 packaged.  (This entry by jam to credit Michael for the
b685ff
  previous package(s).)