Hello community,

here is the log from the commit of package perl-Module-Implementation for 
openSUSE:Factory checked in at 2012-03-09 21:25:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Module-Implementation (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Module-Implementation.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Module-Implementation", Maintainer is ""

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-Module-Implementation/perl-Module-Implementation.changes
    2012-02-15 15:58:24.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Module-Implementation.new/perl-Module-Implementation.changes
       2012-03-09 21:25:44.000000000 +0100
@@ -1,0 +2,5 @@
+Wed Feb 29 18:55:38 CET 2012 - [email protected]
+
+- fix build with old Test::More for sle11 
+
+-------------------------------------------------------------------

New:
----
  old_test_more.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Module-Implementation.spec ++++++
--- /var/tmp/diff_new_pack.ILTVV5/_old  2012-03-09 21:25:45.000000000 +0100
+++ /var/tmp/diff_new_pack.ILTVV5/_new  2012-03-09 21:25:45.000000000 +0100
@@ -16,7 +16,6 @@
 #
 
 
-
 Name:           perl-Module-Implementation
 Version:        0.05
 Release:        0
@@ -26,6 +25,9 @@
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Module-Implementation/
 Source:         
http://www.cpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
+%if 0%{?suse_version} <= 1110
+Patch0:         old_test_more.patch
+%endif
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -33,8 +35,8 @@
 BuildRequires:  perl(Module::Runtime) >= 0.011
 BuildRequires:  perl(Test::Fatal)
 BuildRequires:  perl(Test::More) >= 0.88
-BuildRequires:  perl(Test::Taint)
 BuildRequires:  perl(Test::Requires)
+BuildRequires:  perl(Test::Taint)
 BuildRequires:  perl(Try::Tiny)
 #BuildRequires: perl(Module::Implementation)
 #BuildRequires: perl(Test::Spelling)
@@ -55,6 +57,9 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
+%if 0%{?suse_version} <= 1110
+%patch0
+%endif
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor

++++++ old_test_more.patch ++++++
--- t/basic.t
+++ t/basic.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 
 {
     package T;
@@ -34,4 +34,4 @@
     );
 }
 
-done_testing();
+#done_testing();
--- t/both-fail.t
+++ t/both-fail.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 {
@@ -25,4 +25,4 @@
     );
 }
 
-done_testing();
+#done_testing();
--- t/env-value.t
+++ t/env-value.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 
 {
     package T;
@@ -36,4 +36,4 @@
     );
 }
 
-done_testing();
+#done_testing();
--- t/more-symbols.t
+++ t/more-symbols.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 
 {
     package T;
@@ -44,4 +44,4 @@
     );
 }
 
-done_testing();
+#done_testing();
--- t/one-impl-fails1.t
+++ t/one-impl-fails1.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 
 {
     package T;
@@ -25,4 +25,4 @@
     ok( !T->can('return_package'), 'T package has a return_package sub' );
 }
 
-done_testing();
+#done_testing();
--- t/one-impl-fails2.t
+++ t/one-impl-fails2.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 
 {
     package T;
@@ -25,4 +25,4 @@
     ok( !T->can('return_package'), 'T package has a return_package sub' );
 }
 
-done_testing();
+#done_testing();
--- t/requested-fails.t
+++ t/requested-fails.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 {
@@ -27,4 +27,4 @@
     );
 }
 
-done_testing();
+#done_testing();
--- t/taint.t
+++ t/taint.t
@@ -7,7 +7,7 @@
     'Test::Taint' => '0',
 };
 
-use Test::More 0.88;
+use Test::More qw(no_plan);
 use Test::Fatal;
 
 taint_checking_ok();
@@ -43,4 +43,4 @@
     );
 }
 
-done_testing();
+#done_testing();
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to