Hello community,

here is the log from the commit of package perl-Test-Simple for 
openSUSE:Factory checked in at 2014-03-28 13:17:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Test-Simple (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Test-Simple.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Test-Simple"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Test-Simple/perl-Test-Simple.changes        
2013-12-10 22:53:16.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Test-Simple.new/perl-Test-Simple.changes   
2014-03-28 13:17:23.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Mar 24 21:12:41 UTC 2014 - l...@linux-schulserver.de
+
+- update to 1.001003:
+  + Doc updates for maintainer change 
+
+-------------------------------------------------------------------

Old:
----
  Test-Simple-1.001002.tar.gz

New:
----
  Test-Simple-1.001003.tar.gz

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

Other differences:
------------------
++++++ perl-Test-Simple.spec ++++++
--- /var/tmp/diff_new_pack.TsdIku/_old  2014-03-28 13:17:24.000000000 +0100
+++ /var/tmp/diff_new_pack.TsdIku/_new  2014-03-28 13:17:24.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Simple
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -17,29 +17,21 @@
 
 
 Name:           perl-Test-Simple
-Version:        1.001002
+Version:        1.001003
 Release:        0
 %define cpan_name Test-Simple
-Summary:        Basic utilities for writing tests.
+Summary:        Basic utilities for writing tests
 License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Test-Simple/
-Source:         
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Source:         %{cpan_name}-%{version}.tar.gz
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(Dev::Null)
-#BuildRequires: perl(MyOverload)
-#BuildRequires: perl(Test::Builder::IO::Scalar)
-#BuildRequires: perl(Test::Builder::NoOutput)
-#BuildRequires: perl(Test::Simple::Catch)
-#BuildRequires: perl(TieOut)
 %{perl_requires}
 
 %description
-** If you are unfamiliar with testing *read Test::Tutorial* first! **
-
 This is an extremely simple, extremely basic module for writing tests
 suitable for CPAN modules and other pursuits. If you wish to do more
 complicated testing, use the Test::More module (a drop-in replacement for
@@ -51,36 +43,7 @@
 
 The only other constraint is you must pre-declare how many tests you plan
 to run. This is in case something goes horribly wrong during the test and
-your test program aborts, or skips a test or whatever. You do this like so:
-
-    use Test::Simple tests => 23;
-
-You must have a plan.
-
-* *ok*
-
-    ok( $foo eq $bar, $name );
-    ok( $foo eq $bar );
-
-  ok() is given an expression (in this case '$foo eq $bar'). If it's true,
-  the test passed. If it's false, it didn't. That's about it.
-
-  ok() prints out either "ok" or "not ok" along with a test number (it
-  keeps track of that for you).
-
-    # This produces "ok 1 - Hell not yet frozen over" (or not ok)
-    ok( get_temperature($hell) > 0, 'Hell not yet frozen over' );
-
-  If you provide a $name, that will be printed along with the "ok/not ok"
-  to make it easier to find your test when if fails (just search for the
-  name). It also makes it easier for the next guy to understand what your
-  test is for. It's highly recommended you use test names.
-
-  All tests are run in scalar context. So this:
-
-      ok( @stuff, 'I have some stuff' );
-
-  will do what you mean (fail if stuff is empty)
+your test program aborts, or skips a test or whatever.
 
 Test::Simple will start by printing number of tests run in the form "1..M"
 (so "1..5" means you're going to run 5 tests). This strange format lets
@@ -95,14 +58,6 @@
 completed all its tests, it will still be considered a failure and will
 exit with 255.
 
-So the exit codes are...
-
-    0                   all tests successful
-    255                 test died or all passed but wrong # of tests run
-    any other number    how many failed (including missing or extras)
-
-If you fail more than 254 tests, it will be reported as 254.
-
 This module is by no means trying to be a complete testing system. It's
 just to get you started. Once you're off the ground its recommended you
 look at the Test::More manpage.

++++++ Test-Simple-1.001002.tar.gz -> Test-Simple-1.001003.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/Changes 
new/Test-Simple-1.001003/Changes
--- old/Test-Simple-1.001002/Changes    2013-11-04 21:14:01.000000000 +0100
+++ new/Test-Simple-1.001003/Changes    2014-03-22 05:13:07.000000000 +0100
@@ -1,3 +1,5 @@
+1.001003     Fri Mar  21 21:12:32 PST 2014
+    * Doc updates for maintainer change
 
 1.001002     Mon Nov  4 15:13:58 EST 2013
     * no changes since 0.99
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/META.json 
new/Test-Simple-1.001003/META.json
--- old/Test-Simple-1.001002/META.json  2013-11-04 21:15:22.000000000 +0100
+++ new/Test-Simple-1.001003/META.json  2014-03-22 05:28:00.000000000 +0100
@@ -4,7 +4,7 @@
       "Michael G Schwern <schw...@pobox.com>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.8, CPAN::Meta::Converter 
version 2.132830",
+   "generated_by" : "ExtUtils::MakeMaker version 6.92, CPAN::Meta::Converter 
version 2.120921",
    "license" : [
       "perl_5"
    ],
@@ -41,16 +41,16 @@
    "release_status" : "stable",
    "resources" : {
       "bugtracker" : {
-         "web" : "http://github.com/schwern/test-more/issues/";
+         "web" : "http://github.com/Test-More/test-more/issues/";
       },
-      "homepage" : "http://github.com/schwern/test-more/";,
+      "homepage" : "http://github.com/Test-More/test-more/";,
       "license" : [
          "http://dev.perl.org/licenses/";
       ],
       "repository" : {
-         "url" : "http://github.com/schwern/test-more/";
+         "url" : "http://github.com/Test-More/test-more/";
       },
       "x_MailingList" : "http://lists.perl.org/list/perl-qa.html";
    },
-   "version" : "1.001002"
+   "version" : "1.001003"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/META.yml 
new/Test-Simple-1.001003/META.yml
--- old/Test-Simple-1.001002/META.yml   2013-11-04 21:15:22.000000000 +0100
+++ new/Test-Simple-1.001003/META.yml   2014-03-22 05:28:00.000000000 +0100
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.8, CPAN::Meta::Converter version 
2.132830'
+generated_by: 'ExtUtils::MakeMaker version 6.92, CPAN::Meta::Converter version 
2.120921'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -22,9 +22,9 @@
   Test::Harness: 2.03
   perl: 5.006
 resources:
-  MailingList: http://lists.perl.org/list/perl-qa.html
-  bugtracker: http://github.com/schwern/test-more/issues/
-  homepage: http://github.com/schwern/test-more/
+  bugtracker: http://github.com/Test-More/test-more/issues/
+  homepage: http://github.com/Test-More/test-more/
   license: http://dev.perl.org/licenses/
-  repository: http://github.com/schwern/test-more/
-version: 1.001002
+  repository: http://github.com/Test-More/test-more/
+  x_MailingList: http://lists.perl.org/list/perl-qa.html
+version: 1.001003
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/Makefile.PL 
new/Test-Simple-1.001003/Makefile.PL
--- old/Test-Simple-1.001002/Makefile.PL        2013-09-27 16:09:25.000000000 
+0200
+++ new/Test-Simple-1.001003/Makefile.PL        2014-03-22 05:15:51.000000000 
+0100
@@ -82,9 +82,9 @@
     ($mm_ver < 6.46 ? () : (META_MERGE => {
         resources => {
             license     =>      'http://dev.perl.org/licenses/',
-            homepage    =>      'http://github.com/schwern/test-more/',
-            bugtracker  =>      'http://github.com/schwern/test-more/issues/',
-            repository  =>      'http://github.com/schwern/test-more/',
+            homepage    =>      'http://github.com/Test-More/test-more/',
+            bugtracker  =>      
'http://github.com/Test-More/test-more/issues/',
+            repository  =>      'http://github.com/Test-More/test-more/',
             MailingList =>      'http://lists.perl.org/list/perl-qa.html',
         },
     }))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/README 
new/Test-Simple-1.001003/README
--- old/Test-Simple-1.001002/README     2009-03-28 10:32:02.000000000 +0100
+++ new/Test-Simple-1.001003/README     2014-03-22 05:13:52.000000000 +0100
@@ -1,5 +1,6 @@
 This is the README file for Test::Simple, basic utilities for 
-writing tests, by Michael G Schwern <schw...@pobox.com>.
+writing tests, by Michael G Schwern <schw...@pobox.com>. Maintained by Chad
+Granum <exod...@cpan.org>.
 
 After installation, please consult the tutorial for how to
 start adding tests to your modules. 'perldoc Test::Tutorial'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/lib/Test/Builder/Module.pm 
new/Test-Simple-1.001003/lib/Test/Builder/Module.pm
--- old/Test-Simple-1.001002/lib/Test/Builder/Module.pm 2013-11-04 
21:14:07.000000000 +0100
+++ new/Test-Simple-1.001003/lib/Test/Builder/Module.pm 2014-03-22 
05:24:46.000000000 +0100
@@ -7,7 +7,7 @@
 require Exporter;
 our @ISA = qw(Exporter);
 
-our $VERSION = '1.001002';
+our $VERSION = '1.001003';
 $VERSION = eval $VERSION;      ## no critic 
(BuiltinFunctions::ProhibitStringyEval)
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/lib/Test/Builder/Tester.pm 
new/Test-Simple-1.001003/lib/Test/Builder/Tester.pm
--- old/Test-Simple-1.001002/lib/Test/Builder/Tester.pm 2013-10-31 
01:51:10.000000000 +0100
+++ new/Test-Simple-1.001003/lib/Test/Builder/Tester.pm 2014-03-22 
05:20:55.000000000 +0100
@@ -1,7 +1,7 @@
 package Test::Builder::Tester;
 
 use strict;
-our $VERSION = "1.23_002";
+our $VERSION = "1.23_003";
 
 use Test::Builder 0.98;
 use Symbol;
@@ -444,6 +444,14 @@
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.
 
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exod...@cpan.orge<gt>
+
+=back
+
 =head1 NOTES
 
 Thanks to Richard Clamp E<lt>richa...@unixbeard.nete<gt> for letting
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/lib/Test/Builder.pm 
new/Test-Simple-1.001003/lib/Test/Builder.pm
--- old/Test-Simple-1.001002/lib/Test/Builder.pm        2013-11-04 
21:14:09.000000000 +0100
+++ new/Test-Simple-1.001003/lib/Test/Builder.pm        2014-03-22 
05:20:02.000000000 +0100
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '1.001002';
+our $VERSION = '1.001003';
 $VERSION = eval $VERSION;    ## no critic 
(BuiltinFunctions::ProhibitStringyEval)
 
 BEGIN {
@@ -2643,6 +2643,14 @@
 Original code by chromatic, maintained by Michael G Schwern
 E<lt>schw...@pobox.come<gt>
 
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exod...@cpan.orge<gt>
+
+=back
+
 =head1 COPYRIGHT
 
 Copyright 2002-2008 by chromatic E<lt>chroma...@wgz.orge<gt> and
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/lib/Test/More.pm 
new/Test-Simple-1.001003/lib/Test/More.pm
--- old/Test-Simple-1.001002/lib/Test/More.pm   2013-11-04 21:14:11.000000000 
+0100
+++ new/Test-Simple-1.001003/lib/Test/More.pm   2014-03-22 05:24:19.000000000 
+0100
@@ -17,7 +17,7 @@
     return warn @_, " at $file line $line\n";
 }
 
-our $VERSION = '1.001002';
+our $VERSION = '1.001003';
 $VERSION = eval $VERSION;    ## no critic 
(BuiltinFunctions::ProhibitStringyEval)
 
 use Test::Builder::Module 0.99;
@@ -1887,6 +1887,14 @@
 Slaymaker, Tony Bowden, blackstar.co.uk, chromatic, Fergal Daly and
 the perl-qa gang.
 
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exod...@cpan.orge<gt>
+
+=back
+
 
 =head1 BUGS
 
@@ -1896,7 +1904,7 @@
 =head1 SOURCE
 
 The source code repository for Test::More can be found at
-F<http://github.com/schwern/test-more/>.
+F<http://github.com/Test-More/test-more/>.
 
 
 =head1 COPYRIGHT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/lib/Test/Simple.pm 
new/Test-Simple-1.001003/lib/Test/Simple.pm
--- old/Test-Simple-1.001002/lib/Test/Simple.pm 2013-11-04 21:14:13.000000000 
+0100
+++ new/Test-Simple-1.001003/lib/Test/Simple.pm 2014-03-22 05:19:15.000000000 
+0100
@@ -4,7 +4,7 @@
 
 use strict;
 
-our $VERSION = '1.001002';
+our $VERSION = '1.001003';
 $VERSION = eval $VERSION;    ## no critic 
(BuiltinFunctions::ProhibitStringyEval)
 
 use Test::Builder::Module 0.99;
@@ -199,6 +199,13 @@
 Idea by Tony Bowden and Paul Johnson, code by Michael G Schwern
 E<lt>schw...@pobox.come<gt>, wardrobe by Calvin Klein.
 
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exod...@cpan.orge<gt>
+
+=back
 
 =head1 COPYRIGHT
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-Simple-1.001002/lib/Test/Tutorial.pod 
new/Test-Simple-1.001003/lib/Test/Tutorial.pod
--- old/Test-Simple-1.001002/lib/Test/Tutorial.pod      2013-10-31 
01:51:10.000000000 +0100
+++ new/Test-Simple-1.001003/lib/Test/Tutorial.pod      2014-03-22 
05:21:21.000000000 +0100
@@ -594,6 +594,14 @@
 
 Michael G Schwern E<lt>schw...@pobox.come<gt> and the perl-qa dancers!
 
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exod...@cpan.orge<gt>
+
+=back
+
 =head1 COPYRIGHT
 
 Copyright 2001 by Michael G Schwern E<lt>schw...@pobox.come<gt>.

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to