In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/5ac8c25201a5614920ddf169532fbc1d0fefd565?hp=2c247e84d4c0ff4b5c5fe6c10b3257c55520332a>
- Log ----------------------------------------------------------------- commit 5ac8c25201a5614920ddf169532fbc1d0fefd565 Author: Chris 'BinGOs' Williams <[email protected]> Date: Wed Sep 5 19:22:27 2012 +0100 Update Archive-Tar to CPAN version 1.90 [DELTA] * important changes in version 1.90 05/09/2012 (Tom Jones) - documentation fixes ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Archive-Tar/lib/Archive/Tar.pm | 8 ++++---- cpan/Archive-Tar/lib/Archive/Tar/Constant.pm | 2 +- cpan/Archive-Tar/lib/Archive/Tar/File.pm | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index a228103..a1a5d71 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -207,7 +207,7 @@ use File::Glob qw(:case); 'Archive::Tar' => { 'MAINTAINER' => 'kane', - 'DISTRIBUTION' => 'BINGOS/Archive-Tar-1.88.tar.gz', + 'DISTRIBUTION' => 'BINGOS/Archive-Tar-1.90.tar.gz', 'FILES' => q[cpan/Archive-Tar], 'EXCLUDED' => ['Makefile.PL'], 'UPSTREAM' => 'cpan', diff --git a/cpan/Archive-Tar/lib/Archive/Tar.pm b/cpan/Archive-Tar/lib/Archive/Tar.pm index 8c2c2e6..dd4b968 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 = "1.88"; +$VERSION = "1.90"; $CHOWN = 1; $CHMOD = 1; $SAME_PERMISSIONS = $> == 0 ? 1 : 0; @@ -1495,8 +1495,8 @@ The following list of properties is supported: name, size, mtime devmajor, devminor, prefix, type. (On MacOS, the file's path and modification times are converted to Unix equivalents.) -Valid values for the file type are the following constants defined in -Archive::Tar::Constants: +Valid values for the file type are the following constants defined by +Archive::Tar::Constant: =over 4 @@ -1756,7 +1756,7 @@ If C<list_archive()> is passed an array reference as its third argument it returns a list of hash references containing the requested properties of each file. The following list of properties is supported: full_path, name, size, mtime (last modified date), mode, -uid, gid, linkname, uname, gname, devmajor, devminor, prefix. +uid, gid, linkname, uname, gname, devmajor, devminor, prefix, type. See C<Archive::Tar::File> for details about supported properties. diff --git a/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm b/cpan/Archive-Tar/lib/Archive/Tar/Constant.pm index 86f1324..7839c6d 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 = '1.88'; + $VERSION = '1.90'; @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 c7690c1..de01e05 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 = '1.88'; +$VERSION = '1.90'; ### set value to 1 to oct() it during the unpack ### -- Perl5 Master Repository
