r52435 - in /branches/upstream/libmodule-load-conditional-perl/current: CHANGES META.yml lib/Module/Load/Conditional.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Feb 10 03:33:55 UTC 2010


Author: jawnsy-guest
Date: Wed Feb 10 03:33:47 2010
New Revision: 52435

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=52435
Log:
[svn-upgrade] Integrating new upstream version, libmodule-load-conditional-perl (0.36)

Modified:
    branches/upstream/libmodule-load-conditional-perl/current/CHANGES
    branches/upstream/libmodule-load-conditional-perl/current/META.yml
    branches/upstream/libmodule-load-conditional-perl/current/lib/Module/Load/Conditional.pm

Modified: branches/upstream/libmodule-load-conditional-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-load-conditional-perl/current/CHANGES?rev=52435&op=diff
==============================================================================
--- branches/upstream/libmodule-load-conditional-perl/current/CHANGES (original)
+++ branches/upstream/libmodule-load-conditional-perl/current/CHANGES Wed Feb 10 03:33:47 2010
@@ -1,3 +1,8 @@
+Changes for 0.36    Tue Feb  9 14:16:21 GMT 2010
+=================================================
+* Apply patch from Pavel Shaydo RT #53546 to improve
+  the performance of _parse_version()
+
 Changes for 0.34    Thu Oct 29 09:22:48 GMT 2009
 =================================================
 * Remove DOS line endings from test files RT#50926

Modified: branches/upstream/libmodule-load-conditional-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-load-conditional-perl/current/META.yml?rev=52435&op=diff
==============================================================================
--- branches/upstream/libmodule-load-conditional-perl/current/META.yml (original)
+++ branches/upstream/libmodule-load-conditional-perl/current/META.yml Wed Feb 10 03:33:47 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Module-Load-Conditional
-version:            0.34
+version:            0.36
 abstract:           Looking up module information / loading at runtime
 author:
     - Jos Boumans <kane[at]cpan.org>
@@ -21,7 +21,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.54
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libmodule-load-conditional-perl/current/lib/Module/Load/Conditional.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-load-conditional-perl/current/lib/Module/Load/Conditional.pm?rev=52435&op=diff
==============================================================================
--- branches/upstream/libmodule-load-conditional-perl/current/lib/Module/Load/Conditional.pm (original)
+++ branches/upstream/libmodule-load-conditional-perl/current/lib/Module/Load/Conditional.pm Wed Feb 10 03:33:47 2010
@@ -18,7 +18,7 @@
                         $FIND_VERSION $ERROR $CHECK_INC_HASH];
     use Exporter;
     @ISA            = qw[Exporter];
-    $VERSION        = '0.34';
+    $VERSION        = '0.36';
     $VERBOSE        = 0;
     $DEPRECATED     = 0;
     $FIND_VERSION   = 1;
@@ -321,6 +321,9 @@
     my $self    = shift;
     my $str     = shift or return;
     my $verbose = shift or 0;
+
+    ### skip lines which doesn't contain VERSION
+    return unless $str =~ /VERSION/;
 
     ### skip commented out lines, they won't eval to anything.
     return if $str =~ /^\s*#/;




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