r60366 - in /trunk/libdatetime-perl: ./ debian/ inc/ lib/ lib/DateTime/ t/ tools/

franck at users.alioth.debian.org franck at users.alioth.debian.org
Sat Jul 17 11:38:17 UTC 2010


Author: franck
Date: Sat Jul 17 11:38:06 2010
New Revision: 60366

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60366
Log:
Integrating new upstream release into trunk.

Modified:
    trunk/libdatetime-perl/Build.PL
    trunk/libdatetime-perl/Changes
    trunk/libdatetime-perl/INSTALL
    trunk/libdatetime-perl/META.json
    trunk/libdatetime-perl/META.yml
    trunk/libdatetime-perl/README
    trunk/libdatetime-perl/SIGNATURE
    trunk/libdatetime-perl/debian/changelog
    trunk/libdatetime-perl/dist.ini
    trunk/libdatetime-perl/inc/MyModuleBuild.pm
    trunk/libdatetime-perl/lib/DateTime.pm
    trunk/libdatetime-perl/lib/DateTime/Duration.pm
    trunk/libdatetime-perl/lib/DateTime/Helpers.pm
    trunk/libdatetime-perl/lib/DateTime/Infinite.pm
    trunk/libdatetime-perl/lib/DateTime/LeapSecond.pm
    trunk/libdatetime-perl/lib/DateTimePP.pm
    trunk/libdatetime-perl/lib/DateTimePPExtra.pm
    trunk/libdatetime-perl/t/release-eol.t
    trunk/libdatetime-perl/t/release-pod-spell.t
    trunk/libdatetime-perl/tools/leap_seconds_header.pl

Modified: trunk/libdatetime-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/Build.PL?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/Build.PL (original)
+++ trunk/libdatetime-perl/Build.PL Sat Jul 17 11:38:06 2010
@@ -22,7 +22,7 @@
     'Dave Rolsky <autarch at urth.org>'
   ],
   'dist_name' => 'DateTime',
-  'dist_version' => '0.60',
+  'dist_version' => '0.61',
   'license' => 'artistic_2',
   'module_name' => 'DateTime',
   'recommends' => {},
@@ -40,4 +40,9 @@
 
 my $build = Module::Build->new(%module_build_args);
 
+if ( grep { $_ eq '--pp' } @ARGV ) {
+    $build->build_elements(
+        [ grep { $_ ne 'xs' } @{ $build->build_elements() } ] );
+}
+
 $build->create_build_script;

Modified: trunk/libdatetime-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/Changes?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/Changes (original)
+++ trunk/libdatetime-perl/Changes Sat Jul 17 11:38:06 2010
@@ -1,3 +1,9 @@
+0.61   2010-07-16
+
+- Switching to dzil in 0.56 broke the --pp flag for the Build.PL. Reported by
+  Jonathan Noack. RT #59421.
+
+
 0.60   2010-07-03
 
 - By default, Dist::Zilla generates a Build.PL that requires Module::Build

Modified: trunk/libdatetime-perl/INSTALL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/INSTALL?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/INSTALL (original)
+++ trunk/libdatetime-perl/INSTALL Sat Jul 17 11:38:06 2010
@@ -1,44 +1,27 @@
 
 This is the Perl distribution DateTime.
 
-Installing DateTime is straightforward.
+## Installation
 
-## Installation with cpanm
-
-If you have cpanm, you only need one line:
-
-    % cpanm DateTime
-
-If you are installing into a system-wide directory, you may need to pass the
-"-S" flag to cpanm, which uses sudo to install the module:
-
-    % cpanm -S DateTime
-
-## Installing with the CPAN shell
-
-Alternatively, if your CPAN shell is set up, you should just be able to do:
+DateTime installation is straightforward.
+If your CPAN shell is set up, you should just be able to do
 
     % cpan DateTime
 
-## Manual installation
+Download it, unpack it, then build it as per the usual:
 
-As a last resort, you can manually install it. Download the tarball, untar it,
-then build it:
-
-    % perl Build.PL
-    % ./Build && ./Build test
+    % perl Makefile.PL
+    % make && make test
 
 Then install it:
 
