r73208 - in /branches/upstream/libclass-methodmaker-perl/current: Changes META.yml Makefile.PL components/scalar.m lib/Class/MethodMaker.pm lib/Class/MethodMaker/Engine.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Apr 23 15:38:07 UTC 2011


Author: gregoa
Date: Sat Apr 23 15:37:55 2011
New Revision: 73208

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73208
Log:
[svn-upgrade] new version libclass-methodmaker-perl (2.18)

Modified:
    branches/upstream/libclass-methodmaker-perl/current/Changes
    branches/upstream/libclass-methodmaker-perl/current/META.yml
    branches/upstream/libclass-methodmaker-perl/current/Makefile.PL
    branches/upstream/libclass-methodmaker-perl/current/components/scalar.m
    branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker.pm
    branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker/Engine.pm

Modified: branches/upstream/libclass-methodmaker-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libclass-methodmaker-perl/current/Changes?rev=73208&op=diff
==============================================================================
--- branches/upstream/libclass-methodmaker-perl/current/Changes (original)
+++ branches/upstream/libclass-methodmaker-perl/current/Changes Sat Apr 23 15:37:55 2011
@@ -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

Modified: branches/upstream/libclass-methodmaker-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libclass-methodmaker-perl/current/META.yml?rev=73208&op=diff
==============================================================================
--- branches/upstream/libclass-methodmaker-perl/current/META.yml (original)
+++ branches/upstream/libclass-methodmaker-perl/current/META.yml Sat Apr 23 15:37:55 2011
@@ -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

Modified: branches/upstream/libclass-methodmaker-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libclass-methodmaker-perl/current/Makefile.PL?rev=73208&op=diff
==============================================================================
--- branches/upstream/libclass-methodmaker-perl/current/Makefile.PL (original)
+++ branches/upstream/libclass-methodmaker-perl/current/Makefile.PL Sat Apr 23 15:37:55 2011
@@ -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',

Modified: branches/upstream/libclass-methodmaker-perl/current/components/scalar.m
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libclass-methodmaker-perl/current/components/scalar.m?rev=73208&op=diff
==============================================================================
--- branches/upstream/libclass-methodmaker-perl/current/components/scalar.m (original)
+++ branches/upstream/libclass-methodmaker-perl/current/components/scalar.m Sat Apr 23 15:37:55 2011
@@ -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 ------------

Modified: branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker.pm?rev=73208&op=diff
==============================================================================
--- branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker.pm (original)
+++ branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker.pm Sat Apr 23 15:37:55 2011
@@ -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();

Modified: branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker/Engine.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker/Engine.pm?rev=73208&op=diff
==============================================================================
--- branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker/Engine.pm (original)
+++ branches/upstream/libclass-methodmaker-perl/current/lib/Class/MethodMaker/Engine.pm Sat Apr 23 15:37:55 2011
@@ -57,7 +57,7 @@
 # -------------------------------------
 
 our $PACKAGE = 'Class-MethodMaker';
-our $VERSION = '2.17';
+our $VERSION = '2.18';
 
 # -------------------------------------
 # CLASS CONSTRUCTION




More information about the Pkg-perl-cvs-commits mailing list