diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2016-11-07 13:29:13 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2016-11-07 13:46:56 +0000 |
commit | 83abb366082c0c09544178aa03e4ae14f4a1fed5 (patch) | |
tree | 0a3ed9337d5c89b878d0483d38f5a146a1acd381 /cpan | |
parent | 5312fe6cfc33d76b6f506e1dd9bffcdfe953f1e6 (diff) | |
download | perl-83abb366082c0c09544178aa03e4ae14f4a1fed5.tar.gz |
Update Archive-Tar to CPAN version 2.18
[DELTA]
2.18 07/11/2016 (JHI)
- Capture also the STDERR when checking tar exe
2.16 01/11/2016 (JHI && CBERRY)
- Make roundtrip tar exe finding robust for crappy tars
Diffstat (limited to 'cpan')
-rw-r--r-- | cpan/Archive-Tar/lib/Archive/Tar.pm | 2 | ||||
-rw-r--r-- | cpan/Archive-Tar/lib/Archive/Tar/Constant.pm | 2 | ||||
-rw-r--r-- | cpan/Archive-Tar/lib/Archive/Tar/File.pm | 2 | ||||
-rw-r--r-- | cpan/Archive-Tar/t/09_roundtrip.t | 2 |
4 files changed, 3 insertions, 5 deletions
diff --git a/cpan/Archive-Tar/lib/Archive/Tar.pm b/cpan/Archive-Tar/lib/Archive/Tar.pm index 55ec3723ed..cb7c351118 100644 --- a/cpan/Archive-Tar/lib/Archive/Tar.pm +++ b/cpan/Archive-Tar/lib/Archive/Tar.pm @@ -31,7 +31,7 @@ use vars qw[$DEBUG $error $VERSION $WARN $FOLLOW_SYMLINK $CHOWN $CHMOD $DEBUG = 0; $WARN = 1; $FOLLOW_SYMLINK = 0; -$VERSION = "2.14_02"; +$VERSION = "2.18"; $CHOWN = 1; $CHMOD = 1; $SAME_PERMISSIONS = $> == 0 ? 1 : 0; diff --git a/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm b/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm index b7d19d97ef..07eb33d44a 100644 --- a/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm +++ b/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm @@ -3,7 +3,7 @@ package Archive::Tar::Constant; BEGIN { require Exporter; - $VERSION = '2.14'; + $VERSION = '2.18'; @ISA = qw[Exporter]; require Time::Local if $^O eq "MacOS"; diff --git a/cpan/Archive-Tar/lib/Archive/Tar/File.pm b/cpan/Archive-Tar/lib/Archive/Tar/File.pm index 22aadc155a..3cd5a5226b 100644 --- a/cpan/Archive-Tar/lib/Archive/Tar/File.pm +++ b/cpan/Archive-Tar/lib/Archive/Tar/File.pm @@ -13,7 +13,7 @@ use Archive::Tar::Constant; use vars qw[@ISA $VERSION]; #@ISA = qw[Archive::Tar]; -$VERSION = '2.14'; +$VERSION = '2.18'; ### set value to 1 to oct() it during the unpack ### diff --git a/cpan/Archive-Tar/t/09_roundtrip.t b/cpan/Archive-Tar/t/09_roundtrip.t index eb13d455f6..586344814b 100644 --- a/cpan/Archive-Tar/t/09_roundtrip.t +++ b/cpan/Archive-Tar/t/09_roundtrip.t @@ -12,11 +12,9 @@ use Archive::Tar; BEGIN { eval { require IPC::Cmd; }; unless ( $@ ) { - diag('Using IPC::Cmd'); *can_run = \&IPC::Cmd::can_run; } else { - diag('Using fallback'); *can_run = sub { require ExtUtils::MakeMaker; my $cmd = shift; |