-    % ./Build install
-
-If you are installing into a system-wide directory, you may need to run:
-
-    % sudo ./Build install
+    % make install
 
 ## Documentation
 
 DateTime documentation is available as in POD.
-You can run perldoc from a shell to read the documentation:
+So you can do:
 
     % perldoc DateTime
+
+to read the documentation with your favorite pager.

Modified: trunk/libdatetime-perl/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/META.json?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/META.json (original)
+++ trunk/libdatetime-perl/META.json Sat Jul 17 11:38:06 2010
@@ -4,7 +4,7 @@
       "Dave Rolsky <autarch at urth.org>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 4.101812, CPAN::Meta::Converter version 2.101670",
+   "generated_by" : "Dist::Zilla version 4.101900, CPAN::Meta::Converter version 2.101670",
    "license" : [
       "artistic_2"
    ],
@@ -50,10 +50,10 @@
       },
       "repository" : {
          "type" : "hg",
-         "url" : "http://hg.urth.org/hg/DateTime",
-         "web" : "http://hg.urth.org/hg/DateTime"
+         "url" : "http://hg.urth.org/hg/DateTime.pm",
+         "web" : "http://hg.urth.org/hg/DateTime.pm"
       }
    },
-   "version" : "0.60"
+   "version" : "0.61"
 }
 

Modified: trunk/libdatetime-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/META.yml?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/META.yml (original)
+++ trunk/libdatetime-perl/META.yml Sat Jul 17 11:38:06 2010
@@ -11,7 +11,7 @@
 configure_requires:
   Module::Build: 0
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 4.101812, CPAN::Meta::Converter version 2.101670'
+generated_by: 'Dist::Zilla version 4.101900, CPAN::Meta::Converter version 2.101670'
 license: artistic_2
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -25,5 +25,5 @@
   Time::Local: 1.04
 resources:
   bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=DateTime
-  repository: http://hg.urth.org/hg/DateTime
-version: 0.60
+  repository: http://hg.urth.org/hg/DateTime.pm
+version: 0.61

Modified: trunk/libdatetime-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/README?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/README (original)
+++ trunk/libdatetime-perl/README Sat Jul 17 11:38:06 2010
@@ -1,7 +1,7 @@
 
 
 This archive contains the distribution DateTime,
-version 0.60:
+version 0.61:
 
   A date and time object
 

Modified: trunk/libdatetime-perl/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/SIGNATURE?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/SIGNATURE (original)
+++ trunk/libdatetime-perl/SIGNATURE Sat Jul 17 11:38:06 2010
@@ -1,5 +1,5 @@
 This file contains message digests of all files listed in MANIFEST,
-signed via the Module::Signature module, version 0.61.
+signed via the Module::Signature module, version 0.64.
 
 To verify the content in this distribution, first make sure you have
 Module::Signature installed, then type:
@@ -14,29 +14,29 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 9a758574edae6429df8e0dddccf1c032e7ce33fa Build.PL
+SHA1 e1b3f819dfb5861d5dd8ba5854188a8ee7bf4fa2 Build.PL
 SHA1 c951898b770a16da2897d908ab6f9f72057bd570 CREDITS
-SHA1 b6cd74b5028bd107912d6cf5216b4bb2b6264e34 Changes
-SHA1 386b39e73da5261ca431feafafdf90112276a53e INSTALL
+SHA1 796800de55745b17675620a5b5d4463d4edc6605 Changes
+SHA1 1ef34be47daa753286c81b175f7a7bed09a4aeb1 INSTALL
 SHA1 23c628b4a8a36738405ccdacaeb912d2e727b4c0 LICENSE
 SHA1 3252f91ad8fe5bfe6076b9c42bf4bc6854225da9 MANIFEST
-SHA1 3095f1f7fdfa76e7a7c77c01655509da670ef508 META.json
-SHA1 84d42fc505864f7d04f9c6f7abc32bf2e75852e4 META.yml
-SHA1 420c06b03f5f6be8f01cee427c82f57117a1569f README
+SHA1 b0dabbd4023e285a335a60024ff221b01716337a META.json
+SHA1 a0cbf8fde45500d836046e0cfdab331c57f9f6ac META.yml
+SHA1 9f44f3528484a51b552a47f488b8e992db63be8f README
 SHA1 bfc70fbe8fa29484452bea8c2ed4afd55218f2c2 TODO
 SHA1 b67b906c9fbaab9ccac635d623cb4e6064feb8f0 c/leap_seconds.h
 SHA1 4cd12d2a050ab038e519bd1391f77855ba4b24ac c/ppport.h
