r64039 - in /branches/upstream/libstring-formatter-perl/current: Changes META.json META.yml Makefile.PL README lib/String/Formatter.pm lib/String/Formatter/Cookbook.pm t/stringf.t

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Wed Oct 20 07:22:35 UTC 2010


Author: carnil
Date: Wed Oct 20 07:22:08 2010
New Revision: 64039

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=64039
Log:
[svn-upgrade] new version libstring-formatter-perl (0.102082)

Modified:
    branches/upstream/libstring-formatter-perl/current/Changes
    branches/upstream/libstring-formatter-perl/current/META.json
    branches/upstream/libstring-formatter-perl/current/META.yml
    branches/upstream/libstring-formatter-perl/current/Makefile.PL
    branches/upstream/libstring-formatter-perl/current/README
    branches/upstream/libstring-formatter-perl/current/lib/String/Formatter.pm
    branches/upstream/libstring-formatter-perl/current/lib/String/Formatter/Cookbook.pm
    branches/upstream/libstring-formatter-perl/current/t/stringf.t

Modified: branches/upstream/libstring-formatter-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/Changes?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/Changes (original)
+++ branches/upstream/libstring-formatter-perl/current/Changes Wed Oct 20 07:22:08 2010
@@ -1,4 +1,6 @@
 Revision history for String-Formatter
+
+0.102082  2010-10-19 14:34:34 America/New_York
 
 0.102081  2010-10-17 13:40:26 America/New_York
           allow subclasses to provide default_codes

Modified: branches/upstream/libstring-formatter-perl/current/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/META.json?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/META.json (original)
+++ branches/upstream/libstring-formatter-perl/current/META.json Wed Oct 20 07:22:08 2010
@@ -29,7 +29,7 @@
       },
       "test" : {
          "requires" : {
-            "Test::More" : 0
+            "Test::More" : "0.88"
          }
       }
    },
@@ -40,7 +40,7 @@
          "url" : "git://git.codesimply.com/String-Formatter.git"
       }
    },
-   "version" : "0.102081",
+   "version" : "0.102082",
    "x_Dist_Zilla" : {
       "plugins" : [
          {

Modified: branches/upstream/libstring-formatter-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/META.yml?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/META.yml (original)
+++ branches/upstream/libstring-formatter-perl/current/META.yml Wed Oct 20 07:22:08 2010
@@ -4,7 +4,7 @@
   - 'Ricardo Signes <rjbs at cpan.org>'
   - 'Darren Chamberlain <darren at cpan.org>'
 build_requires:
-  Test::More: 0
+  Test::More: 0.88
 configure_requires:
   ExtUtils::MakeMaker: 6.31
 dynamic_config: 0
@@ -20,7 +20,7 @@
   perl: 5.006
 resources:
   repository: git://git.codesimply.com/String-Formatter.git
-version: 0.102081
+version: 0.102082
 x_Dist_Zilla:
   plugins:
     -

Modified: branches/upstream/libstring-formatter-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/Makefile.PL?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/Makefile.PL (original)
+++ branches/upstream/libstring-formatter-perl/current/Makefile.PL Wed Oct 20 07:22:08 2010
@@ -12,7 +12,7 @@
   'ABSTRACT' => 'build sprintf-like functions of your own',
   'AUTHOR' => 'Ricardo Signes <rjbs at cpan.org>, Darren Chamberlain <darren at cpan.org>',
   'BUILD_REQUIRES' => {
-    'Test::More' => '0'
+    'Test::More' => '0.88'
   },
   'CONFIGURE_REQUIRES' => {
     'ExtUtils::MakeMaker' => '6.31'
@@ -25,7 +25,7 @@
     'Params::Util' => '0',
     'Sub::Exporter' => '0'
   },
-  'VERSION' => '0.102081',
+  'VERSION' => '0.102082',
   'test' => {
     'TESTS' => 't/*.t'
   }

Modified: branches/upstream/libstring-formatter-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/README?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/README (original)
+++ branches/upstream/libstring-formatter-perl/current/README Wed Oct 20 07:22:08 2010
@@ -1,7 +1,7 @@
 
 
 This archive contains the distribution String-Formatter,
-version 0.102081:
+version 0.102082:
 
   build sprintf-like functions of your own
 

Modified: branches/upstream/libstring-formatter-perl/current/lib/String/Formatter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/lib/String/Formatter.pm?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/lib/String/Formatter.pm (original)
+++ branches/upstream/libstring-formatter-perl/current/lib/String/Formatter.pm Wed Oct 20 07:22:08 2010
@@ -2,7 +2,7 @@
 use warnings;
 package String::Formatter;
 BEGIN {
-  $String::Formatter::VERSION = '0.102081';
+  $String::Formatter::VERSION = '0.102082';
 }
 # ABSTRACT: build sprintf-like functions of your own
 
@@ -309,7 +309,7 @@
 
 =head1 VERSION
 
-version 0.102081
+version 0.102082
 
 =head1 WARNING
 

Modified: branches/upstream/libstring-formatter-perl/current/lib/String/Formatter/Cookbook.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/lib/String/Formatter/Cookbook.pm?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/lib/String/Formatter/Cookbook.pm (original)
+++ branches/upstream/libstring-formatter-perl/current/lib/String/Formatter/Cookbook.pm Wed Oct 20 07:22:08 2010
@@ -2,7 +2,7 @@
 use warnings;
 package String::Formatter::Cookbook;
 BEGIN {
-  $String::Formatter::Cookbook::VERSION = '0.102081';
+  $String::Formatter::Cookbook::VERSION = '0.102082';
 }
 # ABSTRACT: ways to put String::Formatter to use
 1;
@@ -17,7 +17,7 @@
 
 =head1 VERSION
 
-version 0.102081
+version 0.102082
 
 =head1 OVERVIEW
 

Modified: branches/upstream/libstring-formatter-perl/current/t/stringf.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libstring-formatter-perl/current/t/stringf.t?rev=64039&op=diff
==============================================================================
--- branches/upstream/libstring-formatter-perl/current/t/stringf.t (original)
+++ branches/upstream/libstring-formatter-perl/current/t/stringf.t Wed Oct 20 07:22:08 2010
@@ -1,7 +1,7 @@
 #!perl
 use strict;
 
-use Test::More;
+use Test::More 0.88;
 
 use String::Formatter
   stringf => {




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