Skip to content

Commit

Permalink
Update Archive-Tar to CPAN version 1.90
Browse files Browse the repository at this point in the history
  [DELTA]

  * important changes in version 1.90 05/09/2012 (Tom Jones)
  - documentation fixes
  • Loading branch information
bingos committed Sep 5, 2012
1 parent 2c247e8 commit 5ac8c25
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Porting/Maintainers.pl
Expand Up @@ -207,7 +207,7 @@ package Maintainers;

'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',
Expand Down
8 changes: 4 additions & 4 deletions cpan/Archive-Tar/lib/Archive/Tar.pm
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion cpan/Archive-Tar/lib/Archive/Tar/Constant.pm
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion cpan/Archive-Tar/lib/Archive/Tar/File.pm
Expand Up @@ -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 ###

Expand Down

0 comments on commit 5ac8c25

Please sign in to comment.