r67239 - in /branches/upstream/liblocal-lib-perl/current: Changes META.yml Makefile.PL lib/local/lib.pm

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Mon Jan 10 14:19:55 UTC 2011


Author: carnil
Date: Mon Jan 10 14:19:30 2011
New Revision: 67239

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67239
Log:
[svn-upgrade] new version liblocal-lib-perl (1.008001)

Modified:
    branches/upstream/liblocal-lib-perl/current/Changes
    branches/upstream/liblocal-lib-perl/current/META.yml
    branches/upstream/liblocal-lib-perl/current/Makefile.PL
    branches/upstream/liblocal-lib-perl/current/lib/local/lib.pm

Modified: branches/upstream/liblocal-lib-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocal-lib-perl/current/Changes?rev=67239&op=diff
==============================================================================
--- branches/upstream/liblocal-lib-perl/current/Changes (original)
+++ branches/upstream/liblocal-lib-perl/current/Changes Mon Jan 10 14:19:30 2011
@@ -1,4 +1,7 @@
 Revision history for local::lib
+1.008001
+
+        - Bootstrap Module::Build just like ExtUtils::MakeMaker
 
 1.008000
         - Remove redundant prereqs now that Module::Build 0.36 is required

Modified: branches/upstream/liblocal-lib-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocal-lib-perl/current/META.yml?rev=67239&op=diff
==============================================================================
--- branches/upstream/liblocal-lib-perl/current/META.yml (original)
+++ branches/upstream/liblocal-lib-perl/current/META.yml Mon Jan 10 14:19:30 2011
@@ -26,4 +26,4 @@
   perl: 5.8.1
 resources:
   license: http://dev.perl.org/licenses/
-version: 1.008000
+version: 1.008001

Modified: branches/upstream/liblocal-lib-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocal-lib-perl/current/Makefile.PL?rev=67239&op=diff
==============================================================================
--- branches/upstream/liblocal-lib-perl/current/Makefile.PL (original)
+++ branches/upstream/liblocal-lib-perl/current/Makefile.PL Mon Jan 10 14:19:30 2011
@@ -87,6 +87,9 @@
 
     system($^X, '-MExtUtils::Install 1.43', '-e1');
     my $eui = $? >> 8;
+
+    system($^X, '-MModule::Build 0.36', '-e1');
+    my $mb = $? >> 8;
 
     system($^X, '-MCPAN 1.82', '-e1');
     my $cpan = $? >> 8;
@@ -134,6 +137,9 @@
     if ($eui) {
       $cpan_command .= 'install("ExtUtils::Install"); ';
     }
+    if ($mb) {
+      $cpan_command .= 'install("Module::Build"); ';
+    }
     if ($cpan) {
       $cpan_command .= 'force("install","CPAN"); ';
     }

Modified: branches/upstream/liblocal-lib-perl/current/lib/local/lib.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/liblocal-lib-perl/current/lib/local/lib.pm?rev=67239&op=diff
==============================================================================
--- branches/upstream/liblocal-lib-perl/current/lib/local/lib.pm (original)
+++ branches/upstream/liblocal-lib-perl/current/lib/local/lib.pm Mon Jan 10 14:19:30 2011
@@ -11,7 +11,7 @@
 use Carp ();
 use Config;
 
-our $VERSION = '1.008000'; # 1.7.0
+our $VERSION = '1.008001'; # 1.8.1
 
 our @KNOWN_FLAGS = qw(--self-contained);
 




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