Blame SPECS/tar.spec

b5048e
%if %{?WITH_SELINUX:0}%{!?WITH_SELINUX:1}
b5048e
%global WITH_SELINUX 1
b5048e
%endif
b5048e
b5048e
Summary: A GNU file archiving program
b5048e
Name: tar
b5048e
Epoch: 2
b5048e
Version: 1.30
aaefa9
Release: 5%{?dist}
b5048e
License: GPLv3+
b5048e
Group: Applications/Archiving
b5048e
URL: http://www.gnu.org/software/tar/
b5048e
b5048e
Source0: ftp://ftp.gnu.org/pub/gnu/tar/tar-%{version}.tar.xz
b5048e
Source1: ftp://ftp.gnu.org/pub/gnu/tar/tar-%{version}.tar.xz.sig
b5048e
b5048e
# Note that all patches are documented in patch files (git format-patch format)
b5048e
Patch1:  tar-1.28-loneZeroWarning.patch
b5048e
Patch2:  tar-1.28-vfatTruncate.patch
b5048e
Patch3:  tar-1.29-wildcards.patch
b5048e
Patch4:  tar-1.28-atime-rofs.patch
b5048e
Patch9:  tar-1.28-document-exclude-mistakes.patch
b5048e
Patch11: tar-1.28-sparse-inf-loops.patch
b5048e
Patch12: tar-1.30-tests-difflink.patch
b5048e
Patch13: tar-1.30-tests-dirrem.patch
aaefa9
Patch14: tar-1.30-xgetcwd-null-return-check.patch
b5048e
b5048e
# run "make check" by default
b5048e
%bcond_without check
b5048e
b5048e
BuildRequires: autoconf automake texinfo gettext libacl-devel
b5048e
b5048e
%if %{with check}
b5048e
# cover needs of tar's testsuite
b5048e
BuildRequires: attr acl policycoreutils
b5048e
%endif
b5048e
b5048e
%if %{WITH_SELINUX}
b5048e
BuildRequires: libselinux-devel
b5048e
%endif
b5048e
Provides: bundled(gnulib)
b5048e
Provides: /bin/tar
b5048e
Provides: /bin/gtar
b5048e
Requires(post): /sbin/install-info
b5048e
Requires(preun): /sbin/install-info
b5048e
b5048e
%description
b5048e
The GNU tar program saves many files together in one archive and can
b5048e
restore individual files (or all of the files) from that archive. Tar
b5048e
can also be used to add supplemental files to an archive and to update
b5048e
or list files in the archive. Tar includes multivolume support,
b5048e
automatic archive compression/decompression, the ability to perform
b5048e
remote archives, and the ability to perform incremental and full
b5048e
backups.
b5048e
b5048e
If you want to use tar for remote backups, you also need to install
b5048e
the rmt package on the remote box.
b5048e
b5048e
%prep
b5048e
%autosetup -p1
b5048e
autoreconf -v
b5048e
b5048e
# Keep only entries related to the latest release.
b5048e
mv ChangeLog{,~}
b5048e
awk 'stop = false; /^2014-07-27/ { stop = true; exit }; { print }' \
b5048e
    < ChangeLog~ > ChangeLog
b5048e
b5048e
b5048e
%build
b5048e
%if ! %{WITH_SELINUX}
b5048e
%global CONFIGURE_SELINUX --without-selinux
b5048e
%endif
b5048e
b5048e
%configure %{?CONFIGURE_SELINUX} \
b5048e
    --with-lzma="xz --format=lzma" \
b5048e
    DEFAULT_RMT_DIR=%{_sysconfdir} \
b5048e
    RSH=/usr/bin/ssh
b5048e
make %{?_smp_mflags}
b5048e
b5048e
%install
b5048e
make DESTDIR=$RPM_BUILD_ROOT install
b5048e
b5048e
ln -s tar $RPM_BUILD_ROOT%{_bindir}/gtar
b5048e
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
b5048e
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
b5048e
ln -s tar.1.gz $RPM_BUILD_ROOT%{_mandir}/man1/gtar.1
b5048e
b5048e
# XXX Nuke unpackaged files.
b5048e
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/rmt
b5048e
rm -f $RPM_BUILD_ROOT%{_mandir}/man8/rmt.8*
b5048e
b5048e
%find_lang %name
b5048e
b5048e
%check
b5048e
%if %{with check}
b5048e
rm -f $RPM_BUILD_ROOT/test/testsuite
b5048e
make check || (
b5048e
    # get the error log
b5048e
    set +x
b5048e
    find -name testsuite.log | while read line; do
b5048e
        echo "=== $line ==="
b5048e
        cat "$line"
b5048e
        echo
b5048e
    done
b5048e
    false
b5048e
)
b5048e
%endif
b5048e
b5048e
%post
b5048e
if [ -f %{_infodir}/tar.info.gz ]; then
b5048e
   /sbin/install-info %{_infodir}/tar.info.gz %{_infodir}/dir || :
b5048e
fi
b5048e
b5048e
%preun
b5048e
if [ $1 = 0 ]; then
b5048e
   if [ -f %{_infodir}/tar.info.gz ]; then