-SHA1 41b387d7b891827b33dcce63117f51d0b26d49da dist.ini
-SHA1 275b40ed71e1fb94e58c12f6dc08450ecc881cd3 inc/MyModuleBuild.pm
+SHA1 87ecd3c7a220dd605207805048f3bbafa801f396 dist.ini
+SHA1 2d1f339f1a2ceb22c2657d7c21983f69bc7456e3 inc/MyModuleBuild.pm
 SHA1 ad083d04f765963b707dab9d566bf17e92fa51e9 leaptab.txt
-SHA1 a6fa93d96b625c55084bda8c82d45623ae8ad1dd lib/DateTime.pm
+SHA1 f90dce5c959d657dacbb9959fd41aa2551fa51ce lib/DateTime.pm
 SHA1 29dc49f4971ca3979c95cad28b4782b4ad8fc134 lib/DateTime.xs
-SHA1 e9ce1076708873bf2bc4c9760e8cec83ec2d6384 lib/DateTime/Duration.pm
-SHA1 833581358781fdb061c2c16a63460b6690f964ef lib/DateTime/Helpers.pm
-SHA1 5f98a744fae8838ede79165e4e37b320cdf81c26 lib/DateTime/Infinite.pm
-SHA1 08cbe5274f3f0fc53436acf5d9fb4b40346a9953 lib/DateTime/LeapSecond.pm
-SHA1 fc9e228be06a440b1c274b825e6b9712b949fbed lib/DateTimePP.pm
-SHA1 6fb205f30efda515c7e3e37207483d872e99dabd lib/DateTimePPExtra.pm
+SHA1 f23e268e4f903b6e04f978ecb5bfeddfc50c85cd lib/DateTime/Duration.pm
+SHA1 99fae6c65bedb8f38c43330d9fca03f19ee89f2b lib/DateTime/Helpers.pm
+SHA1 ef82b615ce4fe780aef6c6c595a3d35627f99f1a lib/DateTime/Infinite.pm
+SHA1 9b4c1f65a576131ee5efbd5dcbf468dfc4bde4fa lib/DateTime/LeapSecond.pm
+SHA1 65d5b574f8e7a4d4d3a2b170790386a116181833 lib/DateTimePP.pm
+SHA1 41c389f3e24f4200bae7778775c028dcddc8de22 lib/DateTimePPExtra.pm
 SHA1 b7d12ae6a374c314afcf6ee289a1ae309d8a8563 t/00load.t
 SHA1 53ac3a3da64401a86b06ed6dbcc1af01ba7741dd t/01sanity.t
 SHA1 1ced0f94d405f32f687b5a86c245774fabb44b40 t/02last-day.t
@@ -83,11 +83,11 @@
 SHA1 9f788a8482e8853ae20dd302ce409eca4841db32 t/43new-params.t
 SHA1 de1c574b60b9e171c2deb670c4279aa262eead4c t/44set-formatter.t
 SHA1 510ffbab7f698fde6273c5099036019741327203 t/author-test-all-my-deps.t
-SHA1 24b525e3c18f37f8022a01ec30de757cefb679ff t/release-eol.t
+SHA1 a032c41ef6887fab1b900669c2d304fab46680e2 t/release-eol.t
 SHA1 961a1e2c92d836c8cad2d34b784cbc75345dec63 t/release-kwalitee.t
 SHA1 455d1dd1867212a665ad5ea4126b572411de300c t/release-no-tabs.t
 SHA1 c012bcd63ed7cda327ebe6701f20910f07f6e479 t/release-pod-coverage.t
-SHA1 8313001a6808a2614c77614f092148ea8b17d6ba t/release-pod-spell.t
+SHA1 685a1fd7e83f61b95298509d863799d2be1283fb t/release-pod-spell.t
 SHA1 0bf5c7d045bcd17b72749ea8d57bfc2435913095 t/release-pod.t
 SHA1 ec43fd5da3960d2f3b2791382188eeb31393ae7a t/release-pp-00load.t
 SHA1 3d077519de5e9e4d7c1af922a5004da861270ec2 t/release-pp-01sanity.t
