Skip to content

Commit

Permalink
Patching Archive-Tar 3.02
Browse files Browse the repository at this point in the history
To indicate that we are including a patched version of Archive-Tar-3.02
in core, we increment $VERSION in its *.pm files and in %Modules within
Porting/Maintainers.pl.

We're excluding t/90_symlink.t from shipping with core until such time
as (a) we know whether its unit tests are for "developers" only or for
general automated testing; and (b) we get a better 'skip_all' condition.

Fixes GH #21402
  • Loading branch information
jkeenan committed Dec 12, 2023
1 parent 589af9a commit 54f925e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,14 @@ package Maintainers;
our %Modules = (

'Archive::Tar' => {
'DISTRIBUTION' => 'BINGOS/Archive-Tar-3.02.tar.gz',
'DISTRIBUTION' => 'BINGOS/Archive-Tar-3.02_001.tar.gz',
'SYNCINFO' => 'jkeenan on Tue Dec 5 07:32:24 2023',
'FILES' => q[cpan/Archive-Tar],
'BUGS' => '[email protected]',
'EXCLUDED' => [
qw(t/07_ptardiff.t),
qr{t/src/(long|short)/foo.txz},
qw(t/90_symlink.t),
],
},

Expand Down
2 changes: 1 addition & 1 deletion cpan/Archive-Tar/lib/Archive/Tar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use vars qw[$DEBUG $error $VERSION $WARN $FOLLOW_SYMLINK $CHOWN $CHMOD
$DEBUG = 0;
$WARN = 1;
$FOLLOW_SYMLINK = 0;
$VERSION = "3.02";
$VERSION = "3.02_001";
$CHOWN = 1;
$CHMOD = 1;
$SAME_PERMISSIONS = $> == 0 ? 1 : 0;
Expand Down
2 changes: 1 addition & 1 deletion cpan/Archive-Tar/lib/Archive/Tar/Constant.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use vars qw[$VERSION @ISA @EXPORT];
BEGIN {
require Exporter;

$VERSION = '3.02';
$VERSION = '3.02_001';
@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
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Archive::Tar::Constant;

use vars qw[@ISA $VERSION];
#@ISA = qw[Archive::Tar];
$VERSION = '3.02';
$VERSION = '3.02_001';

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

Expand Down

0 comments on commit 54f925e

Please sign in to comment.