ca6c51
Summary: A GNU archiving program
ca6c51
Name: cpio
ca6c51
Version: 2.12
cc96e7
Release: 11%{?dist}
ca6c51
License: GPLv3+
ca6c51
URL: http://www.gnu.org/software/cpio/
ca6c51
Source: ftp://ftp.gnu.org/gnu/cpio/cpio-%{version}.tar.bz2
ca6c51
ca6c51
# help2man generated manual page distributed only in RHEL/Fedora
ca6c51
Source1: cpio.1
ca6c51
ca6c51
# We use SVR4 portable format as default.
ca6c51
Patch1: cpio-2.9-rh.patch
ca6c51
ca6c51
# fix warn_if_file_changed() and set exit code to 1 when cpio fails to store
ca6c51
# file > 4GB (#183224)
ca6c51
# http://lists.gnu.org/archive/html/bug-cpio/2006-11/msg00000.html
ca6c51
Patch2: cpio-2.9-exitCode.patch
ca6c51
ca6c51
# Support major/minor device numbers over 127 (bz#450109)
ca6c51
# http://lists.gnu.org/archive/html/bug-cpio/2008-07/msg00000.html
ca6c51
Patch3: cpio-2.9-dev_number.patch
ca6c51
ca6c51
# Define default remote shell as /usr/bin/ssh (#452904)
ca6c51
Patch4: cpio-2.9.90-defaultremoteshell.patch
ca6c51
ca6c51
# Fix segfault with nonexisting file with patternnames (#567022)
ca6c51
# http://savannah.gnu.org/bugs/index.php?28954
ca6c51
# We have slightly different solution than upstream.
ca6c51
Patch5: cpio-2.10-patternnamesigsegv.patch
ca6c51
ca6c51
# Fix bad file name splitting while creating ustar archive (#866467)
ca6c51
# (fix backported from tar's source)
ca6c51
Patch7: cpio-2.10-longnames-split.patch
ca6c51
ca6c51
# Cpio does Sum32 checksum, not CRC (downstream)
ca6c51
Patch8: cpio-2.11-crc-fips-nit.patch
ca6c51
ca6c51
# Extract: retain times for symlinks
ca6c51
# downstream patch (#1487673)
ca6c51
# https://www.mail-archive.com/bug-cpio@gnu.org/msg00605.html
ca6c51
Patch9: cpio-2.11-retain-symlink-times.patch
ca6c51
7f12d2
# Fixed improper input validation when writing tar header fields
7f12d2
# upstream patch (#1766223)
7f12d2
# https://cement.retrofitta.se/tmp/cpio-tar.patch
7f12d2
Patch10: cpio-2.12-improper-input-validation.patch
7f12d2
cc96e7
# Fixed integer overflow in ds_fgetstr()
cc96e7
# upstream patch (#1992511)
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=dd96882877721703e19272fe25034560b794061b
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=dfc801c44a93bed7b3951905b188823d6a0432c8
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=236684f6deb3178043fe72a8e2faca538fa2aae1
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=4d169305dcb34137dc41acc761d8703eae2c63bf
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=86dacfe3e060ce95d5a2c0c5ec01f6437b0b6089
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=7dd8ba91d8b6a2640e6c01c3e3a4234828646f23
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=684b7ac5767e676cda78c161aeb7fe7b45a07529
cc96e7
# https://git.savannah.gnu.org/cgit/cpio.git/commit/?id=b1c85839bf1381f749dd45bf6a5a38924e3315a0
cc96e7
Patch11: cpio-2.13-CVE-2021-38185.patch
cc96e7
ca6c51
ca6c51
Provides: bundled(gnulib)
ca6c51
Provides: /bin/cpio
ca6c51
BuildRequires: gcc
ca6c51
BuildRequires: texinfo, autoconf, automake, gettext, gettext-devel, rmt
ca6c51
ca6c51
%description
ca6c51
GNU cpio copies files into or out of a cpio or tar archive.  Archives
ca6c51
are files which contain a collection of other files plus information
ca6c51
about them, such as their file name, owner, timestamps, and access
ca6c51
permissions.  The archive can be another file on the disk, a magnetic
ca6c51
tape, or a pipe.  GNU cpio supports the following archive formats:  binary,
ca6c51
old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar and POSIX.1
ca6c51
tar.  By default, cpio creates binary format archives, so that they are
ca6c51
compatible with older cpio programs.  When it is extracting files from
ca6c51
archives, cpio automatically recognizes which kind of archive it is reading
ca6c51
and can read archives created on machines with a different byte-order.
ca6c51
ca6c51
Install cpio if you need a program to manage file archives.
ca6c51
ca6c51
ca6c51
%prep
ca6c51
%autosetup -p1
ca6c51
ca6c51
ca6c51
%build
cc96e7
autoreconf -fi
ca6c51
export CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -pedantic -fno-strict-aliasing -Wall $CFLAGS"
ca6c51
%configure --with-rmt="%{_sysconfdir}/rmt"
ca6c51
make %{?_smp_mflags}
ca6c51
(cd po && make update-gmo)
ca6c51
ca6c51
ca6c51
%install
ca6c51
make DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" install
ca6c51
ca6c51
rm -f $RPM_BUILD_ROOT%{_libexecdir}/rmt
ca6c51
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
ca6c51
rm -f $RPM_BUILD_ROOT%{_mandir}/man1/*.1*
ca6c51
install -c -p -m 0644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_mandir}/man1
ca6c51
ca6c51
%find_lang %{name}
ca6c51
ca6c51
%check
ca6c51
rm -f ${RPM_BUILD_ROOT}/test/testsuite
ca6c51
make check || {
ca6c51
    echo "### TESTSUITE.LOG ###"
ca6c51
    cat tests/testsuite.log
ca6c51
    exit 1
ca6c51
}
ca6c51
ca6c51
ca6c51
%files -f %{name}.lang
ca6c51
%doc AUTHORS ChangeLog NEWS README THANKS TODO
ca6c51
%{!?_licensedir:%global license %%doc}
ca6c51
%license COPYING
ca6c51
%{_bindir}/*
ca6c51
%{_mandir}/man*/*
ca6c51
%{_infodir}/*.info*
ca6c51
ca6c51
%changelog
cc96e7
* Mon Sep 20 2021 Ondrej Dubaj <odubaj@redhat.com> - 2.12-11
cc96e7
- Fixed CVE-2021-38185 (#1992511)
cc96e7
7f12d2
* Thu Jan 21 2021 Ondrej Dubaj <odubaj@redhat.com> - 2.12-10
7f12d2
- Fixed improper input validation when writing tar header fields (#1766223)
7f12d2
ca6c51
* Mon Jun 15 2020 Ondrej Dubaj <odubaj@redhat.com> - 2.12-9
ca6c51
- Extract: retain times for symlinks (#1487673)
ca6c51
ca6c51
* Tue Jul 17 2018 Pavel Raiskup <praiskup@redhat.com> - 2.12-8
ca6c51
- cleanup, sync with rawhide
ca6c51
ca6c51
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-7
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ca6c51
ca6c51
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-6
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
ca6c51
ca6c51
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-5
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ca6c51
ca6c51
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-4
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ca6c51
ca6c51
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.12-3
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ca6c51
ca6c51
* Mon Sep 14 2015 Pavel Raiskup <praiskup@redhat.com> - 2.12-2
ca6c51
- (re)generate manual page for new options
ca6c51
ca6c51
* Mon Sep 14 2015 Pavel Raiskup <praiskup@redhat.com> - 2.12-1
ca6c51
- rebase, per release notes
ca6c51
  http://lists.gnu.org/archive/html/bug-cpio/2015-09/msg00004.html
ca6c51
ca6c51
* Mon Jul 06 2015 Ondrej Vasik <ovasik@redhat.com> - 2.11-36
ca6c51
- in 2015, file name in CVE-2014-9112 shows in a bit different timestamp
ca6c51
  format (fix FTBFS, #1239416)
ca6c51
ca6c51
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-35
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ca6c51
ca6c51
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2.11-34
ca6c51
- Rebuilt for Fedora 23 Change
ca6c51
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
ca6c51
ca6c51
* Wed Dec 03 2014 Pavel Raiskup <praiskup@redhat.com> - 2.11-33
ca6c51
- the stored archive in testsuite has little endian headers, expect also
ca6c51
  'reversed byte-order' warning on big-endian
ca6c51
ca6c51
* Wed Dec 03 2014 Pavel Raiskup <praiskup@redhat.com> - 2.11-32
ca6c51
- adjust the testsuite fix for CVE-2014-9112 (#1167573)
ca6c51
- put the testsuite.log to standard output if make check fails
ca6c51
ca6c51
* Tue Dec 02 2014 Pavel Raiskup <praiskup@redhat.com> - 2.11-31
ca6c51
- fix for CVE-2014-9112 (#1167573)
ca6c51
ca6c51
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-30
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
ca6c51
ca6c51
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 2.11-29
ca6c51
- fix license handling
ca6c51
ca6c51
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-28
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ca6c51
ca6c51
* Sat May 24 2014 Pavel Raiskup <praiskup@redhat.com> - 2.11-27
ca6c51
- better fix for bad read() error checking (#996150)
ca6c51
ca6c51
* Mon Apr 07 2014 Pavel Raiskup <praiskup@redhat.com> - 2.11-26
ca6c51
- fix manual page to warn users about inode truncation (#952313)
ca6c51
- fix for RU translation (#1075510)
ca6c51
ca6c51
* Tue Nov 12 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-25
ca6c51
- fix build for ppc64le (#1029540)
ca6c51
ca6c51
* Mon Sep 30 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-24
ca6c51
- properly trim "crc" checksum to 32 bits (#1001965)
ca6c51
- remove unneeded patch for config.gues/config.sub (#951442)
ca6c51
- allow treat read() errors (#996150)
ca6c51
ca6c51
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-21
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
ca6c51
ca6c51
* Wed Mar 27 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-20
ca6c51
- fix another bogus date in changelog
ca6c51
- update config.guess/config.sub for aarm64 build (#925189)
ca6c51
- run autoreconf instead of autoheader
ca6c51
ca6c51
* Fri Mar 15 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-19
ca6c51
- revert the fix for memory leak (at least for now) #921725
ca6c51
ca6c51
* Tue Mar 12 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-18
ca6c51
- explicitly provide /bin/cpio for packages that are dependant on this file
ca6c51
ca6c51
* Mon Mar 11 2013 Pavel Raiskup <praiskup@redhat.com> - 2.11-17
ca6c51
- fix small memory leak in copyin.c (#919454)
ca6c51
- remove %%defattr and install 'cpio' to real %%{_bindir}
ca6c51
- CovScan: add %%{?_rawbuild}
ca6c51
ca6c51
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-16
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ca6c51
ca6c51
* Mon Nov 05 2012 Pavel Raiskup <praiskup@redhat.com> - 2.11-15
ca6c51
- disable the temporary O_SYNC fix (glibc is fixed - #872366)
ca6c51
ca6c51
* Fri Nov 02 2012 Pavel Raiskup <praiskup@redhat.com> - 2.11-14
ca6c51
- fix bad changelog entries
ca6c51
- allow to build in Fedora Rawhide (temporarily because of #872336) (the value
ca6c51
  is guessed from from /usr/include/asm-generic/fcntl.h)
ca6c51
ca6c51
* Mon Oct 22 2012 Pavel Raiskup <praiskup@redhat.com> 2.11-13
ca6c51
- move RH-only manual page cpio.1 from look-aside cache into dist-git repository
ca6c51
ca6c51
* Thu Oct 18 2012 Pavel Raiskup <praiskup@redhat.com> 2.11-12
ca6c51
- fix for bad file name splitting while creating ustar archive (#866467)
ca6c51
ca6c51
* Wed Aug 29 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-11
ca6c51
- add missing options to manpage (#852765)
ca6c51
ca6c51
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-10
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ca6c51
ca6c51
* Mon Jun 04 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-9
ca6c51
- fix build failure in rawhide build system (gets undefined)
ca6c51
ca6c51
* Wed May 30 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-8
ca6c51
- drop unnecessary patches: cpio-2.9-dir_perm.patch and
ca6c51
  cpio-2.9-sys_umask.patch - reported by M.Castellini
ca6c51
ca6c51
* Tue May 15 2012 Ondrej Vasik <ovasik@redhat.com> 2.11-7
ca6c51
- add virtual provides for bundled(gnulib) copylib (#821749)
ca6c51
ca6c51
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-6
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ca6c51
ca6c51
* Fri Oct 14 2011 Ondrej Vasik <ovasik@redhat.com> 2.11-5
ca6c51
- update manpage to reflect new option, polish the style (#746209)
ca6c51
ca6c51
* Mon Mar 07 2011 Ondrej Vasik <ovasik@redhat.com> 2.11-4
ca6c51
- fix several typos and manpage syntax(Ville Skyttä, #682470)
ca6c51
ca6c51
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.11-3
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ca6c51
ca6c51
* Mon May 31 2010 Ondrej Vasik <ovasik@redhat.com> 2.11-2
ca6c51
- built with fno-strict-aliasing(#596153)
ca6c51
ca6c51
* Thu Mar 11 2010 Ondrej Vasik <ovasik@redhat.com> 2.11-1
ca6c51
- new upstream release 2.11
ca6c51
- removed applied patches, run test suite
ca6c51
ca6c51
* Wed Mar 10 2010 Ondrej Vasik <ovasik@redhat.com> 2.10-6
ca6c51
- CVE-2010-0624 fix heap-based buffer overflow by expanding
ca6c51
  a specially-crafted archive(#572150)
ca6c51
- comment patches
ca6c51
ca6c51
* Thu Feb 25 2010 Ondrej Vasik <ovasik@redhat.com> 2.10-5
ca6c51
- remove redundant setLocale patch
ca6c51
- fix segfault with nonexisting file with patternnames
ca6c51
  (#567022)
ca6c51
ca6c51
* Wed Jan 06 2010 Ondrej Vasik <ovasik@redhat.com> 2.10-4
ca6c51
- do not fail with new POSIX 2008 utimens() glibc call
ca6c51
  (#552320)
ca6c51
ca6c51
* Thu Aug 06 2009 Ondrej Vasik <ovasik@redhat.com> 2.10-3
ca6c51
- do process install-info only without --excludedocs(#515924)
ca6c51
ca6c51
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-2
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ca6c51
ca6c51
* Mon Jun 22 2009 Ondrej Vasik <ovasik@redhat.com> 2.10-1
ca6c51
- new upstream release 2.10
ca6c51
ca6c51
* Mon Mar  9 2009 Ondrej Vasik <ovasik@redhat.com> 2.9.90-5
ca6c51
- define default remote shell as /usr/bin/ssh(#452904)
ca6c51
- use /etc/rmt as default rmt command
ca6c51
ca6c51
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.9.90-4
ca6c51
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ca6c51
ca6c51
* Wed Feb 11 2009 Ondrej Vasik <ovasik@redhat.com> 2.9.90-3
ca6c51
- make -d honor system umask(#484997)
ca6c51
ca6c51
* Fri Jul 18 2008 Kamil Dudka <kdudka@redhat.com> 2.9.90-2
ca6c51
- Support major/minor device numbers over 127 (bz#450109)
ca6c51
ca6c51
* Tue Jun 03 2008 Ondrej Vasik <ovasik@redhat.com> 2.9.90-1
ca6c51
- new upstream alpha version 2.9.90 + removed applied patches
ca6c51
ca6c51
* Mon Mar 03 2008 Radek Brich <rbrich@redhat.com> 2.9-7
ca6c51
- fix -dir_perm patch to restore permissions correctly even
ca6c51
  in passthrough mode -- revert affected code to cpio 2.8 state
ca6c51
  (bz#430835)
ca6c51
ca6c51
* Thu Feb 14 2008 Radek Brich <rbrich@redhat.com> 2.9-6
ca6c51
- when extracting archive created with 'find -depth',
ca6c51
  restore the permissions of directories properly (bz#430835)
ca6c51
- fix for GCC 4.3
ca6c51
ca6c51
* Thu Nov 01 2007 Radek Brich <rbrich@redhat.com> 2.9-5
ca6c51
- upstream patch for CVE-2007-4476 (stack crashing in safer_name_suffix)
ca6c51
ca6c51
* Tue Sep 04 2007 Radek Brich <rbrich@redhat.com> 2.9-4
ca6c51
- Updated license tag
ca6c51
ca6c51
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.9-3
ca6c51
- Rebuild for selinux ppc32 issue.
ca6c51
ca6c51
* Thu Jul 19 2007 Radek Brich <rbrich@redhat.com> 2.9-1.1
ca6c51
- fix spec, rebuild
ca6c51
ca6c51
* Thu Jul 19 2007 Radek Brich <rbrich@redhat.com> 2.9-1
ca6c51
- update to 2.9, GPLv3
ca6c51
ca6c51
* Tue Feb 20 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-27
ca6c51
- fix typo in changelog
ca6c51
ca6c51
* Thu Feb 08 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 2.6-26
ca6c51
- Preserve timestamps when installing files
ca6c51
ca6c51
* Thu Feb 08 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-25
ca6c51
- set cpio bindir properly
ca6c51
ca6c51
* Wed Feb 07 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-24
ca6c51
- fix spec file to meet Fedora standards (#225656) 
ca6c51
ca6c51
* Mon Jan 22 2007 Peter Vrabec <pvrabec@redhat.com> 2.6-23
ca6c51
- fix non-failsafe install-info use in scriptlets (#223682)
ca6c51
ca6c51
* Sun Dec 10 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-22
ca6c51
- fix rpmlint issue in spec file
ca6c51
ca6c51
* Tue Dec 05 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-21
ca6c51
- fix setlocale (#200478)
ca6c51
ca6c51
* Sat Nov 25 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-20
ca6c51
- cpio man page provided by RedHat
ca6c51
ca6c51
* Tue Jul 18 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-19
ca6c51
- fix cpio --help output (#197597)
ca6c51
ca6c51
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6-18.1
ca6c51
- rebuild
ca6c51
ca6c51
* Sat Jun 10 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-18
ca6c51
- autoconf was added to BuildRequires, because autoheader is 
ca6c51
  used in prep phase (#194737)
ca6c51
ca6c51
* Tue Mar 28 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-17
ca6c51
- rebuild
ca6c51
ca6c51
* Sat Mar 25 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-15
ca6c51
- fix (#186339) on ppc and s390
ca6c51
ca6c51
* Thu Mar 23 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-14
ca6c51
- init struct  file_hdr (#186339)
ca6c51
ca6c51
* Wed Mar 15 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-13
ca6c51
- merge toAsciiError.patch with writeOutHeaderBufferOverflow.patch
ca6c51
- merge largeFileGrew.patch with lfs.patch
ca6c51
- fix large file support, cpio is able to store files<8GB 
ca6c51
  in 'old ascii' format (-H odc option)
ca6c51
- adjust warnings.patch
ca6c51
ca6c51
* Tue Mar 14 2006 Peter Vrabec <pvrabec@redhat.com> 2.6-12
ca6c51
- fix warn_if_file_changed() and set exit code to #1 when 
ca6c51
  cpio fails to store file > 4GB (#183224)
ca6c51
ca6c51
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.6-11.2.1
ca6c51
- bump again for double-long bug on ppc(64)
ca6c51
ca6c51
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.6-11.2
ca6c51
- rebuilt for new gcc4.1 snapshot and glibc changes
ca6c51
ca6c51
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
ca6c51
- rebuilt
ca6c51
ca6c51
* Wed Nov 23 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-11
ca6c51
- fix previous patch(writeOutHeaderBufferOverflow)
ca6c51
ca6c51
* Wed Nov 23 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-10
ca6c51
- write_out_header rewritten to fix buffer overflow(#172669)
ca6c51
ca6c51
* Mon Oct 31 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-9
ca6c51
- fix checksum error on 64-bit machines (#171649)
ca6c51
ca6c51
* Fri Jul 01 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-8
ca6c51
- fix large file support, archive >4GiB, archive members <4GiB (#160056)
ca6c51
- fix race condition holes, use mode 0700 for dir creation
ca6c51
ca6c51
* Tue May 17 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-7
ca6c51
- fix #156314 (CAN-2005-1229) cpio directory traversal issue
ca6c51
- fix some gcc warnings
ca6c51
ca6c51
* Mon Apr 25 2005 Peter Vrabec <pvrabec@redhat.com> 2.6-6
ca6c51
- fix race condition (#155749)
ca6c51
- use find_lang macro
ca6c51
ca6c51
* Thu Mar 17 2005 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- rebuild 2.6-5
ca6c51
ca6c51
* Mon Jan 24 2005 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- insecure file creation (#145721)
ca6c51
ca6c51
* Mon Jan 17 2005 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- fix symlinks pack (#145225)
ca6c51
ca6c51
* Fri Jan 14 2005 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- new fixed version of lfs patch (#144688)
ca6c51
ca6c51
* Thu Jan 13 2005 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- upgrade to cpio-2.6
ca6c51
ca6c51
* Tue Nov 09 2004 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- fixed "cpio -oH ustar (or tar) saves bad mtime date after Jan 10 2004" (#114580)
ca6c51
ca6c51
* Mon Nov 01 2004 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- support large files > 2GB (#105617)
ca6c51
ca6c51
* Thu Oct 21 2004 Peter Vrabec <pvrabec@redhat.com>
ca6c51
- fix dependencies in spec
ca6c51
ca6c51
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
ca6c51
- rebuilt
ca6c51
ca6c51
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
ca6c51
- rebuilt
ca6c51
ca6c51
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
ca6c51
- do not link against -lnsl
ca6c51
ca6c51
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
ca6c51
- rebuilt
ca6c51
ca6c51
* Fri Feb 14 2003 Jeff Johnson <jbj@redhat.com> 2.5-3
ca6c51
- setlocale for i18n compliance (#79136).
ca6c51
ca6c51
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
ca6c51
- rebuilt
ca6c51
ca6c51
* Mon Nov 18 2002 Jeff Johnson <jbj@redhat.com> 2.5-1
ca6c51
- update 2.5, restack and consolidate patches.
ca6c51
- don't apply (but include for now) freebsd and #56346 patches.
ca6c51
- add url (#54598).
ca6c51
ca6c51
* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 2.4.2-30
ca6c51
- rebuild from CVS.
ca6c51
ca6c51
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
ca6c51
- automated rebuild
ca6c51
ca6c51
* Thu May 23 2002 Tim Powers <timp@redhat.com>
ca6c51
- automated rebuild
ca6c51
ca6c51
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
ca6c51
- automated rebuild
ca6c51
ca6c51
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-25
ca6c51
- Fix up extraction of multiply linked files when the first link is
ca6c51
  excluded (Bug #56346)
ca6c51
ca6c51
* Mon Oct  1 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.4.2-24
ca6c51
- Merge and adapt patches from FreeBSD, this should fix FIFO handling
ca6c51
ca6c51
* Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com>
ca6c51
- Add and adapt Debian patch (pl36), fixes #45285 and a couple of other issues
ca6c51
ca6c51
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
ca6c51
- Bump release + rebuild.
ca6c51
ca6c51
* Tue Aug  8 2000 Jeff Johnson <jbj@redhat.com>
ca6c51
- update man page with decription of -c behavior (#10581).
ca6c51
ca6c51
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
ca6c51
- automatic rebuild
ca6c51
ca6c51
* Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
ca6c51
- patch from HJ Lu for better error codes upon exit
ca6c51
ca6c51
* Mon Jun  5 2000 Jeff Johnson <jbj@redhat.com>
ca6c51
- FHS packaging.
ca6c51
ca6c51
* Wed Feb  9 2000 Jeff Johnson <jbj@redhat.com>
ca6c51
- missing defattr.
ca6c51
ca6c51
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
ca6c51
- handle compressed manpages
ca6c51
ca6c51
* Fri Dec 17 1999 Jeff Johnson <jbj@redhat.com>
ca6c51
- revert the stdout patch (#3358), restoring original GNU cpio behavior
ca6c51
  (#6376, #7538), the patch was dumb.
ca6c51
ca6c51
* Tue Aug 31 1999 Jeff Johnson <jbj@redhat.com>
ca6c51
- fix infinite loop unpacking empty files with hard links (#4208).
ca6c51
- stdout should contain progress information (#3358).
ca6c51
ca6c51
* Sun Mar 21 1999 Crstian Gafton <gafton@redhat.com> 
ca6c51
- auto rebuild in the new build environment (release 12)
ca6c51
ca6c51
* Sat Dec  5 1998 Jeff Johnson <jbj@redhat.com>
ca6c51
- longlong dev wrong with "-o -H odc" headers (formerly "-oc").
ca6c51
ca6c51
* Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
ca6c51
- patch to compile on glibc 2.1, where strdup is a macro
ca6c51
ca6c51
* Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
ca6c51
- Fiddle bindir/libexecdir to get RH install correct.
ca6c51
- Don't include /sbin/rmt -- use the rmt from dump package.
ca6c51
- Don't include /bin/mt -- use the mt from mt-st package.
ca6c51
- Add prereq's
ca6c51
ca6c51
* Tue Jun 30 1998 Jeff Johnson <jbj@redhat.com>
ca6c51
- fix '-c' to duplicate svr4 behavior (problem #438)
ca6c51
- install support programs & info pages
ca6c51
ca6c51
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
ca6c51
- translations modified for de, fr, tr
ca6c51
ca6c51
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
ca6c51
- added BuildRoot
ca6c51
- removed "(used by RPM)" comment in Summary
ca6c51
ca6c51
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
ca6c51
- built against glibc
ca6c51
- no longer statically linked as RPM doesn't use cpio for unpacking packages