ExtUtils::MakeMaker 6.55_02
David Mitchell [Wed, 5 Aug 2009 19:46:32 +0000 (20:46 +0100)]
31 files changed:
Porting/Maintainers.pl
lib/ExtUtils/Changes
lib/ExtUtils/Command/MM.pm
lib/ExtUtils/Liblist.pm
lib/ExtUtils/Liblist/Kid.pm
lib/ExtUtils/MM.pm
lib/ExtUtils/MM_AIX.pm
lib/ExtUtils/MM_Any.pm
lib/ExtUtils/MM_BeOS.pm
lib/ExtUtils/MM_Cygwin.pm
lib/ExtUtils/MM_DOS.pm
lib/ExtUtils/MM_Darwin.pm
lib/ExtUtils/MM_MacOS.pm
lib/ExtUtils/MM_NW5.pm
lib/ExtUtils/MM_OS2.pm
lib/ExtUtils/MM_QNX.pm
lib/ExtUtils/MM_UWIN.pm
lib/ExtUtils/MM_Unix.pm
lib/ExtUtils/MM_VMS.pm
lib/ExtUtils/MM_VOS.pm
lib/ExtUtils/MM_Win32.pm
lib/ExtUtils/MM_Win95.pm
lib/ExtUtils/MY.pm
lib/ExtUtils/MakeMaker.pm
lib/ExtUtils/MakeMaker/Config.pm
lib/ExtUtils/Mkbootstrap.pm
lib/ExtUtils/Mksymlists.pm
lib/ExtUtils/t/00compile.t
lib/ExtUtils/t/prefixify.t
lib/ExtUtils/testlib.pm
t/lib/MakeMaker/Test/Utils.pm

