Hello community, here is the log from the commit of package perl-Test-Tester for openSUSE:Factory checked in at 2012-02-20 16:16:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Test-Tester (Old) and /work/SRC/openSUSE:Factory/.perl-Test-Tester.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Test-Tester", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Test-Tester/perl-Test-Tester.changes 2011-11-21 12:48:31.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Test-Tester.new/perl-Test-Tester.changes 2012-02-20 16:17:00.000000000 +0100 @@ -1,0 +2,8 @@ +Mon Feb 20 08:38:26 UTC 2012 - [email protected] + +- updated to 0.108 + At the request Michael Schwern, do not "require threads" any longer as + it can upset Test::Builder. Anyone using threads should already have + done that themselves. Anyway not, doesn't need it. + +------------------------------------------------------------------- Old: ---- Test-Tester-0.107.tar.gz New: ---- Test-Tester-0.108.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Test-Tester.spec ++++++ --- /var/tmp/diff_new_pack.n6rvrZ/_old 2012-02-20 16:17:01.000000000 +0100 +++ /var/tmp/diff_new_pack.n6rvrZ/_new 2012-02-20 16:17:01.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package perl-Test-Tester # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,35 +15,32 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild - Name: perl-Test-Tester +Version: 0.108 +Release: 0 %define cpan_name Test-Tester Summary: Ease testing test modules built with Test::Builder -Version: 0.107 -Release: 10 -License: GPL-1.0+ or Artistic-1.0 +License: Artistic-1.0 or GPL-1.0+ Group: Development/Libraries/Perl Url: http://search.cpan.org/dist/Test-Tester/ -#Source: http://www.cpan.org/modules/by-module/Test/Test-Tester-%{version}.tar.gz -Source: %{cpan_name}-%{version}.tar.gz +Source: http://www.cpan.org/authors/id/F/FD/FDALY/%{cpan_name}-%{version}.tar.gz BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build -%{perl_requires} BuildRequires: perl BuildRequires: perl-macros -BuildRequires: perl(Test::Builder) -Requires: perl(Test::Builder) +#BuildRequires: perl(MyTest) +#BuildRequires: perl(SmallTest) +#BuildRequires: perl(Test::Tester) +#BuildRequires: perl(Test::Tester::Capture) +#BuildRequires: perl(Test::Tester::CaptureRunner) +#BuildRequires: perl(Test::Tester::Delegate) +%{perl_requires} %description If you have written a test module based on Test::Builder then Test::Tester allows you to test it with the minimum of effort. -Authors: --------- - Fergal Daly <[email protected]> - %prep %setup -q -n %{cpan_name}-%{version} @@ -56,18 +53,11 @@ %install %perl_make_install -# do not perl_process_packlist (noarch) -# remove .packlist file -%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch -# remove perllocal.pod file -%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib +%perl_process_packlist %perl_gen_filelist -%clean -%{__rm} -rf $RPM_BUILD_ROOT - %files -f %{name}.files -%defattr(-,root,root,-) +%defattr(-,root,root,755) %doc ARTISTIC CHANGES README TODO %changelog ++++++ Test-Tester-0.107.tar.gz -> Test-Tester-0.108.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Tester-0.107/CHANGES new/Test-Tester-0.108/CHANGES --- old/Test-Tester-0.107/CHANGES 2008-03-01 23:12:34.000000000 +0100 +++ new/Test-Tester-0.108/CHANGES 2011-11-30 15:05:43.000000000 +0100 @@ -1,3 +1,9 @@ +0.108 + +At the request Michael Schwern, do not "require threads" any longer as +it can upset Test::Builder. Anyone using threads should already have +done that themselves. Anyway not, doesn't need it. + 0.107 Test::Tester::Capgture::new used to just return __PACKAGE__ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Tester-0.107/META.yml new/Test-Tester-0.108/META.yml --- old/Test-Tester-0.107/META.yml 2008-03-01 23:17:43.000000000 +0100 +++ new/Test-Tester-0.108/META.yml 2011-11-30 15:06:30.000000000 +0100 @@ -1,7 +1,7 @@ # http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: Test-Tester -version: 0.107 +version: 0.108 version_from: ./lib/Test/Tester.pm installdirs: perl requires: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Tester-0.107/lib/Test/Tester/Capture.pm new/Test-Tester-0.108/lib/Test/Tester/Capture.pm --- old/Test-Tester-0.107/lib/Test/Tester/Capture.pm 2008-03-01 23:13:35.000000000 +0100 +++ new/Test-Tester-0.108/lib/Test/Tester/Capture.pm 2011-11-30 15:03:08.000000000 +0100 @@ -11,7 +11,6 @@ BEGIN { use Config; if( $] >= 5.008 && $Config{useithreads} ) { - require threads; require threads::shared; threads::shared->import; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Test-Tester-0.107/lib/Test/Tester.pm new/Test-Tester-0.108/lib/Test/Tester.pm --- old/Test-Tester-0.107/lib/Test/Tester.pm 2008-03-01 23:14:16.000000000 +0100 +++ new/Test-Tester-0.108/lib/Test/Tester.pm 2011-11-30 15:03:49.000000000 +0100 @@ -18,7 +18,7 @@ use vars qw( @ISA @EXPORT $VERSION ); -$VERSION = "0.107"; +$VERSION = "0.108"; @EXPORT = qw( run_tests check_tests check_test cmp_results show_space ); @ISA = qw( Exporter ); -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
