In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/fb910f2b12bd712c5e59f73232256f47c5e3ea2c?hp=d96523cf661a4bd422eeb7ca06028da583f7cc02>

- Log -----------------------------------------------------------------
commit fb910f2b12bd712c5e59f73232256f47c5e3ea2c
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Fri Dec 16 10:50:53 2016 +0000

    Update Archive-Tar to CPAN version 2.22
    
      [DELTA]
    
    2.22  16/12/2016 (MANWAR)
    - Add missing strict/warnings pragma to Constants.pm
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl                       | 2 +-
 cpan/Archive-Tar/lib/Archive/Tar.pm          | 2 +-
 cpan/Archive-Tar/lib/Archive/Tar/Constant.pm | 5 ++++-
 cpan/Archive-Tar/lib/Archive/Tar/File.pm     | 2 +-
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index f9b20e810a..423e7a6878 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.20.tar.gz',
+        'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.22.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 349dcf1659..b536c327f2 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.20";
+$VERSION                = "2.22";
 $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 c1356ade16..9496e5805f 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.20';
+    $VERSION    = '2.22';
     @ISA        = qw[Exporter];
 
     require Time::Local if $^O eq "MacOS";
@@ -11,6 +11,9 @@ BEGIN {
 
 @EXPORT = Archive::Tar::Constant->_list_consts( __PACKAGE__ );
 
+use strict;
+use warnings;
+
 use constant FILE           => 0;
 use constant HARDLINK       => 1;
 use constant SYMLINK        => 2;
diff --git a/cpan/Archive-Tar/lib/Archive/Tar/File.pm 
b/cpan/Archive-Tar/lib/Archive/Tar/File.pm
index 3e4cdbc2ec..e453a7915a 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.20';
+$VERSION    = '2.22';
 
 ### set value to 1 to oct() it during the unpack ###
 

--
Perl5 Master Repository

Reply via email to