Time::Local in blead has diverged from CPAN. Update the version number to a dev release
Jesse Vincent [Wed, 30 Sep 2009 19:32:56 +0000 (04:32 +0900)]
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.

Porting/Maintainers.pl
ext/Time-Local/lib/Time/Local.pm

index 70d6484..f7dfafa 100755 (executable)
@@ -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' =>
index fe698d4..96a688d 100644 (file)
@@ -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 );