Update ExtUtils-CBuilder to CPAN version 0.2801
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Sat, 11 Dec 2010 16:41:50 +0000 (16:41 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Sat, 11 Dec 2010 16:41:50 +0000 (16:41 +0000)
  [DELTA]

  0.2801 - Wed Dec  8 21:36:56 EST 2010

    Fixed:

    - Fixed spurious t/04-base.t failure when run from Perl core
      [David Golden]

16 files changed:
Porting/Maintainers.pl
cpan/ExtUtils-CBuilder/Changes
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm
pod/perldelta.pod

index 691f7a5..cf7a800 100755 (executable)
@@ -551,7 +551,7 @@ use File::Glob qw(:case);
     'ExtUtils::CBuilder' =>
        {
        'MAINTAINER'    => 'kwilliams',
-       'DISTRIBUTION'  => 'DAGOLDEN/ExtUtils-CBuilder-0.2800.tar.gz',
+       'DISTRIBUTION'  => 'DAGOLDEN/ExtUtils-CBuilder-0.2801.tar.gz',
        'FILES'         => q[cpan/ExtUtils-CBuilder],
        'UPSTREAM'      => 'cpan',
        },
index b2d95fe..815e5d7 100644 (file)
@@ -1,5 +1,12 @@
 Revision history for Perl extension ExtUtils::CBuilder.
 
+0.2801 - Wed Dec  8 21:36:56 EST 2010
+
+  Fixed:
+
+  - Fixed spurious t/04-base.t failure when run from Perl core
+    [David Golden]
+
 0.2800 - Mon Dec  6 16:05:46 EST 2010
 
   - No changes from 0.27_07
index 75fb366..58919ba 100644 (file)
@@ -5,7 +5,7 @@ use File::Path ();
 use File::Basename ();
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 $VERSION = eval $VERSION;
 
 # Okay, this is the brute-force method of finding out what kind of
index 83319e8..c8e11a7 100644 (file)
@@ -12,7 +12,7 @@ use IPC::Cmd qw(can_run);
 use File::Temp qw(tempfile);
 
 use vars qw($VERSION);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 
 # More details about C/C++ compilers:
 # http://developers.sun.com/sunstudio/documentation/product/compiler.jsp
index 8665ac9..ef8a5c7 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Base;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 sub link_executable {
index 8800f8a..ad83ee2 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Base;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 use File::Spec::Functions qw(catfile catdir);
index 97576c8..554f276 100644 (file)
@@ -10,7 +10,7 @@ use ExtUtils::CBuilder::Base;
 use IO::File;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 =begin comment
index 6abade1..7a02640 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::CBuilder::Platform::Windows::BCC;
 
 use vars qw($VERSION);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 
 sub format_compiler_cmd {
   my ($self, %spec) = @_;
index d5ff8f4..95b36a8 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::CBuilder::Platform::Windows::GCC;
 
 use vars qw($VERSION);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 
 sub format_compiler_cmd {
   my ($self, %spec) = @_;
index d5d5e26..319ba26 100644 (file)
@@ -1,7 +1,7 @@
 package ExtUtils::CBuilder::Platform::Windows::MSVC;
 
 use vars qw($VERSION);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 
 sub arg_exec_file {
   my ($self, $file) = @_;
index 4fdcfa8..0702cc5 100644 (file)
@@ -5,7 +5,7 @@ use ExtUtils::CBuilder::Platform::Unix;
 use File::Spec;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 sub need_prelink { 1 }
index e02c13d..5730896 100644 (file)
@@ -5,7 +5,7 @@ use File::Spec;
 use ExtUtils::CBuilder::Platform::Unix;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 # TODO: If a specific exe_file name is requested, if the exe created
index 19ec013..ef86ea8 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Platform::Unix;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 sub compile {
index b613cd6..3f13891 100644 (file)
@@ -6,7 +6,7 @@ use File::Spec;
 
 use vars qw($VERSION @ISA);
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 
 sub link_executable {
   my $self = shift;
index 3624d5f..7e974b4 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Platform::Unix;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2800';
+$VERSION = '0.2801';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 sub need_prelink { 1 }
index 6e1d87b..79d5985 100644 (file)
@@ -222,7 +222,7 @@ XXX
 
 =item *
 
-C<ExtUtils::CBuilder> has been upgraded from 0.2703 to 0.2800
+C<ExtUtils::CBuilder> has been upgraded from 0.2703 to 0.2801
 
 =item *