r73210 - in /trunk/libclass-methodmaker-perl: Changes META.yml Makefile.PL components/scalar.m debian/changelog 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:40:11 UTC 2011


Author: gregoa
Date: Sat Apr 23 15:40:00 2011
New Revision: 73210

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73210
Log:
IGNORE-VERSION: 2.18-1
2.18: Fix 5.14 incompatibility
* New upstream release 2.18.

Modified:
    trunk/libclass-methodmaker-perl/Changes
    trunk/libclass-methodmaker-perl/META.yml
    trunk/libclass-methodmaker-perl/Makefile.PL
    trunk/libclass-methodmaker-perl/components/scalar.m
    trunk/libclass-methodmaker-perl/debian/changelog
    trunk/libclass-methodmaker-perl/lib/Class/MethodMaker.pm
    trunk/libclass-methodmaker-perl/lib/Class/MethodMaker/Engine.pm

Modified: trunk/libclass-methodmaker-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/Changes?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/Changes (original)
+++ trunk/libclass-methodmaker-perl/Changes Sat Apr 23 15:40:00 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: trunk/libclass-methodmaker-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/META.yml?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/META.yml (original)
+++ trunk/libclass-methodmaker-perl/META.yml Sat Apr 23 15:40:00 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: trunk/libclass-methodmaker-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/Makefile.PL?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/Makefile.PL (original)
+++ trunk/libclass-methodmaker-perl/Makefile.PL Sat Apr 23 15:40:00 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: trunk/libclass-methodmaker-perl/components/scalar.m
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/components/scalar.m?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/components/scalar.m (original)
+++ trunk/libclass-methodmaker-perl/components/scalar.m Sat Apr 23 15:40:00 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: trunk/libclass-methodmaker-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/debian/changelog?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/debian/changelog (original)
+++ trunk/libclass-methodmaker-perl/debian/changelog Sat Apr 23 15:40:00 2011
@@ -1,19 +1,23 @@
-libclass-methodmaker-perl (2.17-1) UNRELEASED; urgency=low
-
-  IGNORE-VERSION: 2.17-1
-  Changes only affect Perl 5.13+, not in Debian
+libclass-methodmaker-perl (2.18-1) UNRELEASED; urgency=low
+
+  IGNORE-VERSION: 2.18-1
+  2.17: Changes only affect Perl 5.13+, not in Debian
+  2.18: Fix 5.14 incompatibility
+
+  [ Ryan Niebur ]
+  * Update jawnsy's email address
 
   [ Jonathan Yu ]
-  * New upstream release
+  * New upstream release 2.17
   * Standards-Version 3.8.4 (no changes)
   * Use new 3.0 (quilt) source format
   * Remove patch to disable signature test (removed upstream)
   * New upstream release
 
-  [ Ryan Niebur ]
-  * Update jawnsy's email address
-
- -- Jonathan Yu <jawnsy at cpan.org>  Sat, 05 Mar 2011 20:17:22 -0500
+  [ gregor herrmann ]
+  * New upstream release 2.18.
+
+ -- gregor herrmann <gregoa at debian.org>  Sat, 23 Apr 2011 17:38:34 +0200
 
 libclass-methodmaker-perl (2.15-2) unstable; urgency=low
 

Modified: trunk/libclass-methodmaker-perl/lib/Class/MethodMaker.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/lib/Class/MethodMaker.pm?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/lib/Class/MethodMaker.pm (original)
+++ trunk/libclass-methodmaker-perl/lib/Class/MethodMaker.pm Sat Apr 23 15:40:00 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: trunk/libclass-methodmaker-perl/lib/Class/MethodMaker/Engine.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-methodmaker-perl/lib/Class/MethodMaker/Engine.pm?rev=73210&op=diff
==============================================================================
--- trunk/libclass-methodmaker-perl/lib/Class/MethodMaker/Engine.pm (original)
+++ trunk/libclass-methodmaker-perl/lib/Class/MethodMaker/Engine.pm Sat Apr 23 15:40:00 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