Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 0e3bb91

Browse files
committed
Archive-Tar: Update to 0.26
0 is a valid name for an archive, change iter to check definedness.
1 parent 4f90a4f commit 0e3bb91

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ package Maintainers;
121121
%Modules = (
122122

123123
'Archive::Tar' => {
124-
'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.24.tar.gz',
124+
'DISTRIBUTION' => 'BINGOS/Archive-Tar-2.26.tar.gz',
125125
'FILES' => q[cpan/Archive-Tar],
126126
'BUGS' => 'bug-archive-tar@rt.cpan.org',
127127
'EXCLUDED' => [

cpan/Archive-Tar/lib/Archive/Tar.pm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use vars qw[$DEBUG $error $VERSION $WARN $FOLLOW_SYMLINK $CHOWN $CHMOD
3131
$DEBUG = 0;
3232
$WARN = 1;
3333
$FOLLOW_SYMLINK = 0;
34-
$VERSION = "2.24";
34+
$VERSION = "2.26";
3535
$CHOWN = 1;
3636
$CHMOD = 1;
3737
$SAME_PERMISSIONS = $> == 0 ? 1 : 0;
@@ -1756,7 +1756,8 @@ Example usage:
17561756

17571757
sub iter {
17581758
my $class = shift;
1759-
my $filename = shift or return;
1759+
my $filename = shift;
1760+
return unless defined $filename;
17601761
my $compressed = shift || 0;
17611762
my $opts = shift || {};
17621763

cpan/Archive-Tar/lib/Archive/Tar/Constant.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Archive::Tar::Constant;
33
BEGIN {
44
require Exporter;
55

6-
$VERSION = '2.24';
6+
$VERSION = '2.26';
77
@ISA = qw[Exporter];
88

99
require Time::Local if $^O eq "MacOS";

cpan/Archive-Tar/lib/Archive/Tar/File.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use Archive::Tar::Constant;
1313

1414
use vars qw[@ISA $VERSION];
1515
#@ISA = qw[Archive::Tar];
16-
$VERSION = '2.24';
16+
$VERSION = '2.26';
1717

1818
### set value to 1 to oct() it during the unpack ###
1919

dist/Module-CoreList/lib/Module/CoreList.pm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14900,6 +14900,9 @@ our %delta = (
1490014900
'Config' => '5.027',
1490114901
'Module::CoreList' => '5.20170514c',
1490214902
'Module::CoreList::Utils'=> '5.20170428c',
14903+
'Archive::Tar' => '0.26',
14904+
'Archive::Tar::File' => '0.26',
14905+
'Archive::Tar::Constant'=> '0.26',
1490314906
'B::Concise' => '0.9991c',
1490414907
'Cpanel::JSON::XS' => '3.0233',
1490514908
'Cwd' => '4.68c',

pod/perlcdelta.pod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ Russ Cox L<https://research.swtch.com/glob>.
8686

8787
=over 4
8888

89+
=item L<Archive::Tar> 0.26
90+
91+
'0' is a valid name for an archive, change 'iter' to check definedness.
92+
See L<https://metacpan.org/changes/distribution/Archive-Tar>
93+
8994
=item L<B::C>
9095

9196
Support pgcc, seperate it from gcc

t/porting/customized.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Math::BigInt cpan/Math-BigInt/t/sub_mif.t e87738bd15116665c38d9f41b310cfe7fbf6da
8989
Math::BigInt cpan/Math-BigInt/t/upgrade.t 7c15cac7f321ca396648ec45da6389a1283e1546
9090
Math::BigInt cpan/Math-BigInt/t/upgradef.t 06610e9883ce805bcd6543ab959a9826f598eb40
9191
Math::BigInt cpan/Math-BigInt/t/with_sub.t c040328e223df6f56250f5d67dcb2c9a2f23c110
92-
Module::CoreList dist/Module-CoreList/lib/Module/CoreList.pm 1b17e0ff5a04ac2cc54866d0220fbed123308222
92+
Module::CoreList dist/Module-CoreList/lib/Module/CoreList.pm 74258fdeb5a1775085c10fb8262c39122f9db795
9393
Module::CoreList dist/Module-CoreList/lib/Module/CoreList/Utils.pm 988e528336a48333ff9a28fe1197a56a640e3792
9494
Module::Metadata cpan/Module-Metadata/t/lib/GeneratePackage.pm 502ffbe2609947430e6aa1a3df8064b3fef3e086
9595
Net::Domain cpan/libnet/lib/Net/Cmd.pm 70a007c38833667ad47ea8059c37c1b7d1c77b6c

0 commit comments

Comments
 (0)