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

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Jan 8 21:41:41 UTC 2011


Author: periapt-guest
Date: Sat Jan  8 21:41:34 2011
New Revision: 67173

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

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
    branches/upstream/libmodule-load-conditional-perl/current/t/01_Module_Load_Conditional.t

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=67173&op=diff
==============================================================================
--- branches/upstream/libmodule-load-conditional-perl/current/CHANGES (original)
+++ branches/upstream/libmodule-load-conditional-perl/current/CHANGES Sat Jan  8 21:41:34 2011
@@ -1,3 +1,7 @@
+Changes for 0.40    Fri Jan  7 21:45:01 GMT 2011
+=================================================
+* Apply blead patch from Peter Acklam
+
 Changes for 0.38    Fri Apr 23 15:52:38 BST 2010
 =================================================
 * New release of version raises exceptions on

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=67173&op=diff
==============================================================================
--- branches/upstream/libmodule-load-conditional-perl/current/META.yml (original)
+++ branches/upstream/libmodule-load-conditional-perl/current/META.yml Sat Jan  8 21:41:34 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Module-Load-Conditional
-version:            0.38
+version:            0.40
 abstract:           Looking up module information / loading at runtime
 author:
     - Jos Boumans <kane[at]cpan.org>

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=67173&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 Sat Jan  8 21:41:34 2011
@@ -18,7 +18,7 @@
                         $FIND_VERSION $ERROR $CHECK_INC_HASH];
     use Exporter;
     @ISA            = qw[Exporter];
-    $VERSION        = '0.38';
+    $VERSION        = '0.40';
     $VERBOSE        = 0;
     $DEPRECATED     = 0;
     $FIND_VERSION   = 1;
@@ -339,7 +339,7 @@
     ### the following regexp & eval statement comes from the 
     ### ExtUtils::MakeMaker source (EU::MM_Unix->parse_version) 
     ### Following #18892, which tells us the original
-    ### regex breaks under -T, we must modifiy it so
+    ### regex breaks under -T, we must modify it so
     ### it captures the entire expression, and eval /that/
     ### rather than $_, which is insecure.
     my $taint_safe_str = do { $str =~ /(^.*$)/sm; $1 };
@@ -607,7 +607,7 @@
 This controls whether C<Module::Load::Conditional> checks your
 C<%INC> hash to see if a module is available. By default, only
 C<@INC> is scanned to see if a module is physically on your
-filesystem, or avialable via an C<@INC-hook>. Setting this variable
+filesystem, or available via an C<@INC-hook>. Setting this variable
 to C<true> will trust any entries in C<%INC> and return them for
 you.
 

Modified: branches/upstream/libmodule-load-conditional-perl/current/t/01_Module_Load_Conditional.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-load-conditional-perl/current/t/01_Module_Load_Conditional.t?rev=67173&op=diff
==============================================================================
--- branches/upstream/libmodule-load-conditional-perl/current/t/01_Module_Load_Conditional.t (original)
+++ branches/upstream/libmodule-load-conditional-perl/current/t/01_Module_Load_Conditional.t Sat Jan  8 21:41:34 2011
@@ -120,7 +120,7 @@
     my $rv = check_install( module  => 'Module::Does::Not::Exist' );
 
     ok( !$rv->{uptodate} && !$rv->{version} && !$rv->{file},
-        q[Verify non-existant module]
+        q[Verify non-existent module]
     );
 
 }




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