index 3a2261c..96737d4 100755 (executable)
@@ -695,7 +695,7 @@ package Maintainers;
     'ExtUtils::MakeMaker' =>
        {
        'MAINTAINER'    => 'mschwern',
-       'DISTRIBUTION'  => 'MSCHWERN/ExtUtils-MakeMaker-6.55_01.tar.gz',
+       'DISTRIBUTION'  => 'MSCHWERN/ExtUtils-MakeMaker-6.55_02.tar.gz',
                            # note that t/lib/TieOut.pm is included in
                            # more than one distro
        'FILES'         => q[lib/ExtUtils/{Liblist,MakeMaker,Mkbootstrap,Mksymlists,MM*,MY,testlib}.pm
index 591f958..2943c53 100644 (file)
@@ -1,3 +1,13 @@
+6.55_02  Wed Aug  5 00:36:36 PDT 2009
+    Feature Changes
+    * PREFIX now applies to relative directories.  This is a change since
+      6.20 when they were ignored.  Its necessary for relocatable Perls.
+
+    VMS
+    * Refactoring of "MakeMaker Parameters" section in 6.55_01 broke VMS.
+      (Craig Berry)
+
+
 6.55_01  Tue Jul 14 15:53:30 PDT 2009
     Test Fixes
     * The tests got a bit overzealous and removed the LIB environment variable
       causing warnings when generating the Makefile.
 
 6.06_03 Sat Mar 29 19:44:53 PST 2003
-    - Added AUTHOR and ABSTRACT_FROM info for ppd generation.
+    - Added AUTHOR and ABSTRACT_FROM info to Makefile.PL for ppd generation.
     - Added echo() method to portably echo text to a file.
     - Worked around 5.8.0 eval 'require Foo::Bar' bug causing MakeMaker
       to think modules weren't installed.
index bebddd8..d4a0ef7 100644 (file)
@@ -10,7 +10,7 @@ our @ISA = qw(Exporter);
 
 our @EXPORT  = qw(test_harness pod2man perllocal_install uninstall 
                   warn_if_old_packlist);
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 my $Is_VMS = $^O eq 'VMS';
 
index 6d91117..fb9977b 100644 (file)
@@ -2,7 +2,7 @@ package ExtUtils::Liblist;
 
 use strict;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 use File::Spec;
 require ExtUtils::Liblist::Kid;
index 88826c2..380d4f8 100644 (file)
@@ -9,7 +9,7 @@ use 5.006;
 # Broken out of MakeMaker from version 4.11
 
 use strict;
-our $VERSION = 6.55_01;
+our $VERSION = 6.55_02;
 
 use Config;
 use Cwd 'cwd';
index fc75501..4694f3f 100644 (file)
@@ -3,7 +3,7 @@ package ExtUtils::MM;
 use strict;
 use ExtUtils::MakeMaker::Config;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::Liblist;
 require ExtUtils::MakeMaker;
index 10e4fd4..0f27d17 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::MM_AIX;
 
 use strict;
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Unix;
 our @ISA = qw(ExtUtils::MM_Unix);
index 0af50e1..a7afe20 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::MM_Any;
 
 use strict;
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 use Carp;
 use File::Spec;
index a85831a..168d23d 100644 (file)
@@ -26,7 +26,7 @@ require ExtUtils::MM_Any;
 require ExtUtils::MM_Unix;
 
 our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 
 =item os_flavor
index 4618929..9cc7522 100644 (file)
@@ -9,7 +9,7 @@ require ExtUtils::MM_Unix;
 require ExtUtils::MM_Win32;
 our @ISA = qw( ExtUtils::MM_Unix );
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 
 =head1 NAME
index 24eec2f..84bedea 100644 (file)
@@ -2,7 +2,7 @@ package ExtUtils::MM_DOS;
 
 use strict;
 
-our $VERSION = 6.55_01;
+our $VERSION = 6.55_02;
 
 require ExtUtils::MM_Any;
 require ExtUtils::MM_Unix;
index 62baeff..d26c0a1 100644 (file)
@@ -7,7 +7,7 @@ BEGIN {
     our @ISA = qw( ExtUtils::MM_Unix );
 }
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 
 =head1 NAME
index e134723..bab7ab9 100644 (file)
@@ -2,7 +2,7 @@ package ExtUtils::MM_MacOS;
 
 use strict;
 
-our $VERSION = 6.55_01;
+our $VERSION = 6.55_02;
 
 sub new {
     die <<'UNSUPPORTED';
index 9a40968..950f175 100644 (file)
@@ -22,7 +22,7 @@ use strict;
 use ExtUtils::MakeMaker::Config;
 use File::Basename;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Win32;
 our @ISA = qw(ExtUtils::MM_Win32);
index 658d4ea..73c1819 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use ExtUtils::MakeMaker qw(neatvalue);
 use File::Spec;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Any;
 require ExtUtils::MM_Unix;
index af98792..df6e571 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::MM_QNX;
 
 use strict;
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Unix;
 our @ISA = qw(ExtUtils::MM_Unix);
index bec378e..d3f2949 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::MM_UWIN;
 
 use strict;
-our $VERSION = 6.55_01;
+our $VERSION = 6.55_02;
 
 require ExtUtils::MM_Unix;
 our @ISA = qw(ExtUtils::MM_Unix);
index 32f1272..ad28b22 100644 (file)
@@ -15,7 +15,7 @@ use ExtUtils::MakeMaker qw($Verbose neatvalue);
 
 # If we make $VERSION an our variable parse_version() breaks
 use vars qw($VERSION);
-$VERSION = '6.55_01';
+$VERSION = '6.55_02';
 
 require ExtUtils::MM_Any;
 our @ISA = qw(ExtUtils::MM_Any);
@@ -2986,7 +2986,7 @@ sub prefixify {
     print STDERR "  prefixify $var => $path\n" if $Verbose >= 2;
     print STDERR "    from $sprefix to $rprefix\n" if $Verbose >= 2;
 
-    if( $self->{ARGS}{PREFIX} && $self->file_name_is_absolute($path) && 
+    if( $self->{ARGS}{PREFIX} &&
         $path !~ s{^\Q$sprefix\E\b}{$rprefix}s ) 
     {
 
index 79267ca..492a120 100644 (file)
@@ -15,7 +15,7 @@ BEGIN {
 
 use File::Basename;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Any;
 require ExtUtils::MM_Unix;
index e056e2a..3a7ec87 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::MM_VOS;
 
 use strict;
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Unix;
 our @ISA = qw(ExtUtils::MM_Unix);
index 86a1199..1a5bbf0 100644 (file)
@@ -27,7 +27,7 @@ use ExtUtils::MakeMaker qw( neatvalue );
 require ExtUtils::MM_Any;
 require ExtUtils::MM_Unix;
 our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 $ENV{EMXSHELL} = 'sh'; # to run `commands`
 
index 7fd9639..0c04f83 100644 (file)
@@ -2,7 +2,7 @@ package ExtUtils::MM_Win95;
 
 use strict;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require ExtUtils::MM_Win32;
 our @ISA = qw(ExtUtils::MM_Win32);
index 6e65d78..c1a8c94 100644 (file)
@@ -3,7 +3,7 @@ package ExtUtils::MY;
 use strict;
 require ExtUtils::MM;
 
-our $VERSION = 6.55_01;
+our $VERSION = 6.55_02;
 our @ISA = qw(ExtUtils::MM);
 
 {
index f9d7c56..893c0bf 100644 (file)
@@ -18,7 +18,7 @@ our @Overridable;
 my @Prepend_parent;
 my %Recognized_Att_Keys;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 # Emulate something resembling CVS $Revision$
 (our $Revision = $VERSION) =~ s{_}{};
@@ -1774,7 +1774,7 @@ If set to 'none', no man pages will be installed.
 =item INSTALLVENDORSCRIPT
 
 Used by 'make install' which copies files from INST_SCRIPT to this
-directory if INSTALLDIRS is set to is set to vendor.
+directory if INSTALLDIRS is set to vendor.
 
 =item INST_ARCHLIB
 
index 24f48b4..9c99f7d 100644 (file)
@@ -2,7 +2,7 @@ package ExtUtils::MakeMaker::Config;
 
 use strict;
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 use Config ();
 
index c7f8fe7..f1b47f6 100644 (file)
@@ -3,7 +3,7 @@ package ExtUtils::Mkbootstrap;
 # There's just too much Dynaloader incest here to turn on strict vars.
 use strict 'refs';
 
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 require Exporter;
 our @ISA = ('Exporter');
index a1a7c92..9b133f7 100644 (file)
@@ -10,7 +10,7 @@ use Config;
 
 our @ISA = qw(Exporter);
 our @EXPORT = qw(&Mksymlists);
-our $VERSION = '6.55_01';
+our $VERSION = '6.55_02';
 
 sub Mksymlists {
     my(%spec) = @_;
index 7d06484..cadfe55 100644 (file)
@@ -10,8 +10,6 @@ BEGIN {
 }
 chdir 't';
 
-use File::Find;
-use File::Spec;
 use Test::More;
 
 my $Has_Test_Pod;
@@ -19,12 +17,12 @@ BEGIN {
     $Has_Test_Pod = eval 'use Test::Pod 0.95; 1';
 }
 
-chdir File::Spec->updir;
-my $manifest = File::Spec->catfile('MANIFEST');
+chdir "..";
+my $manifest = "MANIFEST";
 open(my $manifest_fh, "<", $manifest) or die "Can't open $manifest: $!";
 my @modules = map { m{^lib/(\S+)}; $1 } 
-              grep { m{^lib/ExtUtils/\S*\.pm} } 
-              grep { !m{/t/} } <$manifest_fh>;
+              grep { m{^lib/\S+\.pm} } 
+              <$manifest_fh>;
 chomp @modules;
 close $manifest_fh;
 
index b5bf139..011b77c 100644 (file)
@@ -17,7 +17,7 @@ if( $^O eq 'VMS' ) {
     plan skip_all => 'prefixify works differently on VMS';
 }
 else {
-    plan tests => 3;
+    plan tests => 4;
 }
 use ExtUtils::MakeMaker::Config;
 use File::Spec;
@@ -38,6 +38,10 @@ $mm->prefixify('installbin', 'wibble', 'something', $default);
 is( $mm->{INSTALLBIN}, File::Spec->catdir('something', $default),
                                             'prefixify w/defaults and PREFIX');
 
+$mm->prefixify('installbin', '../wibble', 'something', $default);
+is( $mm->{INSTALLBIN}, File::Spec->catdir('something', $default),
+                                            'relative paths + PREFIX');
+
 SKIP: {
     skip "Test for DOSish prefixification", 1 unless $Is_Dosish;
 
index e11fd32..b1231e2 100644 (file)
@@ -3,7 +3,7 @@ package ExtUtils::testlib;
 use strict;
 use warnings;
 
-our $VERSION = 6.55_01;
+our $VERSION = 6.55_02;
 
 use Cwd;
 use File::Spec;
index 7e5d5fc..b81791d 100644 (file)
@@ -290,7 +290,7 @@ sub run {
 
     use ExtUtils::MM;
 
-    # Unix, modern Windows and OS/2 from 5.005_54 up can handle can handle 2>&1 
+    # Unix, modern Windows and OS/2 from 5.005_54 up can handle 2>&1 
     # This makes our failure diagnostics nicer to read.
     if( MM->os_flavor_is('Unix')                                   or
         (MM->os_flavor_is('Win32') and !MM->os_flavor_is('Win9x')) or