e0b487
Summary: The GNU data compression program
e0b487
Name: gzip
e0b487
Version: 1.9
e0b487
Release: 8%{?dist}
e0b487
# info pages are under GFDL license
e0b487
License: GPLv3+ and GFDL
e0b487
Group: Applications/File
e0b487
Source0: http://ftp.gnu.org/gnu/gzip/gzip-%{version}.tar.xz
e0b487
Source1: https://www.gnu.org/licenses/fdl-1.3.txt
e0b487
e0b487
# downstream solution for coloured z*grep (#1034839)
e0b487
Source100: colorzgrep.csh
e0b487
Source101: colorzgrep.sh
e0b487
e0b487
Patch1: gnulib.patch
e0b487
Patch2: gzexe.patch
e0b487
Patch3: ibm.patch
e0b487
# http://git.savannah.gnu.org/cgit/gzip.git/commit/?id=be0c5581e38332b2ffa8a4cf92076cfde02872b4
e0b487
Patch4: ibm2.patch
e0b487
# https://lists.gnu.org/archive/html/bug-gzip/2019-06/msg00000.html
e0b487
Patch5: ibm3.patch
e0b487
e0b487
e0b487
# Fixed in upstream code.
e0b487
# http://thread.gmane.org/gmane.comp.gnu.gzip.bugs/378
e0b487
URL: http://www.gzip.org/
e0b487
# Requires should not be added for gzip wrappers (eg. zdiff, zgrep,
e0b487
# zless) of another tools, because gzip "extends" the tools by its
e0b487
# wrappers much more than it "requires" them.
e0b487
Requires: /sbin/install-info
e0b487
Requires: coreutils
e0b487
BuildRequires: texinfo, gcc, autoconf, automake, less
e0b487
Conflicts: filesystem < 3
e0b487
Provides: /bin/gunzip
e0b487
Provides: /bin/gzip
e0b487
Provides: /bin/zcat
e0b487
# Gzip contains bundled Gnulib
e0b487
# exception https://fedorahosted.org/fpc/ticket/174
e0b487
Provides: bundled(gnulib)
e0b487
e0b487
%description
e0b487
The gzip package contains the popular GNU gzip data compression
e0b487
program. Gzipped files have a .gz extension.
e0b487
e0b487
Gzip should be installed on your system, because it is a
e0b487
very commonly used data compression program.
e0b487
e0b487
%prep
e0b487
%setup -q
e0b487
%patch1 -p1 -b .gnulib
e0b487
%patch2 -p1 -b .gzexe
e0b487
%patch3 -p1 -b .ibm
e0b487
%patch4 -p1 -b .ibm2
e0b487
%patch5 -p1 -b .ibm3
e0b487
cp %{SOURCE1} .
e0b487
autoreconf
e0b487
e0b487
%build
e0b487
export DEFS="NO_ASM"
e0b487
export CPPFLAGS="-DHAVE_LSTAT"
e0b487
export CC="%{__cc}"
e0b487
export CPP="%{__cpp}"
e0b487
export CXX="%{__cxx}"
e0b487
e0b487
%ifarch s390x
e0b487
%configure --enable-dfltcc
e0b487
%else
e0b487
%configure
e0b487
%endif
e0b487
e0b487
make
e0b487
make check
e0b487
#make gzip.info
e0b487
e0b487
%install
e0b487
rm -rf ${RPM_BUILD_ROOT}
e0b487
%makeinstall
e0b487
e0b487
gzip -9nf ${RPM_BUILD_ROOT}%{_infodir}/gzip.info*
e0b487
e0b487
# we don't ship it, so let's remove it from ${RPM_BUILD_ROOT}
e0b487
rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir
e0b487
# uncompress is a part of ncompress package
e0b487
rm -f ${RPM_BUILD_ROOT}/%{_bindir}/uncompress
e0b487
e0b487
# coloured z*grep (#1034839)
e0b487
%global profiledir %{_sysconfdir}/profile.d
e0b487
mkdir -p %{buildroot}%{profiledir}
e0b487
install -p -m 644 %{SOURCE100} %{buildroot}%{profiledir}
e0b487
install -p -m 644 %{SOURCE101} %{buildroot}%{profiledir}
e0b487
e0b487
%post
e0b487
if [ -f %{_infodir}/gzip.info* ]; then
e0b487
    /sbin/install-info %{_infodir}/gzip.info.gz %{_infodir}/dir || :
