Blame SPECS/rsync.spec

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