From: Jesse Vincent Date: Wed, 30 Sep 2009 19:32:56 +0000 (+0900) Subject: Time::Local in blead has diverged from CPAN. Update the version number to a dev release X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5110ab9d3c66413e1406d9e2767d9768eeda165a;p=p5sagit%2Fp5-mst-13.2.git Time::Local in blead has diverged from CPAN. Update the version number to a dev release An IRC conversation with DROLSKY confirms that we'll need to re-port Time::Local to non-y2038-safe perl before it becomes dual-life again. --- diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 70d6484..f7dfafa 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1597,7 +1597,10 @@ use File::Glob qw(:case); 'FILES' => q[ext/Time-Local], 'EXCLUDED' => [ qw(t/pod-coverage.t t/pod.t) ], 'CPAN' => 1, - 'UPSTREAM' => undef, + 'UPSTREAM' => 'blead', + # Currently Time::Local is no longer backwards compatible with Pre-5.11 perls + # the version in core has now deviated from the CPAN version. To re-dual-life + # this module, we'll need to rewrite a hybrid version }, 'Time::Piece' => diff --git a/ext/Time-Local/lib/Time/Local.pm b/ext/Time-Local/lib/Time/Local.pm index fe698d4..96a688d 100644 --- a/ext/Time-Local/lib/Time/Local.pm +++ b/ext/Time-Local/lib/Time/Local.pm @@ -6,7 +6,7 @@ use Config; use strict; use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK ); -$VERSION = '1.1901'; +$VERSION = '1.1901_01'; @ISA = qw( Exporter ); @EXPORT = qw( timegm timelocal );