b5048e
      /sbin/install-info --delete %{_infodir}/tar.info.gz %{_infodir}/dir || :
b5048e
   fi
b5048e
fi
b5048e
b5048e
%files -f %{name}.lang
b5048e
%{!?_licensedir:%global license %%doc}
b5048e
%license COPYING
b5048e
%doc AUTHORS README THANKS NEWS ChangeLog
b5048e
%{_bindir}/tar
b5048e
%{_bindir}/gtar
b5048e
%{_mandir}/man1/tar.1*
b5048e
%{_mandir}/man1/gtar.1*
b5048e
%{_infodir}/tar.info*
b5048e
b5048e
%changelog
aaefa9
* Wed May 20 2020 Ondrej Dubaj <odubaj@redhat.com> - 1.30-5
aaefa9
- fixed NULL return value from xgetcwd (#1837871)
aaefa9
b5048e
* Wed May 23 2018 Pavel Raiskup <praiskup@redhat.com> - 1.30-4
b5048e
- drop BuildRequires: rsh, we anyways use ./configure RSH=%%_bindir/ssh
b5048e
b5048e
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.30-3
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b5048e
b5048e
* Sat Jan 06 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:1.30-2
b5048e
- Return Epoch back
b5048e
b5048e
* Thu Jan 04 2018 Pavel Raiskup <praiskup@redhat.com> - 1.30-1
b5048e
- testsuite fixes per upstream reports
b5048e
b5048e
* Mon Dec 18 2017 Pavel Raiskup <praiskup@redhat.com> - 1.30-1
b5048e
- rebase to latest upstream release, per release notes
b5048e
  http://lists.gnu.org/archive/html/info-gnu/2017-12/msg00011.html
b5048e
b5048e
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.29-7
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b5048e
b5048e
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.29-6
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b5048e
b5048e
* Wed May 24 2017 Tomas Repik <trepik@redhat.com> - 2:1.29-5
b5048e
- fix --add-file option (rhbz#1436030)
b5048e
b5048e
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.29-4
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b5048e
b5048e
* Mon Nov 28 2016 Pavel Raiskup <praiskup@redhat.com> - 1.29-3
b5048e
- revert back some docs
b5048e
- fix --create to use --xattrs-include/exclude (rhbz#1341787)
b5048e
- don't hang with '-x --skip-old-files --xattrs' (rhbz#1399036)
b5048e
b5048e
* Mon Nov  7 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1.29-2
b5048e
- Drop large docs, minor specs cleanups
b5048e
b5048e
* Tue May 17 2016 Pavel Raiskup <praiskup@redhat.com> - 1.29-1
b5048e
- new upstream release 1.29 (rhbz#1336607)
b5048e
b5048e
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.28-7
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b5048e
b5048e
* Fri Jun 26 2015 Pavel Raiskup <praiskup@redhat.com> - 1.28-6
b5048e
- fix --files-from and -T cooperation (rhbz#1230762)
b5048e
- avoid two testsuite false alarms related to --files-from option
b5048e
b5048e
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.28-5
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b5048e
b5048e
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 2:1.28-4
b5048e
- Rebuilt for Fedora 23 Change
b5048e
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
b5048e
b5048e
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.28-3
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b5048e
b5048e
* Wed Aug  6 2014 Tom Callaway <spot@fedoraproject.org> - 2:1.28-2
b5048e
- fix license handling
b5048e
b5048e
* Mon Jul 28 2014 Pavel Raiskup <praiskup@redhat.com> - 1.28-1
b5048e
- rebase to new upstream tarball, per release notes:
b5048e
  https://savannah.gnu.org/forum/forum.php?forum_id=8037
b5048e
b5048e
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.27.1-5
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b5048e
b5048e
* Mon May 12 2014 Pavel Raiskup <praiskup@redhat.com> - 1.27.1-4
b5048e
- enable parallel build
b5048e
b5048e
* Tue Apr 01 2014 Pavel Raiskup <praiskup@redhat.com> - 1.27.1-3
b5048e
- document --exclude mistakes (#903666)
b5048e
- fix default ACLs propagation (#1082603)
b5048e
- infinite loop(s) in sparse-file handling (#1082608)
b5048e
- fix listing (and --verify) for big sparse files (#916995)
b5048e
- fix eternal loop in -T option (#1083066)
b5048e
- don't read/write archive from/to terminal (#1083075)
b5048e
b5048e
* Fri Nov 29 2013 Pavel Raiskup <praiskup@redhat.com> - 1.27.1-2
b5048e
- sync manual page contents with help2man output
b5048e
b5048e
* Mon Nov 18 2013 Pavel Raiskup <praiskup@redhat.com> - 1.27.1-1
b5048e
- minor version update to 1.27.1
b5048e
b5048e
* Tue Oct 29 2013 Pavel Raiskup <praiskup@redhat.com> - 1.27-2
b5048e
- sparse file detection based on fstat() fix (#1024095)
b5048e
b5048e
* Wed Oct 09 2013 Ondrej Vasik <ovasik@redhat.com> - 1.27-1
b5048e
- new upstream release 1.27 (#1016288)
b5048e
b5048e
* Mon Sep 09 2013 Pavel Raiskup <praiskup@redhat.com> - 1.26-28
b5048e
- add documenation for xattrs-like options (#996753)
b5048e
- the --xattrs-include implies --xattrs now (#965969)
b5048e
b5048e
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.26-27
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b5048e
b5048e
* Thu Jun 20 2013 Pavel Raiskup <praiskup@redhat.com> - 1.26-26
b5048e
- the /etc/rmt seems to be the best place where to look for rmt binary (see the
b5048e
  commit message in Fedora's cpio.git for more info)
b5048e
b5048e
* Tue Jun 04 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-25
b5048e
- fix "symlink eating" bug (already fixed in upstream git)
b5048e
b5048e
* Thu May 30 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-24
b5048e
- use /usr/bin/ssh as the default remote shell binary (#969015)
b5048e
- do not verbose-print xattrs when --no-xattrs option is used
b5048e
- do not override the config.{guess,sub} twice, this is already done by the
b5048e
  redhat-rpm-config package (#951442)
b5048e
b5048e
* Tue May 28 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-23
b5048e
- again search for 'rmt' binary in %%{_sbindir} on target host
b5048e
b5048e
* Tue Mar 26 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-22
b5048e
- enable build for arm64 (#926610)
b5048e
- fix the NAME part in manual page (copied from texinfo)
b5048e
- silence gcc warnings (lint fixes without risk from upstream) for RPMDiff
b5048e
b5048e
* Tue Mar 19 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-21
b5048e
- allow extracting single volume from multi-volume archive (#919897)
b5048e
- usrmove: /bin/tar ~> /usr/bin/tar, selinux handling edit
b5048e
- add possibility to pass arguments to commands called from tar (#819187)
b5048e
b5048e
* Fri Mar 01 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-19
b5048e
- fix creating sparse pax archives containing files of effective
b5048e
  size >8GB (#516309)
b5048e
- silence rpmlint (fix bad dates in changelog based on git log dates)
b5048e
b5048e
* Wed Feb 20 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-18
b5048e
- fix problems with big uids/gids and pax format (> 2^21) (#913406)
b5048e
b5048e
* Mon Feb 18 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-17
b5048e
- add possibility to 'rpmbuild' without %%check phase
b5048e
- make the autoreconf phase verbose
b5048e
- re-create older patches (avoid offset warnings during patching)
b5048e
- remove patches which we don't need now (xattrs - will be updated, sigpipe -
b5048e
  test should work now, partial revert of *at() conversion was done because of
b5048e
  incompatible xattr patch)
b5048e
- add upstream up2date xattr patch
b5048e
b5048e
* Fri Feb 01 2013 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-16
b5048e
- make the info documentation more visible in manpage (#903666)
b5048e
- sync tar.1 manpage with actual --help output (e.g. added --skip-old-files)
b5048e
- add the last_help2man_run file to git repo to allow more easily find changes
b5048e
  in --help in future
b5048e
- make the DEFAULTS section to be more visible in man page
b5048e
- verbose 'make check' only when some fail happened (append to koji build.log)
b5048e
b5048e
* Thu Nov 29 2012 Ondrej Vasik <ovasik@redhat.com> - 2:1.26-15
b5048e
- add missing --full-time option to manpage
b5048e
b5048e
* Thu Oct 18 2012 Pavel Raiskup <praiskup@redhat.com> - 2:1.26-14
b5048e
- fix bad behaviour of --keep-old-files and add --skip-old-files option
b5048e
  (#799252)
b5048e
b5048e
* Wed Oct 10 2012 Pavel Raiskup <praiskup@redhat.com> 2:1.26-13
b5048e
- fix badly written macro for building --without-selinux
b5048e
- allow to build tar in difference CoverityScan by forcing the '.gets' patch to
b5048e
  be applied even in the run without patches
b5048e
b5048e
* Fri Oct 05 2012 Pavel Raiskup <praiskup@redhat.com> 2:1.26-12
b5048e
- repair the xattr-gnulib-prepare patch to allow build tar without SELinux
b5048e
  support
b5048e
- fedora-review compliance -> remove trailing white-spaces, remove macro from
b5048e
  comment, remove BR of gawk;coreutils;gzip that should be covered automatically
b5048e
  by minimum build environment, do not `rm -rf' buildroot at the beginning of
b5048e
  install phase (needed only in EPEL), remove BuildRoot definition, remove
b5048e
  defattr macro, s/define/global/
b5048e
- do not use ${VAR} syntax for bash variables, use just $VAR
b5048e
b5048e
* Wed Aug 22 2012 Pavel Raiskup <praiskup@redhat.com> 2:1.26-11
b5048e
- fix manpage to reflect #850291 related commit
b5048e
b5048e
* Tue Aug 21 2012 Pavel Raiskup <praiskup@redhat.com> 2:1.26-10
b5048e
- prepare Gnulib for new xattrs (#850291)
b5048e
- new version of RH xattrs patch (#850291)
b5048e
- enable verbose mode in testsuite to allow better debugging on error
b5048e
b5048e
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.26-9
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b5048e
b5048e
* Thu Jul 12 2012 Pavel Raiskup <praiskup@redhat.com> 2:1.26-8
b5048e
- force the fchown() be called before xattrs_set() (#771927)
b5048e
b5048e
* Sat Jun 16 2012 Ondrej Vasik <ovasik@redhat.com> 2:1.26-7
b5048e
- store&restore security.capability extended attributes category
b5048e
  (#771927)
b5048e
- fix build failure with undefined gets
b5048e
b5048e
* Tue May 15 2012 Ondrej Vasik <ovasik@redhat.com> 2:1.26-6
b5048e
- add virtual provides for bundled(gnulib) copylib (#821790)
b5048e
b5048e
* Thu Apr 05 2012 Pavel Raiskup <praiskup@redhat.com> 2:1.26-5
b5048e
- fix for bad cooperation of the '-C' (change directory) and '-u' (update
b5048e
  package) options (#688567)
b5048e
b5048e
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.26-4
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b5048e
b5048e
* Sun Oct  2 2011 Ville Skyttä <ville.skytta@iki.fi> - 2:1.26-3
b5048e
- Man page heading formatting fixes.
b5048e
b5048e
* Mon Sep 26 2011 Kamil Dudka <kdudka@redhat.com> 2:1.26-2
b5048e
- restore basic functionality of --acl, --selinux, and --xattr (#717684)
b5048e
b5048e
* Sat Mar 12 2011 Ondrej Vasik <ovasik@redhat.com> 2:1.26-1
b5048e
- new upstream release 1.26
b5048e
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.25-6
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b5048e
b5048e
* Thu Jan 20 2011 Ondrej Vasik <ovasik@redhat.com> 2:1.25-5
b5048e
- drop unnecessary hard dependency on info package(#671157)
b5048e
b5048e
* Mon Jan 03 2011 Ondrej Vasik <ovasik@redhat.com> 2:1.25-4
b5048e
- mention that some compression options might not work if
b5048e
  the external program is not available(#666755)
b5048e
b5048e
* Wed Dec 08 2010 Kamil Dudka <kdudka@redhat.com> 2:1.25-3
b5048e
- correctly store long sparse file names in PAX archives (#656834)
b5048e
b5048e
* Tue Nov 23 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.25-2
b5048e
- fix issue with --one-file-system and --listed-incremental
b5048e
  (#654718)
b5048e
b5048e
* Mon Nov 08 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.25-1
b5048e
- new upstream release 1.25
b5048e
b5048e
* Mon Oct 25 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.24-1
b5048e
- new upstream release 1.24, use .xz archive
b5048e
b5048e
* Wed Sep 29 2010 jkeating - 2:1.23-8
b5048e
- Rebuilt for gcc bug 634757
b5048e
b5048e
* Fri Sep 24 2010 Kamil Dudka <kdudka@redhat.com> 2:1.23-7
b5048e
- match non-stripped file names (#637085)
b5048e
b5048e
* Mon Sep 20 2010 Kamil Dudka <kdudka@redhat.com> 2:1.23-6
b5048e
- fix exclusion of long file names with --xattrs (#634866)
b5048e
- do not crash with --listed-incremental (#635318)
b5048e
b5048e
* Mon Aug 16 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.23-5
b5048e
- add support for security.NTACL xattrs (#621215)
b5048e
b5048e
* Tue Jun 01 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.23-4
b5048e
- recognize old-archive/portability options(#594044)
b5048e
b5048e
* Wed Apr 07 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.23-3
b5048e
- allow storing of extended attributes for fifo and block
b5048e
  or character devices files(#573147)
b5048e
b5048e
* Mon Mar 15 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.23-2
b5048e
- update help2maned manpage
b5048e
b5048e
* Fri Mar 12 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.23-1
b5048e
- new upstream release 1.23, remove applied patches
b5048e
b5048e
* Wed Mar 10 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.22-17
b5048e
- CVE-2010-0624 tar, cpio: Heap-based buffer overflow
b5048e
  by expanding a specially-crafted archive (#572149)
b5048e
- realloc within check_exclusion_tags() caused invalid write
b5048e
  (#570591)
b5048e
- not closing file descriptors for excluded files/dirs with
b5048e
  exlude-tag... options could cause descriptor exhaustion
b5048e
  (#570591)
b5048e
b5048e
* Sat Feb 20 2010 Kamil Dudka <kdudka@redhat.com> 2:1.22-16
b5048e
- support for "lustre.*" extended attributes (#561855)
b5048e
b5048e
* Thu Feb 04 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.22-15
b5048e
- fix segfault with corrupted metadata in code_ns_fraction
b5048e
  (#531441)
b5048e
b5048e
* Wed Feb 03 2010 Kamil Dudka <kdudka@redhat.com> 2:1.22-14
b5048e
- allow also build with SELinux support
b5048e
b5048e
* Mon Feb 01 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.22-13
b5048e
- allow build without SELinux support(#556679)
b5048e
b5048e
* Tue Jan 05 2010 Ondrej Vasik <ovasik@redhat.com> 2:1.22-12
b5048e
- do not fail with POSIX 2008 glibc futimens() (#552320)
b5048e
- temporarily disable fix for #531441, causing stack smashing
b5048e
  with newer glibc(#551206)
b5048e
b5048e
* Tue Dec 08 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-11
b5048e
- fix segfault with corrupted metadata in code_ns_fraction
b5048e
  (#531441)
b5048e
- commented patches and sources
b5048e
b5048e
* Fri Nov 27 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-10
b5048e
- store xattrs for symlinks (#525992) - by Kamil Dudka
b5048e
- update tar(1) manpage (#539787)
b5048e
- fix memory leak in xheader (#518079)
b5048e
b5048e
* Wed Nov 18 2009 Kamil Dudka <kdudka@redhat.com> 2:1.22-9
b5048e
- store SELinux context for symlinks (#525992)
b5048e
b5048e
* Thu Aug 27 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-8
b5048e
- provide symlink manpage for gtar
b5048e
b5048e
* Thu Aug 06 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-7
b5048e
- do process install-info only without --excludedocs(#515923)
b5048e
b5048e
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.22-6
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b5048e
b5048e
* Thu Jul 16 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-5
b5048e
- Fix restoring of directory default acls(#511145)
b5048e
- Do not patch generated autotools files
b5048e
b5048e
* Thu Jun 25 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-4
b5048e
- Report record size only if the archive refers to a device
b5048e
  (#487760)
b5048e
- Do not sigabrt with new gcc/glibc because of writing to
b5048e
  struct members of gnutar header at once via strcpy
b5048e
b5048e
* Fri May 15 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-3
b5048e
- ignore errors from setting utime() for source file
b5048e
  on read-only filesystem (#500742)
b5048e
b5048e
* Fri Mar 06 2009 Kamil Dudka <kdudka@redhat.com> 2:1.22-2
b5048e
- improve tar-1.14-loneZeroWarning.patch (#487315)
b5048e
b5048e
* Mon Mar 02 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.22-1
b5048e
- New upstream release 1.22, removed applied patch
b5048e
b5048e
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.21-2
b5048e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b5048e
b5048e
* Mon Jan 05 2009 Ondrej Vasik <ovasik@redhat.com> 2:1.21-1
b5048e
- New upstream release 1.21, removed applied patches
b5048e
- add support for -I option, fix testsuite failure
b5048e
b5048e
* Thu Dec 11 2008 Ondrej Vasik <ovasik@redhat.com> 2:1.20-6
b5048e
- add BuildRequires for rsh (#475950)
b5048e
b5048e
* Fri Nov 21 2008 Ondrej Vasik <ovasik@redhat.com> 2:1.20-5
b5048e
- fix off-by-one errors in xattrs patch (#472355)
b5048e
b5048e
* Mon Nov 10 2008 Kamil Dudka <kdudka@redhat.com> 2:1.20-4
b5048e
- fixed bug #465803: labels with --multi-volume (upstream patch)
b5048e
b5048e
* Fri Oct 10 2008 Ondrej Vasik <ovasik@redhat.com> 2:1.20-3
b5048e
- Fixed wrong documentation for xattrs options (#466517)
b5048e
- fixed bug with null file terminator and change dirs
b5048e
  (upstream)
b5048e
b5048e
* Fri Aug 29 2008 Ondrej Vasik <ovasik@redhat.com> 2:1.20-2
b5048e
- patch fuzz clean up
b5048e
b5048e
* Mon May 26 2008 Ondrej Vasik <ovasik@redhat.com> 2:1.20-1
b5048e
- new upstream release 1.20 (lzma support, few new options
b5048e
  and bugfixes)
b5048e
- heavily modified xattrs patches(as tar-1.20 now uses automake
b5048e
  1.10.1)
b5048e
b5048e
* Tue Feb 12 2008 Radek Brich <rbrich@redhat.com> 2:1.19-3
b5048e
- do not print getfilecon/setfilecon warnings when SELinux is disabled
b5048e
  or SELinux data are not available (bz#431879)
b5048e
- fix for GCC 4.3
b5048e
b5048e
* Mon Jan 21 2008 Radek Brich <rbrich@redhat.com> 2:1.19-2
b5048e
- fix errors in man page
b5048e
  * fix definition of --occurrence (bz#416661, patch by Jonathan Wakely)
b5048e
  * update meaning of -l: it has changed from --one-filesystem
b5048e
    to --check-links (bz#426717)
b5048e
- update license tag, tar 1.19 is GPLv3+
b5048e
b5048e
* Mon Dec 17 2007 Radek Brich <rbrich@redhat.com> 2:1.19-1
b5048e
- upgrade to 1.19
b5048e
- updated xattrs patch, removed 3 upstream patches
b5048e
b5048e
* Wed Dec 12 2007 Radek Brich <rbrich@redhat.com> 2:1.17-5
b5048e
- fix (non)detection of xattrs
b5048e
- move configure stuff from -xattrs patch to -xattrs-conf,
b5048e
  so the original patch could be easily read
b5048e
- fix -xattrs patch to work with zero length files and show
b5048e
  warnings when xattrs not available (fixes by James Antill)
b5048e
- possible corruption (#408621) - add warning to man page
b5048e
  for now, may be actually fixed later, depending on upstream
b5048e
b5048e
* Tue Oct 23 2007 Radek Brich <rbrich@redhat.com> 2:1.17-4
b5048e
- upstream patch for CVE-2007-4476
b5048e
  (tar stack crashing in safer_name_suffix)
b5048e
b5048e
* Tue Aug 28 2007 Radek Brich <rbrich@redhat.com> 2:1.17-3
b5048e
- gawk build dependency
b5048e
b5048e
* Tue Aug 28 2007 Radek Brich <rbrich@redhat.com> 2:1.17-2
b5048e
- updated license tag
b5048e
- fixed CVE-2007-4131 tar directory traversal vulnerability (#251921)
b5048e
b5048e
* Thu Jun 28 2007 Radek Brich <rbrich@redhat.com> 2:1.17-1
b5048e
- new upstream version
b5048e
- patch for wildcards (#206841), restoring old behavior
b5048e
- patch for testsuite
b5048e
- update -xattrs patch
b5048e
- drop 13 obsolete patches
b5048e
b5048e
* Tue Feb 06 2007 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-26
b5048e
- fix spec file to meet Fedora standards (#226478)
b5048e
b5048e
* Mon Jan 22 2007 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-25
b5048e
- fix non-failsafe install-info use in scriptlets (#223718)
b5048e
b5048e
* Wed Jan 03 2007 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-24
b5048e
- supply tar man page (#219375)
b5048e
b5048e
* Tue Dec 12 2006 Florian La Roche <laroche@redhat.com> 2:1.15.1-23
b5048e
- fix CVE-2006-6097 GNU tar directory traversal (#216937)
b5048e
b5048e
* Sun Dec 10 2006 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-22
b5048e
- fix some rpmlint spec file issues
b5048e
b5048e
* Wed Oct 25 2006 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-21
b5048e
- build with dist-tag
b5048e
b5048e
* Mon Oct 09 2006 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-20
b5048e
- another fix of tar-1.15.1-xattrs.patch from James Antill
b5048e
b5048e
* Wed Oct 04 2006 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-19
b5048e
- another fix of tar-1.15.1-xattrs.patch from James Antill
b5048e
b5048e
* Sun Oct 01 2006 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-18
b5048e
- fix tar-1.15.1-xattrs.patch (#208701)
b5048e
b5048e
* Tue Sep 19 2006 Peter Vrabec <pvrabec@redhat.com> 2:1.15.1-17
b5048e
- start new epoch, downgrade to solid stable 1.15.1-16 (#206979),
b5048e
- all patches are backported
b5048e
b5048e
* Tue Sep 19 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.91-2
b5048e
- apply patches, which were forgotten during upgrade
b5048e
b5048e
* Wed Sep 13 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.91-1
b5048e
- upgrade, which also fix incremental backup (#206121)
b5048e
b5048e
* Fri Sep 08 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-7
b5048e
- fix tar-debuginfo package (#205615)
b5048e
b5048e
* Thu Aug 10 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-6
b5048e
- add xattr support (#200925), patch from james.antill@redhat.com
b5048e
b5048e
* Mon Jul 24 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-5
b5048e
- fix incompatibilities in appending files to the end
b5048e
  of an archive (#199515)
b5048e
b5048e
* Tue Jul 18 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-4
b5048e
- fix problem with unpacking archives in a directory for which
b5048e
  one has write permission but does not own (such as /tmp) (#149686)
b5048e
b5048e
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.15.90-3.1
b5048e
- rebuild
b5048e
b5048e
* Thu Jun 29 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-3
b5048e
- fix typo in tar.1 man page
b5048e
b5048e
* Tue Apr 25 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-2
b5048e
- exclude listed02.at from testsuite again, because it
b5048e
  still fails on s390
b5048e
b5048e
* Tue Apr 25 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.90-1
b5048e
- upgrade
b5048e
b5048e
* Mon Apr 24 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.1-16
b5048e
- fix problem when options at the end of command line were
b5048e
  not recognized (#188707)
b5048e
b5048e
* Thu Apr 13 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.1-15
b5048e
- fix segmentation faul introduced with hugeSparse.patch
b5048e
b5048e
* Wed Mar 22 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.1-14
b5048e
- fix problems with extracting large sparse archive members (#185460)
b5048e
b5048e
* Fri Feb 17 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.1-13
b5048e
- fix heap overlfow bug CVE-2006-0300 (#181773)
b5048e
b5048e
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.15.1-12.2
b5048e
- bump again for double-long bug on ppc(64)
b5048e
b5048e
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.15.1-12.1
b5048e
- rebuilt for new gcc4.1 snapshot and glibc changes
b5048e
b5048e
* Mon Feb 06 2006 Peter Vrabec <pvrabec@redhat.com> 1.15.1-12
b5048e
- fix extracting sparse files to a filesystem like vfat,
b5048e
  when ftruncate may fail to grow the size of a file.(#179507)
b5048e
b5048e
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
b5048e
- rebuilt
b5048e
b5048e
* Fri Nov 04 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-11
b5048e
- correctly pad archive members that shrunk during archiving (#172373)
b5048e
b5048e
* Tue Sep 06 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-10
b5048e
- provide man page (#163709, #54243, #56041)
b5048e
b5048e
* Mon Aug 15 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-9
b5048e
- silence newer option (#164902)
b5048e
b5048e
* Wed Jul 27 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-8
b5048e
- A file is dumpable if it is sparse and both --sparse
b5048e
  and --totals are specified (#154882)
b5048e
b5048e
* Tue Jul 26 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-7
b5048e
- exclude listed02.at from testsuite
b5048e
b5048e
* Fri Jul 22 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-6
b5048e
- remove tar-1.14-err.patch, not needed (158743)
b5048e
b5048e
* Fri Apr 15 2005 Peter Vrabec <pvrabec@redhat.com> 1.15.1-5
b5048e
- extract sparse files even if the output fd is not seekable.(#154882)
b5048e
- (sparse_scan_file): Bugfix. offset had incorrect type.
b5048e
b5048e
* Mon Mar 14 2005 Peter Vrabec <pvrabec@redhat.com>
b5048e
- gcc4 fix (#150993) 1.15.1-4
b5048e
b5048e
* Mon Jan 31 2005 Peter Vrabec <pvrabec@redhat.com>
b5048e
- rebuild 1.15.1-3
b5048e
b5048e
* Mon Jan 17 2005 Peter Vrabec <pvrabec@redhat.com>
b5048e
- fix tests/testsuite
b5048e
b5048e
* Fri Jan 07 2005 Peter Vrabec <pvrabec@redhat.com>
b5048e
- upgrade to 1.15.1
b5048e
b5048e
* Mon Oct 11 2004 Peter Vrabec <pvrabec@redhat.com>
b5048e
- patch to stop issuing lone zero block warnings
b5048e
- rebuilt
b5048e
b5048e
* Mon Oct 11 2004 Peter Vrabec <pvrabec@redhat.com>
b5048e
- URL added to spec file
b5048e
- spec file clean up
b5048e
b5048e
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
b5048e
- rebuilt
b5048e
b5048e
* Mon Jun  7 2004 Jeff Johnson <jbj@jbj.org> 1.14-1
b5048e
- upgrade to 1.14.
b5048e
b5048e
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
b5048e
- rebuilt
b5048e
b5048e
* Tue Jun 17 2003 Jeff Johnson <jbj@redhat.com> 1.13.25-13
b5048e
- rebuilt because of crt breakage on ppc64.
b5048e
- dump automake15 requirement.
b5048e
b5048e
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
b5048e
- rebuilt
b5048e
b5048e
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
b5048e
- rebuilt
b5048e
b5048e
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 1.13.25-10
b5048e
- fix broken buildrquires on autoconf253
b5048e
b5048e
* Thu Nov  7 2002 Jeff Johnson <jbj@redhat.com> 1.13.25-9
b5048e
- rebuild from CVS.
b5048e
b5048e
* Fri Aug 23 2002 Phil Knirsch <pknirsch@redhat.com> 1.13.25-8
b5048e
- Included security patch from errata release.
b5048e
b5048e
* Mon Jul  1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-7
b5048e
- Fix argv NULL termination (#64869)
b5048e
b5048e
* Thu May 23 2002 Tim Powers <timp@redhat.com>
b5048e
- automated rebuild
b5048e
b5048e
* Tue Apr  9 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-4
b5048e
- Fix build with autoconf253 (LIBOBJ change; autoconf252 worked)
b5048e
b5048e
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
b5048e
- automated rebuild
b5048e
b5048e
* Tue Oct 23 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-2
b5048e
- Don't include hardlinks to sockets in a tar file (#54827)
b5048e
b5048e
* Thu Sep 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.25-1
b5048e
- 1.13.25
b5048e
b5048e
* Tue Sep 18 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.22-1
b5048e
- Update to 1.13.22, adapt patches
b5048e
b5048e
* Mon Aug 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.19-6
b5048e
- Fix #52084
b5048e
b5048e
* Thu May 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.13.19-5
b5048e
- Fix build with current autoconf (stricter checking on AC_DEFINE)
b5048e
- Fix segfault when tarring directories without having read permissions
b5048e
  (#40802)
b5048e
b5048e
* Tue Mar  6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- Don't depend on librt.
b5048e
b5048e
* Fri Feb 23 2001 Trond Eivind Glomsröd <teg@redhat.com>
b5048e
- langify
b5048e
b5048e
* Thu Feb 22 2001 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- Fix up the man page (#28915)
b5048e
b5048e
* Wed Feb 21 2001 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- 1.3.19, nukes -I and fixes up -N
b5048e
- Add -I back in as an alias to -j with a nice loud warning
b5048e
b5048e
* Mon Oct 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- 1.3.18
b5048e
- Update man page to reflect changes
b5048e
b5048e
* Thu Oct  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- Fix the "ignore failed read" option (Bug #8330)
b5048e
b5048e
* Mon Sep 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- fix hang on tar tvzf - 
b5048e
  exit code fix (Bug #15448), Patch from Tim Waugh <twaugh@redhat.com>
b5048e
b5048e
* Fri Aug 18 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- really fix exit code (Bug #15448)
b5048e
b5048e
* Mon Aug  7 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- fix exit code (Bug #15448), patch from Tim Waugh <twaugh@redhat.com>
b5048e
b5048e
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
b5048e
- automatic rebuild
b5048e
b5048e
* Mon Jun 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b5048e
- FHSify
b5048e
b5048e
* Fri Apr 28 2000 Bill Nottingham <notting@redhat.com>
b5048e
- fix for ia64
b5048e
b5048e
* Wed Feb  9 2000 Bernhard Rosenkränzer <bero@redhat.com>
b5048e
- Fix the exclude bug (#9201)
b5048e
b5048e
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
b5048e
- man pages are compressed
b5048e
- fix description
b5048e
- fix fnmatch build problems
b5048e
b5048e
* Sun Jan  9 2000 Bernhard Rosenkränzer <bero@redhat.com>
b5048e
- 1.13.17
b5048e
- remove dotbug patch (fixed in base)
b5048e
- update download URL
b5048e
b5048e
* Fri Jan  7 2000 Bernhard Rosenkränzer <bero@redhat.com>
b5048e
- Fix a severe bug (tar xf any_package_containing_. would delete the
b5048e
  current directory)
b5048e
b5048e
* Wed Jan  5 2000 Bernhard Rosenkränzer <bero@redhat.com>
b5048e
- 1.3.16
b5048e
- unset LINGUAS before running configure
b5048e
b5048e
* Tue Nov  9 1999 Bernhard Rosenkränzer <bero@redhat.com>
b5048e
- 1.13.14
b5048e
- Update man page to know about -I / --bzip
b5048e
- Remove dependancy on rmt - tar can be used for anything local
b5048e
  without it.
b5048e
b5048e
* Fri Aug 27 1999 Preston Brown <pbrown@redhat.com>
b5048e
- upgrade to 1.13.11.
b5048e
b5048e
* Wed Aug 18 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- update to 1.13.9.
b5048e
b5048e
* Thu Aug 12 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- update to 1.13.6.
b5048e
- support -y --bzip2 options for bzip2 compression (#2415).
b5048e
b5048e
* Fri Jul 23 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- update to 1.13.5.
b5048e
b5048e
* Tue Jul 13 1999 Bill Nottingham <notting@redhat.com>
b5048e
- update to 1.13
b5048e
b5048e
* Sat Jun 26 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- update to 1.12.64014.
b5048e
- pipe patch corrected for remote tars now merged in.
b5048e
b5048e
* Sun Jun 20 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- update to tar-1.12.64013.
b5048e
- subtract (and reopen #2415) bzip2 support using -y.
b5048e
- move gtar to /bin.
b5048e
b5048e
* Tue Jun 15 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- upgrade to tar-1.12.64011 to
b5048e
-   add bzip2 support (#2415)
b5048e
-   fix filename bug (#3479)
b5048e
b5048e
* Mon Mar 29 1999 Jeff Johnson <jbj@redhat.com>
b5048e
- fix suspended tar with compression over pipe produces error (#390).
b5048e
b5048e
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
b5048e
- auto rebuild in the new build environment (release 8)
b5048e
b5048e
* Mon Mar 08 1999 Michael Maher <mike@redhat.com>
b5048e
- added patch for bad name cache.
b5048e
- FIXES BUG 320
b5048e
b5048e
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
b5048e
- Injected new description and group.
b5048e
b5048e
* Fri Dec 18 1998 Preston Brown <pbrown@redhat.com>
b5048e
- bumped spec number for initial rh 6.0 build
b5048e
b5048e
* Tue Aug  4 1998 Jeff Johnson <jbj@redhat.com>
b5048e
- add /usr/bin/gtar symlink (change #421)
b5048e
b5048e
* Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
b5048e
- Fiddle bindir/libexecdir to get RH install correct.
b5048e
- Don't include /sbin/rmt -- use the rmt from dump.
b5048e
- Turn on nls.
b5048e
b5048e
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
b5048e
- translations modified for de, fr, tr
b5048e
b5048e
* Thu Oct 16 1997 Donnie Barnes <djb@redhat.com>
b5048e
- updated from 1.11.8 to 1.12
b5048e
- various spec file cleanups
b5048e
- /sbin/install-info support
b5048e
b5048e
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
b5048e
- built against glibc
b5048e
b5048e
* Thu May 29 1997 Michael Fulbright <msf@redhat.com>
b5048e
- Fixed to include rmt