r69120 - in /branches/upstream/libmodule-build-perl/current: ./ inc/ lib/Module/ lib/Module/Build/ lib/Module/Build/Platform/ lib/inc/ lib/inc/latest/

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Feb 19 18:06:16 UTC 2011


Author: periapt-guest
Date: Sat Feb 19 18:06:01 2011
New Revision: 69120

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=69120
Log:
[svn-upgrade] new version libmodule-build-perl (0.362400)

Added:
    branches/upstream/libmodule-build-perl/current/inc/bootstrap.pl
Modified:
    branches/upstream/libmodule-build-perl/current/Build.PL
    branches/upstream/libmodule-build-perl/current/Changes
    branches/upstream/libmodule-build-perl/current/MANIFEST
    branches/upstream/libmodule-build-perl/current/META.yml
    branches/upstream/libmodule-build-perl/current/Makefile.PL
    branches/upstream/libmodule-build-perl/current/lib/Module/Build.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Base.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Compat.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Config.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Cookbook.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Dumper.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/ModuleInfo.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Notes.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/PPMMaker.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Amiga.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Default.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/EBCDIC.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MPEiX.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MacOS.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/RiscOS.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Unix.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VMS.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VOS.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Windows.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/aix.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/cygwin.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/darwin.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/os2.pm
    branches/upstream/libmodule-build-perl/current/lib/Module/Build/PodParser.pm
    branches/upstream/libmodule-build-perl/current/lib/inc/latest.pm
    branches/upstream/libmodule-build-perl/current/lib/inc/latest/private.pm

Modified: branches/upstream/libmodule-build-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/Build.PL?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/Build.PL (original)
+++ branches/upstream/libmodule-build-perl/current/Build.PL Sat Feb 19 18:06:01 2011
@@ -1,5 +1,10 @@
 use 5.006001;
 use strict;
+
+BEGIN {
+  die "CPANPLUS::Dist::Build version 0.08 or later is required to install Module::Build\n"
+    if $INC{'CPANPLUS/Dist/Build.pm'} && CPANPLUS::Dist::Build->VERSION lt '0.08';
+}
 
 # On some platforms (*ahem*, MacPerl 5.6.1) "use lib qw(lib);" doesn't
 # find the local "lib" directory, so we use File::Spec to do it properly.
@@ -9,27 +14,8 @@
 use lib File::Spec->catdir('t', 'bundled'); # use bundled modules
 use lib File::Spec->catdir('t', 'lib');     # our utilities
 
-# System installed configuration prereqs should take precedence
-BEGIN {
-  if ( ! eval "use Perl::OSType 1 (); 1" ) {
-    delete $INC{'Perl/OSType.pm'};
-    eval "require inc::Perl::OSType; 1"
-      and $INC{'Perl/OSType.pm'} = {'inc/Perl/OSType.pm'};
-    die $@ if $@;
-  }
-  if ( ! eval "use version 0.87 (); 1" ) {
-    delete $INC{'version.pm'};
-    eval "require inc::MBVersion; 1"
-      and $INC{'version.pm'} = {'inc/MBVersion.pm'};
-    die $@ if $@;
-  }
-  if ( ! eval "use Module::Metadata 1.000002 (); 1" ) {
-    delete $INC{'Module/Metadata.pm'};
-    eval "require inc::Module::Metadata; 1"
-      and $INC{'Module/Metadata.pm'} = {'inc/Module/Metadata.pm'};
-    die $@ if $@;
-  }
-}
+# bootstrap configure_requires prereqs
+BEGIN { do 'inc/bootstrap.pl' }
 
 # We use Module::Build to test & install itself.
 use Module::Build;

Modified: branches/upstream/libmodule-build-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/Changes?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/Changes (original)
+++ branches/upstream/libmodule-build-perl/current/Changes Sat Feb 19 18:06:01 2011
@@ -1,4 +1,19 @@
 Revision history for Perl extension Module::Build.