@@ -132,11 +132,11 @@
 SHA1 9f032607aeeb8d36818b2949252ea04a4cd5a839 t/release-pp-42duration-class.t
 SHA1 bcc9c6d9eff526dfa4cdef7eb22f14ef1e326cf8 t/release-pp-43new-params.t
 SHA1 7fee4a1f0b67e6249298b1cb0d8a1a0e1b78ec56 t/release-pp-44set-formatter.t
-SHA1 a7e493153959c6911c368021060fadcb4417771e tools/leap_seconds_header.pl
+SHA1 bef3937eb875e25c0fb9c95597b2a7628eb65020 tools/leap_seconds_header.pl
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.10 (GNU/Linux)
 
-iEYEARECAAYFAkwva/QACgkQIgMCsV8qvRJBowCeJmBVD6m3EwsZJ+cKYhnxPQC9
-yXAAnR8i9vkFQS8zy0aQMiTMlHCG/pWc
-=jKR9
+iEYEARECAAYFAkxBByEACgkQIgMCsV8qvRLVBQCcDfuQd1a2CMgOw/cFf3PoZ9hR
+MaMAn0p6vnMnEq3GEg/5K2n9vprdt+p+
+=JgN+
 -----END PGP SIGNATURE-----

Modified: trunk/libdatetime-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/debian/changelog?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/debian/changelog (original)
+++ trunk/libdatetime-perl/debian/changelog Sat Jul 17 11:38:06 2010
@@ -1,3 +1,9 @@
+libdatetime-perl (2:0.6100-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Franck Joncourt <franck at debian.org>  Sat, 17 Jul 2010 13:36:08 +0200
+
 libdatetime-perl (2:0.6000-1) UNRELEASED; urgency=low
 
   IGNORE-VERSION: 2:0.6000-1

Modified: trunk/libdatetime-perl/dist.ini
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/dist.ini?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/dist.ini (original)
+++ trunk/libdatetime-perl/dist.ini Sat Jul 17 11:38:06 2010
@@ -2,7 +2,7 @@
 author  = Dave Rolsky <autarch at urth.org>
 copyright_year = 2010
 
-version = 0.60
+version = 0.61
 
 [@Filter]
 -bundle = @Basic
@@ -17,8 +17,8 @@
 [MetaResources]
 bugtracker.web    = http://rt.cpan.org/NoAuth/Bugs.html?Dist=DateTime
 bugtracker.mailto = bug-datetime at rt.cpan.org
-repository.url    = http://hg.urth.org/hg/DateTime
-repository.web    = http://hg.urth.org/hg/DateTime
+repository.url    = http://hg.urth.org/hg/DateTime.pm
+repository.web    = http://hg.urth.org/hg/DateTime.pm
 repository.type   = hg
 
 [SurgicalPodWeaver]

Modified: trunk/libdatetime-perl/inc/MyModuleBuild.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/inc/MyModuleBuild.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/inc/MyModuleBuild.pm (original)
+++ trunk/libdatetime-perl/inc/MyModuleBuild.pm Sat Jul 17 11:38:06 2010
@@ -5,7 +5,7 @@
 
 use Moose;
 
-extends 'Dist::Zilla::Plugin::ModuleBuild';
+extends 'Dist::Zilla::Plugin::ModuleBuild::XSOrPP';
 
 around module_build_args => sub {
     my $orig = shift;

Modified: trunk/libdatetime-perl/lib/DateTime.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTime.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTime.pm (original)
+++ trunk/libdatetime-perl/lib/DateTime.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime;
 BEGIN {
-  $DateTime::VERSION = '0.60';
+  $DateTime::VERSION = '0.61';
 }
 
 use 5.006;
@@ -950,7 +950,7 @@
 
     my $day_length = $self->_day_length( $self->{utc_rd_days} );
 
-    return (  $jd 
+    return (  $jd
             + ( $self->{utc_rd_secs} / $day_length )
             + ( $self->{rd_nanosecs} / $day_length / MAX_NANOSECONDS ) );
 }
@@ -2032,7 +2032,7 @@
 
 package DateTime::_Thawed;
 BEGIN {
-  $DateTime::_Thawed::VERSION = '0.60';
+  $DateTime::_Thawed::VERSION = '0.61';
 }
 
 sub utc_rd_values { @{ $_[0]->{utc_vals} } }
@@ -2053,7 +2053,7 @@
 
 =head1 VERSION
 
-version 0.60
+version 0.61
 
 =head1 SYNOPSIS
 
@@ -4042,7 +4042,7 @@
 
 =head1 AUTHOR
 
-  Dave Rolsky <autarch at urth.org>
+Dave Rolsky <autarch at urth.org>
 
 =head1 COPYRIGHT AND LICENSE
 

Modified: trunk/libdatetime-perl/lib/DateTime/Duration.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTime/Duration.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTime/Duration.pm (original)
+++ trunk/libdatetime-perl/lib/DateTime/Duration.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime::Duration;
 BEGIN {
-  $DateTime::Duration::VERSION = '0.60';
+  $DateTime::Duration::VERSION = '0.61';
 }
 
 use strict;
@@ -318,7 +318,7 @@
 
 =head1 VERSION
 
-version 0.60
+version 0.61
 
 =head1 SYNOPSIS
 
@@ -330,7 +330,7 @@
                                 days    => 1,
                                 hours   => 6,
                                 minutes => 15,
-                                seconds => 45, 
+                                seconds => 45,
                                 nanoseconds => 12000 );
 
   # Convert to different units
@@ -609,7 +609,7 @@
 
 =head1 AUTHOR
 
-  Dave Rolsky <autarch at urth.org>
+Dave Rolsky <autarch at urth.org>
 
 =head1 COPYRIGHT AND LICENSE
 

Modified: trunk/libdatetime-perl/lib/DateTime/Helpers.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTime/Helpers.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTime/Helpers.pm (original)
+++ trunk/libdatetime-perl/lib/DateTime/Helpers.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime::Helpers;
 BEGIN {
-  $DateTime::Helpers::VERSION = '0.60';
+  $DateTime::Helpers::VERSION = '0.61';
 }
 
 use strict;

Modified: trunk/libdatetime-perl/lib/DateTime/Infinite.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTime/Infinite.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTime/Infinite.pm (original)
+++ trunk/libdatetime-perl/lib/DateTime/Infinite.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime::Infinite;
 BEGIN {
-  $DateTime::Infinite::VERSION = '0.60';
+  $DateTime::Infinite::VERSION = '0.61';
 }
 
 use strict;
@@ -40,7 +40,7 @@
 
 package DateTime::Infinite::Future;
 BEGIN {
-  $DateTime::Infinite::Future::VERSION = '0.60';
+  $DateTime::Infinite::Future::VERSION = '0.61';
 }
 
 use base qw(DateTime::Infinite);
@@ -64,7 +64,7 @@
 
 package DateTime::Infinite::Past;
 BEGIN {
-  $DateTime::Infinite::Past::VERSION = '0.60';
+  $DateTime::Infinite::Past::VERSION = '0.61';
 }
 
 use base qw(DateTime::Infinite);
@@ -100,7 +100,7 @@
 
 =head1 VERSION
 
-version 0.60
+version 0.61
 
 =head1 SYNOPSIS
 
@@ -148,7 +148,7 @@
 
 =head1 AUTHOR
 
-  Dave Rolsky <autarch at urth.org>
+Dave Rolsky <autarch at urth.org>
 
 =head1 COPYRIGHT AND LICENSE
 

Modified: trunk/libdatetime-perl/lib/DateTime/LeapSecond.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTime/LeapSecond.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTime/LeapSecond.pm (original)
+++ trunk/libdatetime-perl/lib/DateTime/LeapSecond.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime::LeapSecond;
 BEGIN {
-  $DateTime::LeapSecond::VERSION = '0.60';
+  $DateTime::LeapSecond::VERSION = '0.61';
 }
 
 use strict;
@@ -130,7 +130,7 @@
 
 =head1 VERSION
 
-version 0.60
+version 0.61
 
 =head1 SYNOPSIS
 
@@ -179,7 +179,7 @@
 
 =head1 AUTHOR
 
-  Dave Rolsky <autarch at urth.org>
+Dave Rolsky <autarch at urth.org>
 
 =head1 COPYRIGHT AND LICENSE
 

Modified: trunk/libdatetime-perl/lib/DateTimePP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTimePP.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTimePP.pm (original)
+++ trunk/libdatetime-perl/lib/DateTimePP.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime;
 BEGIN {
-  $DateTime::VERSION = '0.60';
+  $DateTime::VERSION = '0.61';
 }
 
 use strict;
@@ -136,7 +136,7 @@
     # 0-relative to Jan 1, year 1-relative (whew)
 
     $d
-        += ( $m * 367 - 1094 ) / 12 
+        += ( $m * 367 - 1094 ) / 12
         + $y % 100 * 1461 / 4
         + ( $y / 100 * 36524 + $y / 400 ) - 306;
 }

