From: Chris 'BinGOs' Williams Date: Fri, 22 Sep 2017 10:13:52 +0000 (+0100) Subject: Update Time-Piece to CPAN version 1.3202 X-Git-Tag: v5.27.5~114 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/fd481c1750298b9abda12a8359d56200a571a751?ds=sidebyside Update Time-Piece to CPAN version 1.3202 [DELTA] 1.3202 2017-09-13 - Fix AIX compile --- diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 8f186ce..da80a05 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -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' => { diff --git a/cpan/Time-Piece/Piece.pm b/cpan/Time-Piece/Piece.pm index a3dfc74..06fd25c 100644 --- a/cpan/Time-Piece/Piece.pm +++ b/cpan/Time-Piece/Piece.pm @@ -20,7 +20,7 @@ our %EXPORT_TAGS = ( ':override' => 'internal', ); -our $VERSION = '1.3201'; +our $VERSION = '1.3202'; bootstrap Time::Piece $VERSION; diff --git a/cpan/Time-Piece/Piece.xs b/cpan/Time-Piece/Piece.xs index 8b3d43a..9ff51e5 100644 --- a/cpan/Time-Piece/Piece.xs +++ b/cpan/Time-Piece/Piece.xs @@ -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); diff --git a/cpan/Time-Piece/Seconds.pm b/cpan/Time-Piece/Seconds.pm index af22ee2..6e945ca 100644 --- a/cpan/Time-Piece/Seconds.pm +++ b/cpan/Time-Piece/Seconds.pm @@ -1,7 +1,7 @@ package Time::Seconds; use strict; -our $VERSION = '1.3201'; +our $VERSION = '1.3202'; use Exporter 5.57 'import';