+
+0.3624 - Thu Jan 27 11:38:39 EST 2011
+
+  - Fixed pod2html directory bugs and fixed creation of spurious blib
+    directory in core perl directory when running install.t (RT#63003)
+    [Chris Williams]
+
+0.3623 - Wed Jan 26 17:45:30 EST 2011
+
+  - Fixed bugs involving bootstrapping configure_requires prerequisites
+    on older CPANPLUS clients or for either CPAN/CPANPLUS when using
+    the compatibility Makefile.PL
+
+  - Added diagnostic output when configure_requires are missing for
+    the benefit of users doing manual installation
 
 0.3622 - Mon Jan 24 21:06:50 EST 2011
 

Modified: branches/upstream/libmodule-build-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/MANIFEST?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/MANIFEST (original)
+++ branches/upstream/libmodule-build-perl/current/MANIFEST Sat Feb 19 18:06:01 2011
@@ -1,6 +1,7 @@
 Build.PL
 Changes
 contrib/bash_completion.module-build
+inc/bootstrap.pl
 inc/MBVersion.pm
 inc/Module/Metadata.pm
 inc/Perl/OSType.pm

Modified: branches/upstream/libmodule-build-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/META.yml?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/META.yml (original)
+++ branches/upstream/libmodule-build-perl/current/META.yml Sat Feb 19 18:06:01 2011
@@ -11,7 +11,7 @@
   Module::Metadata: 1.000002
   Perl::OSType: 1
   version: 0.87
-generated_by: 'Module::Build version 0.3622'
+generated_by: 'Module::Build version 0.3624'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -20,76 +20,76 @@
 provides:
   Module::Build:
     file: lib/Module/Build.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Base:
     file: lib/Module/Build/Base.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Compat:
     file: lib/Module/Build/Compat.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Config:
     file: lib/Module/Build/Config.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Cookbook:
     file: lib/Module/Build/Cookbook.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Dumper:
     file: lib/Module/Build/Dumper.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::ModuleInfo:
     file: lib/Module/Build/ModuleInfo.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Notes:
     file: lib/Module/Build/Notes.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::PPMMaker:
     file: lib/Module/Build/PPMMaker.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::Amiga:
     file: lib/Module/Build/Platform/Amiga.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::Default:
     file: lib/Module/Build/Platform/Default.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::EBCDIC:
     file: lib/Module/Build/Platform/EBCDIC.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::MPEiX:
     file: lib/Module/Build/Platform/MPEiX.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::MacOS:
     file: lib/Module/Build/Platform/MacOS.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::RiscOS:
     file: lib/Module/Build/Platform/RiscOS.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::Unix:
     file: lib/Module/Build/Platform/Unix.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::VMS:
     file: lib/Module/Build/Platform/VMS.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::VOS:
     file: lib/Module/Build/Platform/VOS.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::Windows:
     file: lib/Module/Build/Platform/Windows.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::aix:
     file: lib/Module/Build/Platform/aix.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::cygwin:
     file: lib/Module/Build/Platform/cygwin.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::darwin:
     file: lib/Module/Build/Platform/darwin.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Platform::os2:
     file: lib/Module/Build/Platform/os2.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::PodParser:
     file: lib/Module/Build/PodParser.pm
-    version: 0.3622
+    version: 0.3624
   Module::Build::Version:
     file: lib/Module/Build/Version.pm
     version: 0.87
@@ -98,10 +98,10 @@
     version: 1.41
   inc::latest:
     file: lib/inc/latest.pm
-    version: 0.3622
+    version: 0.3624
   inc::latest::private:
     file: lib/inc/latest/private.pm
-    version: 0.3622
+    version: 0.3624
 recommends:
   ExtUtils::Install: 0.3
   ExtUtils::Manifest: 1.54
@@ -134,4 +134,4 @@
   MailingList: mailto:module-build at perl.org
   license: http://dev.perl.org/licenses/
   repository: http://github.com/dagolden/module-build/
-version: 0.3622
+version: 0.3624

Modified: branches/upstream/libmodule-build-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/Makefile.PL?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/Makefile.PL (original)
+++ branches/upstream/libmodule-build-perl/current/Makefile.PL Sat Feb 19 18:06:01 2011
@@ -4,7 +4,12 @@
 
 use 5.006001;
 
+
 use lib qw(lib);
+
+# bootstrap configure_requires prereqs
+BEGIN { do 'inc/bootstrap.pl' or die defined($@) ? $@ : $! }
+
 use Module::Build::Compat;
 
 Module::Build::Compat->run_build_pl(args => \@ARGV);

Added: branches/upstream/libmodule-build-perl/current/inc/bootstrap.pl
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/inc/bootstrap.pl?rev=69120&op=file
==============================================================================
--- branches/upstream/libmodule-build-perl/current/inc/bootstrap.pl (added)
+++ branches/upstream/libmodule-build-perl/current/inc/bootstrap.pl Sat Feb 19 18:06:01 2011
@@ -1,0 +1,47 @@
+# bootstrap.pl
+# bootstrap modules in inc/ for use during configuration with
+# either Build.PL or Makefile.PL
+
+my @exit_warn;
+
+END {
+  warn "\nThese additional prerequisites must be installed:\n  requires:\n"
+    if @exit_warn;
+  while( my $h = shift @exit_warn ) {
+    my ($mod, $min) = @$h;
+    warn "    ! $mod (we need version $min)\n";
+  }
+}
+
+BEGIN {
+  if ( ! eval "use Perl::OSType 1 (); 1" ) {
+    print "*** BOOTSTRAPPING Perl::OSType ***\n";
+    push @exit_warn, [ 'Perl::OSType', '1.00' ];
+    delete $INC{'Perl/OSType.pm'};
+    local @INC = @INC;
+    push @INC, 'inc';
+    eval "require Perl::OSType; 1"
+      or die "BOOSTRAP FAIL: $@";
+  }
+  if ( ! eval "use version 0.87 (); 1" ) {
+    print "*** BOOTSTRAPPING version ***\n";
+    push @exit_warn, [ 'version', '0.87' ];
+    delete $INC{'version.pm'};
+    local @INC = @INC;
+    push @INC, 'inc';
+    eval "require MBVersion; 1"
+      or die "BOOSTRAP FAIL: $@";
+  }
+  if ( ! eval "use Module::Metadata 1.000002 (); 1" ) {
+    print "*** BOOTSTRAPPING Module::Metadata ***\n";
+    push @exit_warn, [ 'Module::Metadata', '1.000002' ];
+    delete $INC{'Module/Metadata.pm'};
+    local @INC = @INC;
+    push @INC, 'inc';
+    eval "require Module::Metadata; 1"
+      or die "BOOSTRAP FAIL: $@";
+  }
+}
+
+1;
+

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build.pm Sat Feb 19 18:06:01 2011
@@ -16,7 +16,7 @@
 
 use vars qw($VERSION @ISA);
 @ISA = qw(Module::Build::Base);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Base.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Base.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Base.pm Sat Feb 19 18:06:01 2011
@@ -4,7 +4,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 BEGIN { require 5.00503 }
 
@@ -3317,8 +3317,7 @@
     ( $self->install_sets('core', 'lib'), # lib
       $self->install_sets('core', 'bin'), # bin
       $self->install_sets('site', 'lib'), # site/lib
-    ),File::Spec->rel2abs($self->blib)
-  );
+    ) ), File::Spec->rel2abs($self->blib);
 
   my $podpath = join(":", map { tr,:\\,|/,; $_ } @podpath);
 
