This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Time-Piece to CPAN version 1.3202
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Fri, 22 Sep 2017 10:13:52 +0000 (11:13 +0100)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Fri, 22 Sep 2017 10:45:41 +0000 (11:45 +0100)
  [DELTA]

1.3202  2017-09-13
        - Fix AIX compile

Porting/Maintainers.pl
cpan/Time-Piece/Piece.pm
cpan/Time-Piece/Piece.xs
cpan/Time-Piece/Seconds.pm

index 8f186ce..da80a05 100755 (executable)
@@ -1195,8 +1195,9 @@ use File::Glob qw(:case);
     },
 
     'Time::Piece' => {
-        'DISTRIBUTION' => 'ESAYM/Time-Piece-1.3201.tar.gz',
+        'DISTRIBUTION' => 'ESAYM/Time-Piece-1.3202.tar.gz',
         'FILES'        => q[cpan/Time-Piece],
+        'EXCLUDED'     => [ qw[reverse_deps.txt] ],
     },
 
     'Unicode::Collate' => {
index a3dfc74..06fd25c 100644 (file)
@@ -20,7 +20,7 @@ our %EXPORT_TAGS = (
     ':override' => 'internal',
     );
 
-our $VERSION = '1.3201';
+our $VERSION = '1.3202';
 
 bootstrap Time::Piece $VERSION;
 
index 8b3d43a..9ff51e5 100644 (file)
@@ -1034,7 +1034,7 @@ _strptime ( string, format, got_GMT, SV* localization )
   PPCODE:
        memset(&mytm, 0, sizeof(mytm));
 
-       // sensible defaults.
+       /* sensible defaults. */
        mytm.tm_mday = 1;
        mytm.tm_year = 70;
        mytm.tm_wday = 4;
@@ -1047,7 +1047,7 @@ _strptime ( string, format, got_GMT, SV* localization )
             croak("_strptime requires a Hash Reference of locales");
        }
 
-       //populate our locale data struct (used for %[AaBbPp] flags)
+       /* populate our locale data struct (used for %[AaBbPp] flags) */
        _populate_C_time_locale(aTHX_ locales );
 
        remainder = (char *)_strptime(aTHX_ string, format, &mytm, &got_GMT);
index af22ee2..6e945ca 100644 (file)
@@ -1,7 +1,7 @@
 package Time::Seconds;
 use strict;
 
-our $VERSION = '1.3201';
+our $VERSION = '1.3202';
 
 use Exporter 5.57 'import';