Hello community, here is the log from the commit of package perl-Test-Class for openSUSE:Factory checked in at 2013-12-22 19:37:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Test-Class (Old) and /work/SRC/openSUSE:Factory/.perl-Test-Class.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Test-Class" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Test-Class/perl-Test-Class.changes 2013-11-26 14:42:02.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Test-Class.new/perl-Test-Class.changes 2013-12-22 19:37:22.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Dec 9 11:15:52 UTC 2013 - [email protected] + +- updated to 0.41 + - require a newer Test::Builder if 0.99 is installed RT#90699 + +------------------------------------------------------------------- Old: ---- Test-Class-0.40.tar.gz New: ---- Test-Class-0.41.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Test-Class.spec ++++++ --- /var/tmp/diff_new_pack.if2zYZ/_old 2013-12-22 19:37:23.000000000 +0100 +++ /var/tmp/diff_new_pack.if2zYZ/_new 2013-12-22 19:37:23.000000000 +0100 @@ -17,7 +17,7 @@ Name: perl-Test-Class -Version: 0.40 +Version: 0.41 Release: 0 %define cpan_name Test-Class Summary: Easily create test classes in an xUnit/JUnit style @@ -30,7 +30,7 @@ BuildRequires: perl BuildRequires: perl-macros BuildRequires: perl(MRO::Compat) >= 0.11 -BuildRequires: perl(Module::Build) >= 0.40 +BuildRequires: perl(Module::Build) >= 0.4200 BuildRequires: perl(Test::Builder) >= 0.78 BuildRequires: perl(Test::Exception) >= 0.25 BuildRequires: perl(Test::More) >= 0.78 ++++++ Test-Class-0.40.tar.gz -> Test-Class-0.41.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/Build.PL new/Test-Class-0.41/Build.PL --- old/Test-Class-0.40/Build.PL 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/Build.PL 2013-11-30 15:38:49.000000000 +0100 @@ -1,15 +1,23 @@ use Module::Build; +use strict; +use warnings; + +use Test::Builder; + +# 0.99 broke test_out with qr// +my $tb_v = Test::Builder->VERSION eq '0.99' ? '1.001002' : '0.78'; + my $build = Module::Build->new( module_name => 'Test::Class', license => 'perl', requires => { - 'perl' => '5.006001', + 'perl' => '5.008001', 'Attribute::Handlers' => '0.77', 'MRO::Compat' => '0.11', 'Storable' => '2.04', 'Test::Simple' => '0.78', - 'Test::Builder' => '0.78', + 'Test::Builder' => $tb_v, 'Test::Builder::Tester' => '1.02', 'Test::More' => '0.78', }, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/Changes new/Test-Class-0.41/Changes --- old/Test-Class-0.40/Changes 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/Changes 2013-11-30 15:38:49.000000000 +0100 @@ -1,5 +1,8 @@ Changes for Perl extension Test-Class +0.41 or the "0.99 was a bad year" release [2013-11-30] + - require a newer Test::Builder if 0.99 is installed RT#90699 + 0.40 or the "rjbs wants to install App::GitGot" release [2013-11-04] - Applied Zefram's fix for RT#89473, Test::Class fails on Test::Builder 0.99 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/META.json new/Test-Class-0.41/META.json --- old/Test-Class-0.40/META.json 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/META.json 2013-11-30 15:38:49.000000000 +0100 @@ -4,7 +4,7 @@ "Adrian Howard <[email protected]>, Curtis \"Ovid\" Poe, <ovid at cpan.org>, Mark Morgan <[email protected]>." ], "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.4007, CPAN::Meta::Converter version 2.132830", + "generated_by" : "Module::Build version 0.4203", "license" : [ "perl_5" ], @@ -22,7 +22,7 @@ }, "configure" : { "requires" : { - "Module::Build" : "0.40" + "Module::Build" : "0.42" } }, "runtime" : { @@ -34,22 +34,22 @@ "Test::Builder::Tester" : "1.02", "Test::More" : "0.78", "Test::Simple" : "0.78", - "perl" : "5.006001" + "perl" : "5.008001" } } }, "provides" : { "Test::Class" : { "file" : "lib/Test/Class.pm", - "version" : "0.40" + "version" : "0.41" }, "Test::Class::Load" : { "file" : "lib/Test/Class/Load.pm", - "version" : "0.40" + "version" : "0.41" }, "Test::Class::MethodInfo" : { "file" : "lib/Test/Class/MethodInfo.pm", - "version" : "0.40" + "version" : "0.41" } }, "release_status" : "stable", @@ -61,5 +61,5 @@ "url" : "http://github.com/adrianh/test-class/" } }, - "version" : "0.40" + "version" : "0.41" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/META.yml new/Test-Class-0.41/META.yml --- old/Test-Class-0.40/META.yml 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/META.yml 2013-11-30 15:38:49.000000000 +0100 @@ -6,9 +6,9 @@ IO::File: 1.09 Test::Exception: 0.25 configure_requires: - Module::Build: 0.40 + Module::Build: 0.42 dynamic_config: 1 -generated_by: 'Module::Build version 0.4007, CPAN::Meta::Converter version 2.132830' +generated_by: 'Module::Build version 0.4203, CPAN::Meta::Converter version 2.132830' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -17,13 +17,13 @@ provides: Test::Class: file: lib/Test/Class.pm - version: 0.40 + version: 0.41 Test::Class::Load: file: lib/Test/Class/Load.pm - version: 0.40 + version: 0.41 Test::Class::MethodInfo: file: lib/Test/Class/MethodInfo.pm - version: 0.40 + version: 0.41 requires: Attribute::Handlers: 0.77 MRO::Compat: 0.11 @@ -32,8 +32,8 @@ Test::Builder::Tester: 1.02 Test::More: 0.78 Test::Simple: 0.78 - perl: 5.006001 + perl: 5.008001 resources: license: http://dev.perl.org/licenses/ repository: http://github.com/adrianh/test-class/ -version: 0.40 +version: 0.41 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/Makefile.PL new/Test-Class-0.41/Makefile.PL --- old/Test-Class-0.40/Makefile.PL 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/Makefile.PL 2013-11-30 15:38:49.000000000 +0100 @@ -1,5 +1,5 @@ -# Note: this file was auto-generated by Module::Build::Compat version 0.4007 -require 5.006001; +# Note: this file was auto-generated by Module::Build::Compat version 0.4203 +require 5.008001; use ExtUtils::MakeMaker; WriteMakefile ( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/lib/Test/Class/Load.pm new/Test-Class-0.41/lib/Test/Class/Load.pm --- old/Test-Class-0.40/lib/Test/Class/Load.pm 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/lib/Test/Class/Load.pm 2013-11-30 15:38:49.000000000 +0100 @@ -7,7 +7,7 @@ use File::Find; use File::Spec; -our $VERSION = '0.40'; +our $VERSION = '0.41'; # Override to get your own filter sub is_test_class { @@ -69,7 +69,7 @@ =head1 VERSION -Version 0.40 +Version 0.41 =head1 SYNOPSIS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/lib/Test/Class/MethodInfo.pm new/Test-Class-0.41/lib/Test/Class/MethodInfo.pm --- old/Test-Class-0.40/lib/Test/Class/MethodInfo.pm 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/lib/Test/Class/MethodInfo.pm 2013-11-30 15:38:49.000000000 +0100 @@ -4,7 +4,7 @@ package Test::Class::MethodInfo; use Carp; -our $VERSION = '0.40'; +our $VERSION = '0.41'; sub new { my ( $class, %param ) = @_; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Class-0.40/lib/Test/Class.pm new/Test-Class-0.41/lib/Test/Class.pm --- old/Test-Class-0.40/lib/Test/Class.pm 2013-11-04 21:18:26.000000000 +0100 +++ new/Test-Class-0.41/lib/Test/Class.pm 2013-11-30 15:38:49.000000000 +0100 @@ -11,7 +11,7 @@ use Test::Builder; use Test::Class::MethodInfo; -our $VERSION = '0.40'; +our $VERSION = '0.41'; my $Check_block_has_run; { -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
