diff -Nru libstring-formatter-perl-0.102081/Changes libstring-formatter-perl-0.102082/Changes --- libstring-formatter-perl-0.102081/Changes 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/Changes 2010-10-19 18:34:39.000000000 +0000 @@ -1,5 +1,7 @@ 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 diff -Nru libstring-formatter-perl-0.102081/debian/changelog libstring-formatter-perl-0.102082/debian/changelog --- libstring-formatter-perl-0.102081/debian/changelog 2010-10-17 23:19:17.000000000 +0000 +++ libstring-formatter-perl-0.102082/debian/changelog 2011-03-05 09:59:58.000000000 +0000 @@ -1,3 +1,15 @@ +libstring-formatter-perl (0.102082-1) unstable; urgency=low + + * New upstream release + * Bump Debhelper compat level to 8. + * debian/control: Bump versioned Build-Depends on debhelper to (>= 8). + * Email change: Ansgar Burchardt -> ansgar@debian.org + * Email change: Salvatore Bonaccorso -> carnil@debian.org + * debian/copyright: Update copyright years for debian/* packaging + stanza. + + -- Salvatore Bonaccorso Sat, 05 Mar 2011 10:59:55 +0100 + libstring-formatter-perl (0.102081-1) unstable; urgency=low [ Salvatore Bonaccorso ] diff -Nru libstring-formatter-perl-0.102081/debian/compat libstring-formatter-perl-0.102082/debian/compat --- libstring-formatter-perl-0.102081/debian/compat 2009-12-22 18:13:43.000000000 +0000 +++ libstring-formatter-perl-0.102082/debian/compat 2011-03-05 08:37:54.000000000 +0000 @@ -1 +1 @@ -7 +8 diff -Nru libstring-formatter-perl-0.102081/debian/control libstring-formatter-perl-0.102082/debian/control --- libstring-formatter-perl-0.102081/debian/control 2010-10-17 23:17:41.000000000 +0000 +++ libstring-formatter-perl-0.102082/debian/control 2011-03-05 08:46:07.000000000 +0000 @@ -1,23 +1,28 @@ Source: libstring-formatter-perl +Maintainer: Debian Perl Group +Uploaders: gregor herrmann , + Jonathan Yu , + Ansgar Burchardt , + Salvatore Bonaccorso Section: perl Priority: optional -Build-Depends: debhelper (>= 7.0.50) -Build-Depends-Indep: libparams-util-perl, libsub-exporter-perl, - libtest-pod-perl (>= 1.41), perl, - perl (>= 5.10.1) | libtest-simple-perl (>= 0.88) -Maintainer: Debian Perl Group -Uploaders: gregor herrmann , Jonathan Yu , - Ansgar Burchardt , - Salvatore Bonaccorso +Build-Depends: debhelper (>= 8) +Build-Depends-Indep: libparams-util-perl, + libsub-exporter-perl, + libtest-pod-perl (>= 1.41), + perl, + perl (>= 5.10.1) | libtest-simple-perl (>= 0.88) Standards-Version: 3.9.1 -Homepage: http://search.cpan.org/dist/String-Formatter/ -Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libstring-formatter-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libstring-formatter-perl/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libstring-formatter-perl/ +Homepage: http://search.cpan.org/dist/String-Formatter/ Package: libstring-formatter-perl Architecture: all -Depends: ${misc:Depends}, ${perl:Depends}, libparams-util-perl, - libsub-exporter-perl +Depends: ${misc:Depends}, + ${perl:Depends}, + libparams-util-perl, + libsub-exporter-perl Description: module to build sprintf-like formatting routines String::Formatter is a tool for building sprintf-like formatting routines. It supports named or positional formatting, custom conversions, fixed string diff -Nru libstring-formatter-perl-0.102081/debian/copyright libstring-formatter-perl-0.102082/debian/copyright --- libstring-formatter-perl-0.102081/debian/copyright 2010-10-17 23:18:22.000000000 +0000 +++ libstring-formatter-perl-0.102082/debian/copyright 2011-03-05 08:49:17.000000000 +0000 @@ -13,7 +13,7 @@ Copyright: 2009, gregor herrmann 2010, Ansgar Burchardt 2010, Jonathan Yu - 2010, Salvatore Bonaccorso + 2010, 2011, Salvatore Bonaccorso License: Artistic or GPL-1+ License: Artistic diff -Nru libstring-formatter-perl-0.102081/lib/String/Formatter/Cookbook.pm libstring-formatter-perl-0.102082/lib/String/Formatter/Cookbook.pm --- libstring-formatter-perl-0.102081/lib/String/Formatter/Cookbook.pm 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/lib/String/Formatter/Cookbook.pm 2010-10-19 18:34:39.000000000 +0000 @@ -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 diff -Nru libstring-formatter-perl-0.102081/lib/String/Formatter.pm libstring-formatter-perl-0.102082/lib/String/Formatter.pm --- libstring-formatter-perl-0.102081/lib/String/Formatter.pm 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/lib/String/Formatter.pm 2010-10-19 18:34:39.000000000 +0000 @@ -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 diff -Nru libstring-formatter-perl-0.102081/Makefile.PL libstring-formatter-perl-0.102082/Makefile.PL --- libstring-formatter-perl-0.102081/Makefile.PL 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/Makefile.PL 2010-10-19 18:34:39.000000000 +0000 @@ -12,7 +12,7 @@ 'ABSTRACT' => 'build sprintf-like functions of your own', 'AUTHOR' => 'Ricardo Signes , Darren Chamberlain ', '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' } diff -Nru libstring-formatter-perl-0.102081/META.json libstring-formatter-perl-0.102082/META.json --- libstring-formatter-perl-0.102081/META.json 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/META.json 2010-10-19 18:34:39.000000000 +0000 @@ -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" : [ { diff -Nru libstring-formatter-perl-0.102081/META.yml libstring-formatter-perl-0.102082/META.yml --- libstring-formatter-perl-0.102081/META.yml 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/META.yml 2010-10-19 18:34:39.000000000 +0000 @@ -4,7 +4,7 @@ - 'Ricardo Signes ' - 'Darren Chamberlain ' 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: - diff -Nru libstring-formatter-perl-0.102081/README libstring-formatter-perl-0.102082/README --- libstring-formatter-perl-0.102081/README 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/README 2010-10-19 18:34:39.000000000 +0000 @@ -1,7 +1,7 @@ This archive contains the distribution String-Formatter, -version 0.102081: +version 0.102082: build sprintf-like functions of your own diff -Nru libstring-formatter-perl-0.102081/t/stringf.t libstring-formatter-perl-0.102082/t/stringf.t --- libstring-formatter-perl-0.102081/t/stringf.t 2010-10-17 17:40:37.000000000 +0000 +++ libstring-formatter-perl-0.102082/t/stringf.t 2010-10-19 18:34:39.000000000 +0000 @@ -1,7 +1,7 @@ #!perl use strict; -use Test::More; +use Test::More 0.88; use String::Formatter stringf => {