e0b487
fi
e0b487
e0b487
%preun
e0b487
if [ $1 = 0 ]; then
e0b487
    if [ -f %{_infodir}/gzip.info* ]; then
e0b487
        /sbin/install-info --delete %{_infodir}/gzip.info.gz %{_infodir}/dir || :
e0b487
    fi
e0b487
fi
e0b487
e0b487
%files
e0b487
%defattr(-,root,root)
e0b487
%doc NEWS README AUTHORS ChangeLog THANKS TODO
e0b487
%{!?_licensedir:%global license %%doc}
e0b487
%license COPYING fdl-1.3.txt
e0b487
%{_bindir}/*
e0b487
%{_mandir}/*/*
e0b487
%{_infodir}/gzip.info*
e0b487
%{profiledir}/*
e0b487
e0b487
%changelog
e0b487
* Mon May 06 2019 Jakub Martisko <jamartis@redhat.com> - 1.9-8
e0b487
- Apply fixes to the previous patch
e0b487
  Resolves: 1659434
e0b487
e0b487
* Mon May 06 2019 Jakub Martisko <jamartis@redhat.com> - 1.9-7
e0b487
- Apply the IBM s390x optimization patch
e0b487
  Resolves: 1659434
e0b487
e0b487
* Mon May 06 2019 Jakub Martisko <jamartis@redhat.com> - 1.9-6
e0b487
- Release bump for gating rebuild
e0b487
  Related: 1681027
e0b487
e0b487
* Thu May 02 2019 Jakub Martisko <jamartis@redhat.com> - 1.9-5
e0b487
- Fix wrong skip size in gzexe
e0b487
- Add new test dealing with the ^^ (needs autoreconf)
e0b487
- Enable make check (needs less)
e0b487
  Resolves: 1705413
e0b487
e0b487
 * Tue Aug 07 2018 Jakub Martisko <jamartis@redhat.com> - 1.9-4
e0b487
 - Fix FTBFS bug (gnulib problems)
e0b487
 - more details: https://lists.gnu.org/r/bug-gnulib/2018-03/msg00000.html
e0b487
   Resolves 1611722
e0b487
e0b487
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9-3
e0b487
- Escape macros in %%changelog
e0b487
e0b487
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9-2
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e0b487
e0b487
* Wed Jan 10 2018 Jakub Martisko <jamartis@redhat.com> - 1.9-1
e0b487
- rebase to v1.9
e0b487
e0b487
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-4
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e0b487
e0b487
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-3
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e0b487
e0b487
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8-2
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e0b487
e0b487
* Fri Jul 01 2016 Petr Stodulka <pstodulk@redhat.com> - 1.8-1
e0b487
- rebase to v1.8
e0b487
- gzip -l no longer falsely reports a write error when writing to a pipe
e0b487
e0b487
* Tue Apr 05 2016 Petr Stodulka <pstodulk@redhat.com> - 1.7-1
e0b487
- rebase to new upstream version 1.7
e0b487
- dropped all patches (almost all issues are fixed in new upstream version,
e0b487
  sometimes in different way)
e0b487
  - only patch gzip-1.3.12-openbsd-owl-tmp.patch is untested - code is changed
e0b487
    significantly and patch is undocumented from archaic time, so I drop it too
e0b487
  Resolves: #1321560
e0b487
e0b487
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-10
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e0b487
e0b487
* Thu Jul 09 2015 Petr Stodulka <pstodulk@redhat.com> - 1.6-9
e0b487
- fix zless for archive with empty file (#1238298)
e0b487
e0b487
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-8
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e0b487
e0b487
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.6-7
e0b487
- Rebuilt for Fedora 23 Change
e0b487
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
e0b487
e0b487
* Tue Aug 26 2014 Petr Stodulka <pstodulk@redhat.com> - 1.6-7
e0b487
- correct changelog
e0b487
e0b487
* Tue Aug 26 2014 Petr Stodulka <pstodulk@redhat.com> - 1.6-6
e0b487
- changed spec file - build section
e0b487
  obey compiler macros %%__cc, %%__cpp, %%__cxx (#667144)
e0b487
- zgrep inherits color setup from grep (#1034839)
e0b487
e0b487
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-5
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e0b487
e0b487
* Sat Jul 12 2014 Tom Callaway <spot@fedoraproject.org> - 1.6-4
e0b487
- fix license handling
e0b487
e0b487
* Fri Jun 06 2014 Petr Stodulka <pstodulk@redhat.com> - 1.6-3
e0b487
- Added description of rsyncable into the manpage (#988713)
e0b487
e0b487
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6-2
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e0b487
e0b487
* Tue Jun 11 2013 Michal Luscon <mluscon@redhat.com> - 1.6-1
e0b487
- New upstream version
e0b487
- Removed addsuffix.patch
e0b487
e0b487
* Thu Mar 14 2013 Michal Luscon <mluscon@redhat.com> - 1.5-5
e0b487
- Adjust gzip-1.3.5-zforce patch
e0b487
e0b487
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-4
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e0b487
e0b487
* Tue Nov 13 2012 Daniel Drake <dsd@laptop.org> - 1.5-3
e0b487
- Fix "gzip --rsyncable" functionality by removing a spurious blank line from
e0b487
  the patch.
e0b487
e0b487
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-2
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e0b487
e0b487
* Thu Jun 21 2012 Michal Luscon <mluscon@redhat.com>
e0b487
- Added bundled(glib) 
e0b487
e0b487
* Tue Jun 19 2012 Michal Luscon <mluscon@redhat.com> 1.5-1
e0b487
- New upstream version
e0b487
- Removed gzip-1.3.9-stderr.patch
e0b487
- Removed gzip-1.3.10-zgreppipe.patch
e0b487
- Removed gzip-1.3.13-noemptysuffix.patch
e0b487
e0b487
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1.4-6
e0b487
- add filesystem guard
e0b487
e0b487
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 1.4-5
e0b487
- install everything in /usr
e0b487
  https://fedoraproject.org/wiki/Features/UsrMove
e0b487
e0b487
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-4
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e0b487
e0b487
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4-3
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e0b487
e0b487
* Mon Sep  6 2010 Karel Klic <kklic@redhat.com> - 1.4-2
e0b487
- Removed the dependency on less (rhbz#629580)
e0b487
- Removed the BuildRoot tag
e0b487
- Removed the %%clean section
e0b487
e0b487
* Tue Mar 16 2010 Karel Klic <kklic@redhat.com> - 1.4-1
e0b487
- New upstream release
e0b487
- Use XZ upstream source archive
e0b487
- Removed cve-2010-0001 patch as it's fixed in this release
e0b487
- Removed zdiff patch as it's fixed in this release
e0b487
e0b487
* Mon Feb 22 2010 Karel Klic <kklic@redhat.com> - 1.3.13-3
e0b487
- Added a patch to disallow -S '' parameter (noemptysuffix)
e0b487
e0b487
* Fri Jan 22 2010 Karel Klic <kklic@redhat.com> - 1.3.13-2
e0b487
- Fixed CVE-2010-0001 (rhbz#554418)
e0b487
e0b487
* Tue Dec  1 2009 Karel Klic <kklic@redhat.com> - 1.3.13-1
e0b487
- New upstream version
e0b487
- Updated license from GPLv2 to GPLv3+
e0b487
- Removed gzip-1.3.12-futimens.patch, as it is fixed in the new version
e0b487
- Updated rsync patch to the new upstream version
e0b487
- Updated cve-2006-4337 patch to use gzip_error instead of error
e0b487
e0b487
* Fri Oct  9 2009 Ivana Varekova <varekova@redhat.com> - 1.3.12-12
e0b487
- change the source tag
e0b487
e0b487
* Tue Aug 11 2009 Ivana Varekova <varekova redhat com> - 1.3.12-11
e0b487
- fix installation with --excludedocs option (#515975)
e0b487
e0b487
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.12-10
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e0b487
e0b487
* Fri Mar 13 2009 Ivana Varekova <varekova@redhat.com> - 1.3.12-9
e0b487
- fix #484213 - zdiff shows no output
e0b487
e0b487
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.12-8
e0b487
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e0b487
e0b487
* Mon Sep  1 2008 Ivana Varekova <varekova@redhat.com> - 1.3.12-7
e0b487
- update patches
e0b487
e0b487
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.12-6
e0b487
- Autorebuild for GCC 4.3
e0b487
e0b487
* Fri Jan 18 2008 Ivana Varekova <varekova@redhat.com> - 1.3.12-5
e0b487
- rebuild
e0b487
e0b487
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 1.3.12-4
e0b487
- Rebuild for selinux ppc32 issue.
e0b487
e0b487
* Fri Jun 15 2007 Ivana Varekova <varekova@redhat.com> - 1.3.12-3
e0b487
- remove useless patches (fixed in upstream version)
e0b487
e0b487
* Mon Jun 11 2007 Ivana Varekova <varekova@redhat.com> - 1.3.12-2
e0b487
- remove useless patches
e0b487
e0b487
* Mon Jun  4 2007 Ivana Varekova <varekova@redhat.com> - 1.3.12-1
e0b487
- update to 1.3.12
e0b487
e0b487
* Mon Mar  5 2007 Ivana Varekova <varekova@redhat.com> - 1.3.11-1
e0b487
- update to 1.3.11
e0b487
  remove uncompress
e0b487
e0b487
* Tue Feb  6 2007 Ivana Varekova <varekova@redhat.com> - 1.3.10-1
e0b487
- Resolves: 225878
e0b487
  update to 1.3.10
e0b487
  change BuildRoot
e0b487
e0b487
* Mon Jan 22 2007 Ivana Varekova <varekova@redhat.com> - 1.3.9-2
e0b487
- Resolves: 223702
e0b487
  fix non-failsafe install-info problem
e0b487
e0b487
* Mon Jan 15 2007 Ivana Varekova <varekova@redhat.com> - 1.3.9-1
e0b487
- rebuild to 1.3.9
e0b487
- spec cleanup
e0b487
e0b487
* Wed Nov 22 2006 Ivana Varekova <varekova@redhat.com> - 1.3.5-11
e0b487
- fix too strict uncompress function
e0b487
e0b487
* Mon Oct 23 2006 Ivana Varekova <varekova@redhat.com> - 1.3.5-10
e0b487
- fix package description (#208924)
e0b487
e0b487
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-9
e0b487
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
e0b487
e0b487
* Wed Sep 20 2006 Ivana Varekova <varekova@redhat.com> 1.3.5-8
e0b487
- fix bug 204676 (patches by Tavis Ormandy)
e0b487
  - cve-2006-4334 - null dereference problem
e0b487
  - cve-2006-4335 - buffer overflow problem
e0b487
  - cve-2006-4336 - buffer underflow problem
e0b487
  - cve-2006-4338 - infinite loop problem
e0b487
  - cve-2006-4337 - buffer overflow problem
e0b487
e0b487
* Fri Jul 14 2006 Karsten Hopp <karsten@redhat.de> 1.3.5-7
e0b487
- buildrequire texinfo, otherwise gzip.info will be empty
e0b487
e0b487
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-6.2.2
e0b487
- rebuild
e0b487
e0b487
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-6.2.1
e0b487
- bump again for double-long bug on ppc(64)
e0b487
e0b487
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-6.2
e0b487
- rebuilt for new gcc4.1 snapshot and glibc changes
e0b487
e0b487
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e0b487
- rebuilt
e0b487
e0b487
* Mon May 02 2005 Ivana Varekova <varekova@redhat.com> 1.3.5-6
e0b487
- rebuilt
e0b487
e0b487
* Fri Apr 29 2005 Ivana Varekova <varekova@redhat.com> 1.3.5-5
e0b487
- fix bug 156269 - CAN-2005-1228 directory traversal bug
e0b487
 (using the patch from Ulf Harnhammar)
e0b487
e0b487
* Tue Apr 26 2005 Ivana Varekova <varekova@redhat.com> 1.3.5-4
e0b487
- fix bug 155746 - CAN-2005-0988 Race condition in gzip (patch9)
e0b487
e0b487
* Wed Mar 23 2005 Tomas Mraz <tmraz@redhat.com> 1.3.5-3
e0b487
- don't use the asm code again as it's slower than the gcc compiled one
e0b487
- convert the .spec to UTF-8
e0b487
e0b487
* Tue Mar 22 2005 Tomas Mraz <tmraz@redhat.com> 1.3.5-2
e0b487
- upstream 1.3.5
e0b487
- dropped long ago obsolete dirinfo patch
e0b487
- escape file names in zgrep (#123012)
e0b487
- make stack in match.S nonexecutable
e0b487
e0b487
* Fri Mar 04 2005 Jiri Ryska <jryska@redhat.com>
e0b487
- rebuilt
e0b487
e0b487
* Mon Dec 13 2004 Ivana Varekova <varekova@redhat.com>
e0b487
- fix patch - remove brackets
e0b487
e0b487
* Mon Dec 13 2004 Ivana Varekova <varekova@redhat.com>
e0b487
- fix bug #106551 problem with zmore which requires the suffix .gz in file name
e0b487
e0b487
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
e0b487
- rebuilt
e0b487
e0b487
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e0b487
- rebuilt
e0b487
e0b487
* Tue Oct 28 2003 Jeff Johnson <jbj@redhat.com> 1.3.3-11
e0b487
- rebuilt.
e0b487
e0b487
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
e0b487
- rebuilt
e0b487
e0b487
* Fri Jan 31 2003 Jeff Johnson <jbj@redhat.com> 1.3.3-9
e0b487
- enlarge window buffer to avoid accessing beyond end-of-buffer (#78413,#83095).
e0b487
- re-enable rsync ready patch.
e0b487
e0b487
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
e0b487
- rebuilt
e0b487
e0b487
* Fri Nov 22 2002 Jeff Johnson <jbj@redhat.com> 1.3.3-7
e0b487
- workaround mis-compilation with gcc-3.2-4 on alpha for now (#78413).
e0b487
e0b487
* Mon Nov 18 2002 Tim Powers <timp@redhat.com>
e0b487
- rebuild on all arches
e0b487
- remove file from buildroot we aren't shipping
e0b487
e0b487
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
e0b487
- automated rebuild
e0b487
e0b487
* Fri Jun 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.3-4
e0b487
- Fix the reading of unitialized memory problem (#66913)
e0b487
e0b487
* Thu May 23 2002 Tim Powers <timp@redhat.com>
e0b487
- automated rebuild
e0b487
e0b487
* Thu Apr 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.3-2
e0b487
- Rebuild
e0b487
e0b487
* Wed Mar 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.3-1
e0b487
- 1.3.3
e0b487
e0b487
* Sun Mar 10 2002 Florian La Roche <Florian.LaRoche@redhat.de>
e0b487
- add rsyncable patch #58888
e0b487
e0b487
* Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 1.3.2-3
e0b487
- Rebuild
e0b487
e0b487
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
e0b487
- automated rebuild
e0b487
e0b487
* Mon Nov 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.3.2-1
e0b487
- 1.3.2: no need for autoconf 2.5x hacks anymore
e0b487
e0b487
* Sat Nov 17 2001 Florian La Roche <Florian.LaRoche@redhat.de>
e0b487
- update to 1.3.1:
e0b487
- disable patch2
e0b487
e0b487
* Fri Oct 26 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.3.0-16
e0b487
- replace tempfile patches with improved ones solar@openwall.com
e0b487
- Add less to the dependency chain - zless needs it
e0b487
e0b487
* Thu Aug 23 2001 Trond Eivind Glomsrød <teg@redhat.com> 1.3.0-15
e0b487
- Fix typo in comment in zgrep (#52465) 
e0b487
- Copyright -> License
e0b487
e0b487
* Tue Jun  5 2001 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- Patch various uses of $$ in the bundled scripts
e0b487
e0b487
* Mon Jun  4 2001 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- Fix the SIGPIPE patch to avoid blank lines (#43319)
e0b487
e0b487
* Thu Feb 08 2001 Philipp Knirsch <pknirsch@redhat.de>
e0b487
- Fixed buzilla bug #26680. Wrong skip value after mktemp patch and forced
e0b487
  overwrite for output file during decompression.
e0b487
e0b487
* Tue Jan 30 2001 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- trap SIGPIPE in zgrep, so "zgrep | less" gets a happy ending
e0b487
  (#24104)
e0b487
e0b487
* Sun Dec 10 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- add HAVE_LSTAT define, to avoid it doing weird things to symlinks
e0b487
  instead of ignoring them as the docs say it should (#22045)
e0b487
e0b487
* Fri Dec 01 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- rebuild
e0b487
e0b487
* Thu Nov 09 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- patch all scripts so usage error messages are written to 
e0b487
  stderr (#20597)
e0b487
e0b487
* Mon Oct 30 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- disable assembly, as it is faster without it (bug #19910)
e0b487
e0b487
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
e0b487
- automatic rebuild
e0b487
e0b487
* Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- rebuild
e0b487
e0b487
* Wed Jun 07 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- Use %%{_mandir}, %%{_infodir},  %%configure, %%makeinstall
e0b487
  and %%{_tmppath}
e0b487
e0b487
* Fri May 12 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- Add root as default owner of the files, permits building 
e0b487
  as non-root user
e0b487
e0b487
* Wed May 10 2000 Trond Eivind Glomsrød <teg@redhat.com>
e0b487
- Build system handles stripping
e0b487
- Don't do thing the system does, like creating directories
e0b487
- use --bindir /bin
e0b487
- Added URL
e0b487
- skip unnecesarry sed step
e0b487
- Include THANKS, AUTHORS, ChangeLog, TODO
e0b487
e0b487
* Mon Mar 20 2000 Bernhard Rosenkraenzer <bero@redhat.com>
e0b487
- 1.3
e0b487
- handle RPM_OPT_FLAGS
e0b487
e0b487
* Tue Feb 15 2000 Cristian Gafton <gafton@redhat.com>
e0b487
- handle compressed man pages even better
e0b487
e0b487
* Tue Feb 08 2000 Cristian Gafton <gafton@redhat.com>
e0b487
- adopt patch from Paul Eggert to fix detection of the improper tables in
e0b487
  inflate.c(huft_build)
e0b487
- the latest released version 1.2.4a, which provides documentation updates
e0b487
  only. But it lets us use small revision numbers again
e0b487
- add an dirinfo entry for gzip.info so we can get rid of the ugly --entry
e0b487
  args to install-info
e0b487
e0b487
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
e0b487
- handle compressed manpages
e0b487
e0b487
* Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
e0b487
- Fix bug #7970
e0b487
e0b487
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
e0b487
- auto rebuild in the new build environment (release 14)
e0b487
e0b487
* Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
e0b487
- built against gliibc 2.1
e0b487
e0b487
* Thu May 07 1998 Prospector System <bugs@redhat.com>
e0b487
- translations modified for de, fr, tr
e0b487
e0b487
* Thu Apr 09 1998 Cristian Gafton <gafton@redhat.com>
e0b487
- added /usr/bin/gzip and /usr/bin/gunzip symlinks as some programs are too
e0b487
  brain dead to figure out they should be at least trying to use $PATH
e0b487
- added BuildRoot
e0b487
e0b487
* Wed Jan 28 1998 Erik Troan <ewt@redhat.com>
e0b487
- fix /tmp races
e0b487
e0b487
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
e0b487
- uses install-info
e0b487
- applied patch for gzexe
e0b487
e0b487
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
e0b487
- built against glibc
e0b487
e0b487
* Tue Apr 22 1997 Marc Ewing <marc@redhat.com>
e0b487
- (Entry added for Marc by Erik) fixed gzexe to use /bin/gzip
e0b487