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