@@ -3403,9 +3402,13 @@
       }
 
       $self->log_verbose("P::H::pod2html @opts\n");
-      eval { Pod::Html::pod2html(@opts); 1 }
-        or $self->log_warn("[$htmltool] pod2html( " .
-        join(", ", map { "q{$_}" } @opts) . ") failed: $@");
+      {
+        my $orig = Cwd::getcwd();
+        eval { Pod::Html::pod2html(@opts); 1 }
+          or $self->log_warn("[$htmltool] pod2html( " .
+          join(", ", map { "q{$_}" } @opts) . ") failed: $@");
+        chdir($orig);
+      }
     }
     # We now have to cleanup the resulting html file
     if ( ! -r $tmpfile ) {

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Compat.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Compat.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Compat.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Compat.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 
 use File::Basename ();
 use File::Spec;

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Config.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Config.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Config.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Config.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Config;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Cookbook.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Cookbook.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Cookbook.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Cookbook.pm Sat Feb 19 18:06:01 2011
@@ -1,7 +1,7 @@
 package Module::Build::Cookbook;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 
 
 =head1 NAME

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Dumper.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Dumper.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Dumper.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Dumper.pm Sat Feb 19 18:06:01 2011
@@ -1,7 +1,7 @@
 package Module::Build::Dumper;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 
 # This is just a split-out of a wrapper function to do Data::Dumper
 # stuff "the right way".  See:

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/ModuleInfo.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/ModuleInfo.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/ModuleInfo.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/ModuleInfo.pm Sat Feb 19 18:06:01 2011
@@ -4,7 +4,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 
 require Module::Metadata;

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Notes.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Notes.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Notes.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Notes.pm Sat Feb 19 18:06:01 2011
@@ -4,7 +4,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Data::Dumper;
 use IO::File;

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/PPMMaker.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/PPMMaker.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/PPMMaker.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/PPMMaker.pm Sat Feb 19 18:06:01 2011
@@ -5,7 +5,7 @@
 use vars qw($VERSION);
 use IO::File;
 
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 
 # This code is mostly borrowed from ExtUtils::MM_Unix 6.10_03, with a

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Amiga.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Amiga.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Amiga.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Amiga.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Default.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Default.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Default.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Default.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/EBCDIC.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/EBCDIC.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/EBCDIC.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/EBCDIC.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MPEiX.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MPEiX.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MPEiX.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MPEiX.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MacOS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MacOS.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MacOS.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/MacOS.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 use vars qw(@ISA);

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/RiscOS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/RiscOS.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/RiscOS.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/RiscOS.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Unix.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Unix.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Unix.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Unix.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VMS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VMS.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VMS.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VMS.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 use Config;

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VOS.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VOS.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VOS.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/VOS.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Base;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Windows.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Windows.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Windows.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/Windows.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 
 use Config;

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/aix.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/aix.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/aix.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/aix.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Platform::Unix;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/cygwin.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/cygwin.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/cygwin.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/cygwin.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Platform::Unix;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/darwin.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/darwin.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/darwin.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/darwin.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Platform::Unix;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/os2.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/os2.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/os2.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/Platform/os2.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use Module::Build::Platform::Unix;
 

Modified: branches/upstream/libmodule-build-perl/current/lib/Module/Build/PodParser.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/Module/Build/PodParser.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/Module/Build/PodParser.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/Module/Build/PodParser.pm Sat Feb 19 18:06:01 2011
@@ -2,7 +2,7 @@
 
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 use vars qw(@ISA);
 

Modified: branches/upstream/libmodule-build-perl/current/lib/inc/latest.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/inc/latest.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/inc/latest.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/inc/latest.pm Sat Feb 19 18:06:01 2011
@@ -1,7 +1,7 @@
 package inc::latest;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 
 use Carp;

Modified: branches/upstream/libmodule-build-perl/current/lib/inc/latest/private.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-build-perl/current/lib/inc/latest/private.pm?rev=69120&op=diff
==============================================================================
--- branches/upstream/libmodule-build-perl/current/lib/inc/latest/private.pm (original)
+++ branches/upstream/libmodule-build-perl/current/lib/inc/latest/private.pm Sat Feb 19 18:06:01 2011
@@ -1,7 +1,7 @@
 package inc::latest::private;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.3622';
+$VERSION = '0.3624';
 $VERSION = eval $VERSION;
 
 use File::Spec;




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