Blame SPECS/tar.spec

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