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