This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Module-Load-Conditional to CPAN version 0.54
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Sun, 12 Aug 2012 08:18:30 +0000 (09:18 +0100)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Sun, 12 Aug 2012 08:18:30 +0000 (09:18 +0100)
  [DELTA]

  Changes for 0.54    Sun Aug 12 09:10:13 BST 2012
  =================================================
  * VMS test fixes from Craig Berry

Porting/Maintainers.pl
cpan/Module-Load-Conditional/lib/Module/Load/Conditional.pm
cpan/Module-Load-Conditional/t/01_Module_Load_Conditional.t

index 492062a..256ece5 100755 (executable)
@@ -1272,7 +1272,7 @@ use File::Glob qw(:case);
 
     'Module::Load::Conditional' => {
         'MAINTAINER'   => 'kane',
-        'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.52.tar.gz',
+        'DISTRIBUTION' => 'BINGOS/Module-Load-Conditional-0.54.tar.gz',
         'FILES'        => q[cpan/Module-Load-Conditional],
         'UPSTREAM'     => 'cpan',
     },
index 0470f47..342371f 100644 (file)
@@ -20,7 +20,7 @@ BEGIN {
                         $FIND_VERSION $ERROR $CHECK_INC_HASH];
     use Exporter;
     @ISA            = qw[Exporter];
-    $VERSION        = '0.52';
+    $VERSION        = '0.54';
     $VERBOSE        = 0;
     $DEPRECATED     = 0;
     $FIND_VERSION   = 1;
index ee5d59e..99fa1fe 100644 (file)
@@ -180,6 +180,7 @@ use_ok( 'Module::Load::Conditional' );
     my ($dir_a, $dir_b) = map File::Spec->catdir($FindBin::Bin, 'test_lib', $_),
                               qw[a b];
     my $x_pm = File::Spec->catfile($dir_a, 'X.pm');
+    $x_pm = VMS::Filespec::unixify($x_pm) if ON_VMS;
 
     local @INC = ($dir_a, $dir_b);