diff options
author | wiz <wiz@pkgsrc.org> | 2018-03-11 17:28:08 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2018-03-11 17:28:08 +0000 |
commit | 98dedf8ef26e84f3012295a725831eced71f74bc (patch) | |
tree | beb68dec9beba7541ae51b5a7fd1584fece22dfa /archivers/gtar | |
parent | e59383d90b665b6d1290a9bacd92097114600485 (diff) | |
download | pkgsrc-98dedf8ef26e84f3012295a725831eced71f74bc.tar.gz |
gtar: update to 1.30
version 1.30 - Sergey Poznyakoff, 2017-12-17
* Member names containing '..' components are now skipped when extracting.
This fixes tar's behavior to match its documentation, and is a bit
safer when extracting untrusted archives over old files (an unsafe
practice that the tar manual has long recommended against).
* Report erroneous use of position-sensitive options.
During archive creation or update, tar keeps track of positional
options (see the manual, subsection 3.4.4 "Position-Sensitive
Options"), and reports those that had no effect. For example, when
invoked as
tar -cf a.tar . --exclude '*.o'
tar will create the archive, but will exit with status 2, having
issued the following error message
tar: The following options were used after non-optional
arguments in archive create or update mode. These options are
positional and affect only arguments that follow them. Please,
rearrange them properly.
tar: --exclude '*.o' has no effect
tar: Exiting with failure status due to previous errors
* --numeric-owner now affects private headers too.
This helps the output of 'tar' to be more deterministic.
* Fixed the --delay-directory-restore option
In some cases tar would restore the directory permissions too early,
causing subsequent link extractions in that directory to fail.
* The --warnings=failed-read option
This new warning control option suppresses warning messages about
unreadable files and directories. It has effect only if used together
with the --ignore-failed-read option.
* The --warnings=none option now suppresses all warnings
This includes warnings about unreadable files produced when
--ignore-failed-read is in effect. To output these, use
--warnings=none --warnings=no-failed-read.
* Fix reporting of hardlink mismatches during compare
Tar reported incorrect target file name in the 'Not linked to'
diagnostic message.
Diffstat (limited to 'archivers/gtar')
-rw-r--r-- | archivers/gtar/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/gtar/Makefile.common b/archivers/gtar/Makefile.common index c493dd412c1..06f0f34d71d 100644 --- a/archivers/gtar/Makefile.common +++ b/archivers/gtar/Makefile.common @@ -1,10 +1,10 @@ -# $NetBSD: Makefile.common,v 1.2 2016/05/31 15:04:51 mef Exp $ +# $NetBSD: Makefile.common,v 1.3 2018/03/11 17:28:08 wiz Exp $ # # used by archivers/gtar-base/Makefile # used by archivers/gtar-info/Makefile # used by archivers/gtar/Makefile -DISTNAME= tar-1.29 +DISTNAME= tar-1.30 CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_GNU:=tar/} EXTRACT_SUFX= .tar.bz2 |