Blame SPECS/cpio.spec

14bb0c
Summary: A GNU archiving program
14bb0c
Name: cpio
14bb0c
Version: 2.11
68fffc
Release: 22%{?dist}
14bb0c
License: GPLv3+
14bb0c
Group: Applications/Archiving
14bb0c
URL: http://www.gnu.org/software/cpio/
14bb0c
Source: ftp://ftp.gnu.org/gnu/cpio/cpio-%{version}.tar.bz2
14bb0c
# help2man generated manual page distributed only in RHEL/Fedora
14bb0c
Source1: cpio.1
14bb0c
#We use SVR4 portable format as default .
14bb0c
Patch1: cpio-2.9-rh.patch
14bb0c
#fix warn_if_file_changed() and set exit code to 1 when cpio
14bb0c
# fails to store file > 4GB (#183224)
14bb0c
Patch2: cpio-2.9-exitCode.patch
14bb0c
#Support major/minor device numbers over 127 (bz#450109)
14bb0c
Patch3: cpio-2.9-dev_number.patch
14bb0c
#define default remote shell as /usr/bin/ssh(#452904)
14bb0c
Patch4: cpio-2.9.90-defaultremoteshell.patch
14bb0c
#fix segfault with nonexisting file with patternnames(#567022)
14bb0c
Patch5: cpio-2.10-patternnamesigsegv.patch
14bb0c
#fix rawhide buildfailure by updating gnulib's stdio.in.h
14bb0c
Patch6: cpio-2.11-stdio.in.patch
14bb0c
# fix bad file name splitting while creating ustar archive (#866467)
14bb0c
Patch7: cpio-2.10-longnames-split.patch
14bb0c
# cpio does Sum32 checksum, not CRC
14bb0c
Patch8: cpio-2.11-crc-fips-nit.patch
14bb0c
14bb0c
# use the config.guess/config.sub files from actual automake-1.13
14bb0c
# ~> #925189
14bb0c
Patch9: cpio-2.11-arm-config-sub-guess.patch
14bb0c
14bb0c
Requires(post): /sbin/install-info
14bb0c
Requires(preun): /sbin/install-info
14bb0c
Provides: bundled(gnulib)
14bb0c
Provides: /bin/cpio
14bb0c
BuildRequires: texinfo, autoconf, automake, gettext, rmt
14bb0c
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14bb0c
14bb0c
%description
14bb0c
GNU cpio copies files into or out of a cpio or tar archive.  Archives
14bb0c
are files which contain a collection of other files plus information
14bb0c
about them, such as their file name, owner, timestamps, and access
14bb0c
permissions.  The archive can be another file on the disk, a magnetic
14bb0c
tape, or a pipe.  GNU cpio supports the following archive formats:  binary,
14bb0c
old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar and POSIX.1
14bb0c
tar.  By default, cpio creates binary format archives, so that they are
14bb0c
compatible with older cpio programs.  When it is extracting files from
14bb0c
archives, cpio automatically recognizes which kind of archive it is reading
14bb0c
and can read archives created on machines with a different byte-order.
14bb0c
14bb0c
Install cpio if you need a program to manage file archives.
14bb0c
14bb0c
%prep
14bb0c
%setup -q
14bb0c
%patch1 -p1 -b .rh
14bb0c
%patch2 -p1 -b .exitCode
14bb0c
%patch3 -p1 -b .dev_number
14bb0c
%patch4 -p1 -b .defaultremote
14bb0c
%patch5 -p1 -b .patternsegv
14bb0c
%patch6 -p1 -b .gnulib %{?_rawbuild}
14bb0c
%patch7 -p1 -b .longnames
14bb0c
%patch8 -p1 -b .sum32-fips
14bb0c
%patch9 -p1 -b .arm-config-guess-sub
14bb0c
14bb0c
autoreconf -v
14bb0c
14bb0c
%build
14bb0c
14bb0c
CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -pedantic -fno-strict-aliasing -Wall" %configure --with-rmt="%{_sysconfdir}/rmt"
14bb0c
make %{?_smp_mflags}
14bb0c
14bb0c
%install
14bb0c
rm -rf ${RPM_BUILD_ROOT}
14bb0c
14bb0c
make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install
14bb0c
14bb0c
14bb0c
rm -f $RPM_BUILD_ROOT%{_libexecdir}/rmt
14bb0c
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
14bb0c
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/*.1*
14bb0c
install -c -p -m 0644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_mandir}/man1
14bb0c
14bb0c
%find_lang %{name}
14bb0c
14bb0c
%clean
14bb0c
rm -rf ${RPM_BUILD_ROOT}
14bb0c
14bb0c
%check
14bb0c
rm -f ${RPM_BUILD_ROOT}/test/testsuite
14bb0c
make check
14bb0c
14bb0c
14bb0c
%post
14bb0c
if [ -f %{_infodir}/cpio.info.gz ]; then
14bb0c
	/sbin/install-info %{_infodir}/cpio.info.gz %{_infodir}/dir || :
14bb0c
fi
14bb0c
14bb0c
%preun
14bb0c
if [ $1 = 0 ]; then
14bb0c
	if [ -f %{_infodir}/cpio.info.gz ]; then
14bb0c
		/sbin/install-info --delete %{_infodir}/cpio.info.gz %{_infodir}/dir || :
14bb0c
	fi
14bb0c
fi
14bb0c
14bb0c
%files -f %{name}.lang
14bb0c
%doc AUTHORS ChangeLog NEWS README THANKS TODO COPYING
14bb0c
%{_bindir}/*
14bb0c
%{_mandir}/man*/*
14bb0c
%{_infodir}/*.info*
14bb0c
14bb0c
%changelog
68fffc
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.11-22
68fffc
- Mass rebuild 2014-01-24
68fffc
68fffc
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.11-21
68fffc
- Mass rebuild 2013-12-27
68fffc
14bb0c
* Wed Mar 27 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-20
14bb0c
- fix another bogus date in changelog
14bb0c
- update config.guess/config.sub for aarm64 build (#925189)
14bb0c
- run autoreconf instead of autoheader
14bb0c
14bb0c
* Fri Mar 15 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-19
14bb0c
- revert the fix for memory leak (at least for now) #921725
14bb0c
14bb0c
* Tue Mar 12 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-18
14bb0c
- explicitly provide /bin/cpio for packages that are dependant on this file
14bb0c
14bb0c
* Mon Mar 11 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-17
14bb0c
- fix small memory leak in copyin.c (#919454)
14bb0c
- remove %%defattr and install 'cpio' to real %%{_bindir}
14bb0c
- CovScan: add %%{?_rawbuild}
14bb0c
14bb0c
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-16
14bb0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
14bb0c
14bb0c
* Mon Nov 05 2012 Pavel Raiskup <praiskup@redhat.com> - 2.11-15
14bb0c
- disable the temporary O_SYNC fix (glibc is fixed - #872366)
14bb0c
14bb0c
* Fri Nov 02 2012 Pavel Raiskup <praiskup@redhat.com> - 2.11-14
14bb0c
- fix bad changelog entries
14bb0c
- allow to build in Fedora Rawhide (temporarily because of #872336) (the value
14bb0c
  is guessed from from /usr/include/asm-generic/fcntl.h)
14bb0c
14bb0c
* Mon Oct 22 2012 Pavel Raiskup <praiskup@redhat.com> 2.11-13
14bb0c
- move RH-only manual page cpio.1 from look-aside cache into dist-git repository
14bb0c
14bb0c
* Thu Oct 18 2012 Pavel Raiskup <praiskup@redhat.com> 2.11-12
14bb0c
- fix for bad file name splitting while creating ustar archive (#866467)
14bb0c
14bb0c
* Wed Aug 29 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-11
14bb0c
- add missing options to manpage (#852765)
14bb0c
14bb0c
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-10
14bb0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
14bb0c
14bb0c
* Mon Jun 04 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-9
14bb0c
- fix build failure in rawhide build system (gets undefined)
14bb0c
14bb0c
* Wed May 30 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-8
14bb0c
- drop unnecessary patches: cpio-2.9-dir_perm.patch and
14bb0c
  cpio-2.9-sys_umask.patch - reported by M.Castellini
14bb0c
14bb0c
* Tue May 15 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-7
14bb0c
- add virtual provides for bundled(gnulib) copylib (#821749)
14bb0c
14bb0c
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-6
14bb0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
14bb0c
14bb0c
* Fri Oct 14 2011 Ondrej Vasik <ovasik@redhat.com> 2.11-5
14bb0c
- update manpage to reflect new option, polish the style (#746209)
14bb0c
14bb0c
* Mon Mar 07 2011 Ondrej Vasik <ovasik@redhat.com> 2.11-4
14bb0c
- fix several typos and manpage syntax(Ville Skyttä, #682470)
14bb0c
14bb0c
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-3
14bb0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
14bb0c
14bb0c
* Mon May 31 2010 Ondrej Vasik <ovasik@redhat.com> 2.11-2
14bb0c
- built with fno-strict-aliasing(#596153)
14bb0c
14bb0c
* Thu Mar 11 2010 Ondrej Vasik <ovasik@redhat.com> 2.11-1
14bb0c
- new upstream release 2.11
14bb0c
- removed applied patches, run test suite
14bb0c
14bb0c
* Wed Mar 10 2010 Ondrej Vasik <ovasik@redhat.com> 2.10-6
14bb0c
- CVE-2010-0624 fix heap-based buffer overflow by expanding
14bb0c
  a specially-crafted archive(#572150)
14bb0c
- comment patches
14bb0c
14bb0c
* Thu Feb 25 2010 Ondrej Vasik <ovasik@redhat.com> 2.10-5
14bb0c
- remove redundant setLocale patch
14bb0c
- fix segfault with nonexisting file with patternnames
14bb0c
  (#567022)
14bb0c
14bb0c
* Wed Jan 06 2010 Ondrej Vasik <ovasik@redhat.com> 2.10-4
14bb0c
- do not fail with new POSIX 2008 utimens() glibc call
14bb0c
  (#552320)
14bb0c
14bb0c
* Thu Aug 06 2009 Ondrej Vasik <ovasik@redhat.com> 2.10-3
14bb0c
- do process install-info only without --excludedocs(#515924)
14bb0c
14bb0c
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-2
14bb0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
14bb0c
14bb0c
* Mon Jun 22 2009 Ondrej Vasik <ovasik@redhat.com> 2.10-1
14bb0c
- new upstream release 2.10
14bb0c
14bb0c
* Mon Mar  9 2009 Ondrej Vasik <ovasik@redhat.com> 2.9.90-5
14bb0c
- define default remote shell as /usr/bin/ssh(#452904)
14bb0c
- use /etc/rmt as default rmt command
14bb0c
14bb0c
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.90-4
14bb0c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
14bb0c
14bb0c
* Wed Feb 11 2009 Ondrej Vasik <ovasik@redhat.com> 2.9.90-3
14bb0c
- make -d honor system umask(#484997)
14bb0c
14bb0c
* Fri Jul 18 2008 Kamil Dudka <kdudka@redhat.com> 2.9.90-2
14bb0c
- Support major/minor device numbers over 127 (bz#450109)
14bb0c
14bb0c
* Tue Jun 03 2008 Ondrej Vasik <ovasik@redhat.com> 2.9.90-1
14bb0c
- new upstream alpha version 2.9.90 + removed applied patches
14bb0c
14bb0c
* Mon Mar 03 2008 Radek Brich <rbrich@redhat.com> 2.9-7
14bb0c
- fix -dir_perm patch to restore permissions correctly even
14bb0c
  in passthrough mode -- revert affected code to cpio 2.8 state
14bb0c
  (bz#430835)
14bb0c
14bb0c
* Thu Feb 14 2008 Radek Brich <rbrich@redhat.com> 2.9-6
14bb0c
- when extracting archive created with 'find -depth',
14bb0c
  restore the permissions of directories properly (bz#430835)
14bb0c
- fix for GCC 4.3
14bb0c
14bb0c
* Thu Nov 01 2007 Radek Brich <rbrich@redhat.com> 2.9-5
14bb0c
- upstream patch for CVE-2007-4476 (stack crashing in safer_name_suffix)
14bb0c
14bb0c
* Tue Sep 04 2007 Radek Brich <rbrich@redhat.com> 2.9-4
14bb0c
- Updated license tag
14bb0c
14bb0c
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.9-3
14bb0c
- Rebuild for selinux ppc32 issue.
14bb0c
14bb0c
* Thu Jul 19 2007 Radek Brich <rbrich@redhat.com> 2.9-1.1
14bb0c
- fix spec, rebuild
14bb0c
14bb0c
* Thu Jul 19 2007 Radek Brich <rbrich@redhat.com> 2.9-1
14bb0c
- update to 2.9, GPLv3
14bb0c
14bb0c
* Tue Feb 20 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-27
14bb0c
- fix typo in changelog
14bb0c
14bb0c
* Thu Feb 08 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.6-26
14bb0c
- Preserve timestamps when installing files
14bb0c
14bb0c
* Thu Feb 08 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-25
14bb0c
- set cpio bindir properly
14bb0c
14bb0c
* Wed Feb 07 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-24
14bb0c
- fix spec file to meet Fedora standards (#225656) 
14bb0c
14bb0c
* Mon Jan 22 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-23
14bb0c
- fix non-failsafe install-info use in scriptlets (#223682)
14bb0c
14bb0c
* Sun Dec 10 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-22
14bb0c
- fix rpmlint issue in spec file
14bb0c
14bb0c
* Tue Dec 05 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-21
14bb0c
- fix setlocale (#200478)
14bb0c
14bb0c
* Sat Nov 25 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-20
14bb0c
- cpio man page provided by RedHat
14bb0c
14bb0c
* Tue Jul 18 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-19
14bb0c
- fix cpio --help output (#197597)
14bb0c
14bb0c
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6-18.1
14bb0c
- rebuild
14bb0c
14bb0c
* Sat Jun 10 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-18
14bb0c
- autoconf was added to BuildRequires, because autoheader is 
14bb0c
  used in prep phase (#194737)
14bb0c
14bb0c
* Tue Mar 28 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-17
14bb0c
- rebuild
14bb0c
14bb0c
* Sat Mar 25 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-15
14bb0c
- fix (#186339) on ppc and s390
14bb0c
14bb0c
* Thu Mar 23 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-14
14bb0c
- init struct  file_hdr (#186339)
14bb0c
14bb0c
* Wed Mar 15 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-13
14bb0c
- merge toAsciiError.patch with writeOutHeaderBufferOverflow.patch
14bb0c
- merge largeFileGrew.patch with lfs.patch
14bb0c
- fix large file support, cpio is able to store files<8GB 
14bb0c
  in 'old ascii' format (-H odc option)
14bb0c
- adjust warnings.patch
14bb0c
14bb0c
* Tue Mar 14 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-12
14bb0c
- fix warn_if_file_changed() and set exit code to #1 when 
14bb0c
  cpio fails to store file > 4GB (#183224)
14bb0c
14bb0c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.6-11.2.1
14bb0c
- bump again for double-long bug on ppc(64)
14bb0c
14bb0c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.6-11.2
14bb0c
- rebuilt for new gcc4.1 snapshot and glibc changes
14bb0c
14bb0c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
14bb0c
- rebuilt
14bb0c
14bb0c
* Wed Nov 23 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-11
14bb0c
- fix previous patch(writeOutHeaderBufferOverflow)
14bb0c
14bb0c
* Wed Nov 23 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-10
14bb0c
- write_out_header rewritten to fix buffer overflow(#172669)
14bb0c
14bb0c
* Mon Oct 31 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-9
14bb0c
- fix checksum error on 64-bit machines (#171649)
14bb0c
14bb0c
* Fri Jul 01 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-8
14bb0c
- fix large file support, archive >4GiB, archive members <4GiB (#160056)
14bb0c
- fix race condition holes, use mode 0700 for dir creation
14bb0c
14bb0c
* Tue May 17 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-7
14bb0c
- fix #156314 (CAN-2005-1229) cpio directory traversal issue
14bb0c
- fix some gcc warnings
14bb0c
14bb0c
* Mon Apr 25 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-6
14bb0c
- fix race condition (#155749)
14bb0c
- use find_lang macro
14bb0c
14bb0c
* Thu Mar 17 2005 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- rebuild 2.6-5
14bb0c
14bb0c
* Mon Jan 24 2005 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- insecure file creation (#145721)
14bb0c
14bb0c
* Mon Jan 17 2005 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- fix symlinks pack (#145225)
14bb0c
14bb0c
* Fri Jan 14 2005 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- new fixed version of lfs patch (#144688)
14bb0c
14bb0c
* Thu Jan 13 2005 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- upgrade to cpio-2.6
14bb0c
14bb0c
* Tue Nov 09 2004 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- fixed "cpio -oH ustar (or tar) saves bad mtime date after Jan 10 2004" (#114580)
14bb0c
14bb0c
* Mon Nov 01 2004 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- support large files > 2GB (#105617)
14bb0c
14bb0c
* Thu Oct 21 2004 Peter Vrabec <pvrabec@redhat.com>
14bb0c
- fix dependencies in spec
14bb0c
14bb0c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
14bb0c
- rebuilt
14bb0c
14bb0c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
14bb0c
- rebuilt
14bb0c
14bb0c
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
14bb0c
- do not link against -lnsl
14bb0c
14bb0c
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
14bb0c
- rebuilt
14bb0c
14bb0c
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 2.5-3
14bb0c
- setlocale for i18n compliance (#79136).
14bb0c
14bb0c
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
14bb0c
- rebuilt
14bb0c
14bb0c
* Mon Nov 18 2002 Jeff Johnson <jbj@redhat.com> 2.5-1
14bb0c
- update 2.5, restack and consolidate patches.
14bb0c
- don't apply (but include for now) freebsd and #56346 patches.
14bb0c
- add url (#54598).
14bb0c
14bb0c
* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 2.4.2-30
14bb0c
- rebuild from CVS.
14bb0c
14bb0c
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
14bb0c
- automated rebuild
14bb0c
14bb0c
* Thu May 23 2002 Tim Powers <timp@redhat.com>
14bb0c
- automated rebuild
14bb0c
14bb0c
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
14bb0c
- automated rebuild
14bb0c
14bb0c
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-25
14bb0c
- Fix up extraction of multiply linked files when the first link is
14bb0c
  excluded (Bug #56346)
14bb0c
14bb0c
* Mon Oct  1 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-24
14bb0c
- Merge and adapt patches from FreeBSD, this should fix FIFO handling
14bb0c
14bb0c
* Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com>
14bb0c
- Add and adapt Debian patch (pl36), fixes #45285 and a couple of other issues
14bb0c
14bb0c
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
14bb0c
- Bump release + rebuild.
14bb0c
14bb0c
* Tue Aug  8 2000 Jeff Johnson <jbj@redhat.com>
14bb0c
- update man page with decription of -c behavior (#10581).
14bb0c
14bb0c
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
14bb0c
- automatic rebuild
14bb0c
14bb0c
* Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
14bb0c
- patch from HJ Lu for better error codes upon exit
14bb0c
14bb0c
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
14bb0c
- FHS packaging.
14bb0c
14bb0c
* Wed Feb  9 2000 Jeff Johnson <jbj@redhat.com>
14bb0c
- missing defattr.
14bb0c
14bb0c
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
14bb0c
- handle compressed manpages
14bb0c
14bb0c
* Fri Dec 17 1999 Jeff Johnson <jbj@redhat.com>
14bb0c
- revert the stdout patch (#3358), restoring original GNU cpio behavior
14bb0c
  (#6376, #7538), the patch was dumb.
14bb0c
14bb0c
* Tue Aug 31 1999 Jeff Johnson <jbj@redhat.com>
14bb0c
- fix infinite loop unpacking empty files with hard links (#4208).
14bb0c
- stdout should contain progress information (#3358).
14bb0c
14bb0c
* Sun Mar 21 1999 Crstian Gafton <gafton@redhat.com> 
14bb0c
- auto rebuild in the new build environment (release 12)
14bb0c
14bb0c
* Sat Dec  5 1998 Jeff Johnson <jbj@redhat.com>
14bb0c
- longlong dev wrong with "-o -H odc" headers (formerly "-oc").
14bb0c
14bb0c
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
14bb0c
- patch to compile on glibc 2.1, where strdup is a macro
14bb0c
14bb0c
* Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
14bb0c
- Fiddle bindir/libexecdir to get RH install correct.
14bb0c
- Don't include /sbin/rmt -- use the rmt from dump package.
14bb0c
- Don't include /bin/mt -- use the mt from mt-st package.
14bb0c
- Add prereq's
14bb0c
14bb0c
* Tue Jun 30 1998 Jeff Johnson <jbj@redhat.com>
14bb0c
- fix '-c' to duplicate svr4 behavior (problem #438)
14bb0c
- install support programs & info pages
14bb0c
14bb0c
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
14bb0c
- translations modified for de, fr, tr
14bb0c
14bb0c
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
14bb0c
- added BuildRoot
14bb0c
- removed "(used by RPM)" comment in Summary
14bb0c
14bb0c
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
14bb0c
- built against glibc
14bb0c
- no longer statically linked as RPM doesn't use cpio for unpacking packages