Modified: trunk/libdatetime-perl/lib/DateTimePPExtra.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/lib/DateTimePPExtra.pm?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/lib/DateTimePPExtra.pm (original)
+++ trunk/libdatetime-perl/lib/DateTimePPExtra.pm Sat Jul 17 11:38:06 2010
@@ -1,6 +1,6 @@
 package DateTime;
 BEGIN {
-  $DateTime::VERSION = '0.60';
+  $DateTime::VERSION = '0.61';
 }
 
 use strict;

Modified: trunk/libdatetime-perl/t/release-eol.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/t/release-eol.t?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/t/release-eol.t (original)
+++ trunk/libdatetime-perl/t/release-eol.t Sat Jul 17 11:38:06 2010
@@ -13,4 +13,4 @@
 eval 'use Test::EOL';
 plan skip_all => 'Test::EOL required' if $@;
 
-all_perl_files_ok();
+all_perl_files_ok({ trailing_whitespace => 1 });

Modified: trunk/libdatetime-perl/t/release-pod-spell.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/t/release-pod-spell.t?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/t/release-pod-spell.t (original)
+++ trunk/libdatetime-perl/t/release-pod-spell.t Sat Jul 17 11:38:06 2010
@@ -11,7 +11,11 @@
 use strict;
 use warnings;
 
