From: Steve Hay Date: Thu, 18 Feb 2010 00:17:57 +0000 (+0000) Subject: Upgrade CPAN from 1.94_55 to 1.94_56 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=99ad6f11b89e2dccd38899cf1e0dc73badd05a94;p=p5sagit%2Fp5-mst-13.2.git Upgrade CPAN from 1.94_55 to 1.94_56 Ensures that all $VERSIONs are bumped in files that have changed since Perl 5.11.4. --- diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index cea79cf..ddd96ae 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -379,7 +379,7 @@ use File::Glob qw(:case); 'CPAN' => { 'MAINTAINER' => 'andk', - 'DISTRIBUTION' => 'ANDK/CPAN-1.94_55.tar.gz', + 'DISTRIBUTION' => 'ANDK/CPAN-1.94_56.tar.gz', 'FILES' => q[cpan/CPAN], 'EXCLUDED' => [ qr{^distroprefs/}, qr{^inc/Test/}, diff --git a/cpan/CPAN/Changes b/cpan/CPAN/Changes index 2fee983..1b5300c 100644 --- a/cpan/CPAN/Changes +++ b/cpan/CPAN/Changes @@ -1,3 +1,11 @@ +2010-02-17 Andreas J. Koenig + + * release 1.94_56 + + * No code change, only version bumps on files that had changed but did + not get a version bump. Requested by Steve Hay in his role as perl + pumpkin. + 2010-02-03 Andreas J. Koenig * release 1.94_55 diff --git a/cpan/CPAN/lib/CPAN.pm b/cpan/CPAN/lib/CPAN.pm index 245022d..9d09708 100644 --- a/cpan/CPAN/lib/CPAN.pm +++ b/cpan/CPAN/lib/CPAN.pm @@ -2,7 +2,7 @@ # vim: ts=4 sts=4 sw=4: use strict; package CPAN; -$CPAN::VERSION = '1.94_55'; +$CPAN::VERSION = '1.94_56'; $CPAN::VERSION =~ s/_//; # we need to run chdir all over and we would get at wrong libraries diff --git a/cpan/CPAN/lib/CPAN/Debug.pm b/cpan/CPAN/lib/CPAN/Debug.pm index dc44a1e..23c4a36 100644 --- a/cpan/CPAN/lib/CPAN/Debug.pm +++ b/cpan/CPAN/lib/CPAN/Debug.pm @@ -3,7 +3,7 @@ package CPAN::Debug; use strict; use vars qw($VERSION); -$VERSION = "5.5"; +$VERSION = "5.5001"; # module is internal to CPAN.pm %CPAN::DEBUG = qw[ diff --git a/cpan/CPAN/lib/CPAN/Distribution.pm b/cpan/CPAN/lib/CPAN/Distribution.pm index 82dde03..a664320 100644 --- a/cpan/CPAN/lib/CPAN/Distribution.pm +++ b/cpan/CPAN/lib/CPAN/Distribution.pm @@ -5,7 +5,7 @@ use CPAN::Distroprefs; use CPAN::InfoObj; @CPAN::Distribution::ISA = qw(CPAN::InfoObj); use vars qw($VERSION); -$VERSION = "1.94"; +$VERSION = "1.9456"; # Accessors sub cpan_comment { diff --git a/cpan/CPAN/lib/CPAN/FirstTime.pm b/cpan/CPAN/lib/CPAN/FirstTime.pm index fadcb8b..53ffbf1 100644 --- a/cpan/CPAN/lib/CPAN/FirstTime.pm +++ b/cpan/CPAN/lib/CPAN/FirstTime.pm @@ -9,7 +9,7 @@ use File::Path (); use File::Spec (); use CPAN::Mirrors (); use vars qw($VERSION $silent); -$VERSION = "5.53"; +$VERSION = "5.5301"; =head1 NAME diff --git a/cpan/CPAN/lib/CPAN/HandleConfig.pm b/cpan/CPAN/lib/CPAN/HandleConfig.pm index e3d7164..76cd81e 100644 --- a/cpan/CPAN/lib/CPAN/HandleConfig.pm +++ b/cpan/CPAN/lib/CPAN/HandleConfig.pm @@ -2,7 +2,7 @@ package CPAN::HandleConfig; use strict; use vars qw(%can %keys $loading $VERSION); -$VERSION = "5.5"; +$VERSION = "5.5001"; # see also CPAN::Config::VERSION at end of file %can = ( commit => "Commit changes to disk", @@ -712,7 +712,7 @@ sub prefs_lookup { use strict; use vars qw($AUTOLOAD $VERSION); - $VERSION = "5.5"; + $VERSION = "5.5001"; # formerly CPAN::HandleConfig was known as CPAN::Config sub AUTOLOAD { ## no critic diff --git a/cpan/CPAN/lib/CPAN/Shell.pm b/cpan/CPAN/lib/CPAN/Shell.pm index 290c121..91cbdd2 100644 --- a/cpan/CPAN/lib/CPAN/Shell.pm +++ b/cpan/CPAN/lib/CPAN/Shell.pm @@ -47,7 +47,7 @@ use vars qw( "CPAN/Tarzip.pm", "CPAN/Version.pm", ); -$VERSION = "5.5"; +$VERSION = "5.5001"; # record the initial timestamp for reload. $reload = { map {$INC{$_} ? ($_,(stat $INC{$_})[9]) : ()} @relo }; @CPAN::Shell::ISA = qw(CPAN::Debug); diff --git a/cpan/CPAN/lib/CPAN/Tarzip.pm b/cpan/CPAN/lib/CPAN/Tarzip.pm index 24a1adc..63451e7 100644 --- a/cpan/CPAN/lib/CPAN/Tarzip.pm +++ b/cpan/CPAN/lib/CPAN/Tarzip.pm @@ -4,7 +4,7 @@ use strict; use vars qw($VERSION @ISA $BUGHUNTING); use CPAN::Debug; use File::Basename qw(basename); -$VERSION = "5.501"; +$VERSION = "5.5011"; # module is internal to CPAN.pm @ISA = qw(CPAN::Debug); ## no critic