r64665 - in /branches/upstream/libparent-perl/current: Changes META.yml lib/parent.pm

ansgar at users.alioth.debian.org ansgar at users.alioth.debian.org
Sun Nov 7 12:38:52 UTC 2010


Author: ansgar
Date: Sun Nov  7 12:38:13 2010
New Revision: 64665

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=64665
Log:
[svn-upgrade] new version libparent-perl (0.224)

Modified:
    branches/upstream/libparent-perl/current/Changes
    branches/upstream/libparent-perl/current/META.yml
    branches/upstream/libparent-perl/current/lib/parent.pm

Modified: branches/upstream/libparent-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/Changes?rev=64665&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Changes (original)
+++ branches/upstream/libparent-perl/current/Changes Sun Nov  7 12:38:13 2010
@@ -1,3 +1,10 @@
+0.224  20101031
+    . Change assignment @ISA = (@ISA, 'new::class')
+      to use push @ISA, 'new::class'
+      This should make class creation faster from 5.10 onwards
+      and reverts a change made in 2.14. If this is critically slow for you
+      and you can't upgrade your version of Perl, use the old way.
+
 0.223  20090901
     . No functional changes, no need to upgrade
     + Fix Makefile.PL so that (re)installing parent under 5.10.1+

Modified: branches/upstream/libparent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/META.yml?rev=64665&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/META.yml (original)
+++ branches/upstream/libparent-perl/current/META.yml Sun Nov  7 12:38:13 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               parent
-version:            0.223
+version:            0.224
 abstract:           ~
 author:  []
 license:            unknown

Modified: branches/upstream/libparent-perl/current/lib/parent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/lib/parent.pm?rev=64665&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/lib/parent.pm (original)
+++ branches/upstream/libparent-perl/current/lib/parent.pm Sun Nov  7 12:38:13 2010
@@ -1,7 +1,7 @@
 package parent;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.223';
+$VERSION = '0.224';
 
 sub import {
     my $class = shift;
@@ -23,15 +23,15 @@
 
     {
         no strict 'refs';
-        # This is more efficient than push for the new MRO
-        # at least until the new MRO is fixed
-        @{"$inheritor\::ISA"} = (@{"$inheritor\::ISA"} , @_);
+        push @{"$inheritor\::ISA"}, @_;
     };
 };
 
 "All your base are belong to us"
 
 __END__
+
+=encoding utf8
 
 =head1 NAME
 
@@ -120,13 +120,13 @@
 
 =head1 AUTHORS AND CONTRIBUTORS
 
-Rafaël Garcia-Suarez, Bart Lateur, Max Maischein, Anno Siegel, Michael Schwern
+Rafaël Garcia-Suarez, Bart Lateur, Max Maischein, Anno Siegel, Michael Schwern
 
 =head1 MAINTAINER
 
 Max Maischein C< corion at cpan.org >
 
-Copyright (c) 2007 Max Maischein C<< <corion at cpan.org> >>
+Copyright (c) 2007-10 Max Maischein C<< <corion at cpan.org> >>
 Based on the idea of C<base.pm>, which was introduced with Perl 5.004_04.
 
 =head1 LICENSE




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