-use Test::Spelling;
+use Test::More;
+
+eval "use Test::Spelling";
+plan skip_all => "Test::Spelling required for spell checking"
+    if $@;
 
 my @stopwords;
 for (<DATA>) {
@@ -25,13 +29,15 @@
 
 # This prevents a weird segfault from the aspell command - see
 # https://bugs.launchpad.net/ubuntu/+source/aspell/+bug/71322
-local $ENV{LC_ALL} = 'C';
-all_pod_files_spelling_ok;
+local $ENV{LC_ALL} = 'en_US';
+all_pod_files_spelling_ok();
 
 __DATA__
 Anno
 BCE
 CLDR
+CPAN
+DateTime
 DateTimes
 Datetime
 Datetimes
@@ -61,6 +67,7 @@
 UTC
 VVVV
 ZZZZ
+afterwards
 bian
 ccc
 cccc
@@ -73,6 +80,7 @@
 eee
 eeee
 eeeee
+fallback
 formatter
 hh
 iCal
@@ -95,4 +103,5 @@
 Flávio
 Glock
 Rata
+Rolsky
 Soibelmann

Modified: trunk/libdatetime-perl/tools/leap_seconds_header.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdatetime-perl/tools/leap_seconds_header.pl?rev=60366&op=diff
==============================================================================
--- trunk/libdatetime-perl/tools/leap_seconds_header.pl (original)
+++ trunk/libdatetime-perl/tools/leap_seconds_header.pl Sat Jul 17 11:38:06 2010
@@ -170,7 +170,7 @@
     # 1, year 1-relative (whew)
 
     $d
-        += ( $m * 367 - 1094 ) / 12 
+        += ( $m * 367 - 1094 ) / 12
         + $y % 100 * 1461 / 4
         + ( $y / 100 * 36524 + $y / 400 ) - 306;
 }




More information about the Pkg-perl-cvs-commits mailing list