Hello community,

here is the log from the commit of package perl-Class-MethodMaker for 
openSUSE:Factory
checked in at Thu Apr 21 12:17:37 CEST 2011.



--------
--- perl-Class-MethodMaker/perl-Class-MethodMaker.changes       2011-03-31 
11:57:25.000000000 +0200
+++ 
/mounts/work_src_done/STABLE/perl-Class-MethodMaker/perl-Class-MethodMaker.changes
  2011-04-21 07:24:55.000000000 +0200
@@ -1,0 +2,15 @@
+Thu Apr 21 05:14:32 UTC 2011 - [email protected]
+
+- updated to 2.18
+      - Fix 5.14 incompatibility - RT#66196 (Nicholas Clark)
+      - Just an intermediate release!
+        (in order to get help on fixing Class::MethodMaker for 5.14)
+      - already fixed breakage with 5.13.3 (rt#66196)
+        (CvGV is now an rvalue, so use CvGV_set instead of assigning
+        directly -- credits to ANDK, rafl and Zefram)
+      - added test for no warnings to additionally be able to bisect
+        annoying warnings since 5.13.2
+      - Stay tuned -- 2.18 will hopefully completely revitalize C:MM
+        for Perl 5.13+.
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  Class-MethodMaker-2.17.tar.gz

New:
----
  Class-MethodMaker-2.18.tar.gz

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

Other differences:
------------------
++++++ perl-Class-MethodMaker.spec ++++++
++++ 727 lines (skipped)
++++ between perl-Class-MethodMaker/perl-Class-MethodMaker.spec
++++ and 
/mounts/work_src_done/STABLE/perl-Class-MethodMaker/perl-Class-MethodMaker.spec

++++++ Class-MethodMaker-2.17.tar.gz -> Class-MethodMaker-2.18.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-MethodMaker-2.17/Changes 
new/Class-MethodMaker-2.18/Changes
--- old/Class-MethodMaker-2.17/Changes  2011-03-02 21:11:26.000000000 +0100
+++ new/Class-MethodMaker-2.18/Changes  2011-04-16 17:10:10.000000000 +0200
@@ -1,9 +1,12 @@
 Revision History for Class::MethodMaker (versions 2)
 
+2.18   Apr 16 2011
+        - Fix 5.14 incompatibility - RT#66196 (Nicholas Clark)
+
 2.17   Mar 02 2011
         - Just an intermediate release!
           (in order to get help on fixing Class::MethodMaker for 5.14)
-        - already fixed breakage with 5.13.3
+        - already fixed breakage with 5.13.3 (rt#66196)
           (CvGV is now an rvalue, so use CvGV_set instead of assigning
           directly -- credits to ANDK, rafl and Zefram)
         - added test for no warnings to additionally be able to bisect
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-MethodMaker-2.17/META.yml 
new/Class-MethodMaker-2.18/META.yml
--- old/Class-MethodMaker-2.17/META.yml 2011-03-02 21:11:39.000000000 +0100
+++ new/Class-MethodMaker-2.18/META.yml 2011-04-16 17:14:56.000000000 +0200
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Class-MethodMaker
-version:            2.17
+version:            2.18
 abstract:           a module for creating generic methods
 author:
     - Martyn J. Pearce
@@ -18,7 +18,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
+generated_by:       ExtUtils::MakeMaker version 6.5601
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-MethodMaker-2.17/Makefile.PL 
new/Class-MethodMaker-2.18/Makefile.PL
--- old/Class-MethodMaker-2.17/Makefile.PL      2011-03-02 20:57:39.000000000 
+0100
+++ new/Class-MethodMaker-2.18/Makefile.PL      2011-04-16 17:00:09.000000000 
+0200
@@ -47,7 +47,7 @@
 my %MakefileArgs = (
   NAME         => 'Class::MethodMaker',
   DISTNAME     => 'Class-MethodMaker',
-  VERSION      => '2.17',
+  VERSION      => '2.18',
   AUTHOR       => 'Martyn J. Pearce',
   LICENSE      => 'perl',
   ABSTRACT     => 'a module for creating generic methods',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-MethodMaker-2.17/components/scalar.m 
new/Class-MethodMaker-2.18/components/scalar.m
--- old/Class-MethodMaker-2.17/components/scalar.m      2011-02-28 
22:34:29.000000000 +0100
+++ new/Class-MethodMaker-2.18/components/scalar.m      2011-04-16 
16:57:01.000000000 +0200
@@ -133,7 +133,8 @@
     if exists $options->{store_cb};
 
   # V1 Compatibility
-  my ($list, $key_create) = @{$options}{qw/ _value_list key_create/}
+  my ($list, $key_create);
+  ($list, $key_create) = @{$options}{qw/ _value_list key_create/}
     if exists $options->{_value_list};
 
   # the method definitions ------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Class-MethodMaker-2.17/lib/Class/MethodMaker/Engine.pm 
new/Class-MethodMaker-2.18/lib/Class/MethodMaker/Engine.pm
--- old/Class-MethodMaker-2.17/lib/Class/MethodMaker/Engine.pm  2011-03-02 
21:06:04.000000000 +0100
+++ new/Class-MethodMaker-2.18/lib/Class/MethodMaker/Engine.pm  2011-04-16 
16:57:38.000000000 +0200
@@ -57,7 +57,7 @@
 # -------------------------------------
 
 our $PACKAGE = 'Class-MethodMaker';
-our $VERSION = '2.17';
+our $VERSION = '2.18';
 
 # -------------------------------------
 # CLASS CONSTRUCTION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-MethodMaker-2.17/lib/Class/MethodMaker.pm 
new/Class-MethodMaker-2.18/lib/Class/MethodMaker.pm
--- old/Class-MethodMaker-2.17/lib/Class/MethodMaker.pm 2011-03-02 
21:04:50.000000000 +0100
+++ new/Class-MethodMaker-2.18/lib/Class/MethodMaker.pm 2011-04-16 
16:57:27.000000000 +0200
@@ -6,7 +6,7 @@
 use Class::MethodMaker::Engine    qw();
 
 # Make this line self-contained so MakeMaker can eval() it.
-our $VERSION = '2.17';
+our $VERSION = '2.18';
 our $PACKAGE = 'Class-MethodMaker';
 
 use XSLoader qw();


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



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to