In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/9b9676b6e52540a3affb558625dfe59e151769b9?hp=3e7b45e4a2b8308f16a5ca9443c3f6b8caafe0a6>
- Log ----------------------------------------------------------------- commit 9b9676b6e52540a3affb558625dfe59e151769b9 Author: Chris 'BinGOs' Williams <[email protected]> Date: Sun Dec 18 11:50:16 2016 +0000 Update Archive-Tar to CPAN version 2.24 [DELTA] 2.24 16/12/2016 (SREZIC) - Handle tarballs compressed with pbzip2 (RT #119262) ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Archive-Tar/lib/Archive/Tar.pm | 4 ++-- cpan/Archive-Tar/lib/Archive/Tar/Constant.pm | 2 +- cpan/Archive-Tar/lib/Archive/Tar/File.pm | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 002adda7f8..a6f671ff5b 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -120,7 +120,7 @@ use File::Glob qw(:case); %Modules = ( 'Archive::Tar' => { - 'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.22.tar.gz', + 'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.24.tar.gz', 'FILES' => q[cpan/Archive-Tar], 'BUGS' => '[email protected]', 'EXCLUDED' => [ diff --git a/cpan/Archive-Tar/lib/Archive/Tar.pm b/cpan/Archive-Tar/lib/Archive/Tar.pm index b536c327f2..d63e586317 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.22"; +$VERSION = "2.24"; $CHOWN = 1; $CHMOD = 1; $SAME_PERMISSIONS = $> == 0 ? 1 : 0; @@ -263,7 +263,7 @@ sub _get_handle { ### different reader/writer modules, different error vars... sigh if( MODE_READ->($mode) ) { - $fh = IO::Uncompress::Bunzip2->new( $file ) or do { + $fh = IO::Uncompress::Bunzip2->new( $file, MultiStream => 1 ) or do { $self->_error( qq[Could not read '$file': ] . $IO::Uncompress::Bunzip2::Bunzip2Error ); diff --git a/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm b/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm index 9496e5805f..6488d653f9 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.22'; + $VERSION = '2.24'; @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 e453a7915a..dc4c4c77a0 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.22'; +$VERSION = '2.24'; ### set value to 1 to oct() it during the unpack ### -- Perl5 Master Repository
