In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/d341332470b830e4aae27a9428c85f7dc461c2bb?hp=0a17873464a4d0d29483f0568939e84ea1ea5361>

- Log -----------------------------------------------------------------
commit d341332470b830e4aae27a9428c85f7dc461c2bb
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Sun Dec 12 22:08:49 2010 +0000

    Update ExtUtils-CBuilder to CPAN version 0.2802
    
      [DELTA]
    
      0.2802 - Sun Dec 12 07:22:43 EST 2010
    
        Fixed:
    
        - Incorporated another t/04-base.t fix from bleadperl
          [Chris Williams]
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl                             |    2 +-
 cpan/ExtUtils-CBuilder/Changes                     |    7 +++++++
 cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm    |    2 +-
 .../lib/ExtUtils/CBuilder/Base.pm                  |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/Unix.pm         |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/VMS.pm          |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/Windows.pm      |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm  |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm  |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/aix.pm          |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/cygwin.pm       |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/darwin.pm       |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/dec_osf.pm      |    2 +-
 .../lib/ExtUtils/CBuilder/Platform/os2.pm          |    2 +-
 pod/perldelta.pod                                  |    2 +-
 16 files changed, 22 insertions(+), 15 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index b8b28a2..32efb16 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -551,7 +551,7 @@ use File::Glob qw(:case);
     'ExtUtils::CBuilder' =>
        {
        'MAINTAINER'    => 'kwilliams',
-       'DISTRIBUTION'  => 'DAGOLDEN/ExtUtils-CBuilder-0.2801.tar.gz',
+       'DISTRIBUTION'  => 'DAGOLDEN/ExtUtils-CBuilder-0.2802.tar.gz',
        'FILES'         => q[cpan/ExtUtils-CBuilder],
        'UPSTREAM'      => 'cpan',
        },
diff --git a/cpan/ExtUtils-CBuilder/Changes b/cpan/ExtUtils-CBuilder/Changes
index 815e5d7..41b4de2 100644
--- a/cpan/ExtUtils-CBuilder/Changes
+++ b/cpan/ExtUtils-CBuilder/Changes
@@ -1,5 +1,12 @@
 Revision history for Perl extension ExtUtils::CBuilder.
 
+0.2802 - Sun Dec 12 07:22:43 EST 2010
+
+  Fixed:
+
+  - Incorporated another t/04-base.t fix from bleadperl
+    [Chris Williams]
+
 0.2801 - Wed Dec  8 21:36:56 EST 2010
 
   Fixed:
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
index 58919ba..e93e4f3 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm
@@ -5,7 +5,7 @@ use File::Path ();
 use File::Basename ();
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 $VERSION = eval $VERSION;
 
 # Okay, this is the brute-force method of finding out what kind of
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm
index c8e11a7..b1c5dc5 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm
@@ -12,7 +12,7 @@ use IPC::Cmd qw(can_run);
 use File::Temp qw(tempfile);
 
 use vars qw($VERSION);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 
 # More details about C/C++ compilers:
 # http://developers.sun.com/sunstudio/documentation/product/compiler.jsp
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm
index ef8a5c7..4bddff1 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Base;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 sub link_executable {
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
index ad83ee2..c9ad1d9 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Base;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 use File::Spec::Functions qw(catfile catdir);
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm
index 554f276..0fdd370 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm
@@ -10,7 +10,7 @@ use ExtUtils::CBuilder::Base;
 use IO::File;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Base);
 
 =begin comment
diff --git 
a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
index 7a02640..4810e79 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm
@@ -1,7 +1,7 @@
 package ExtUtils::CBuilder::Platform::Windows::BCC;
 
 use vars qw($VERSION);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 
 sub format_compiler_cmd {
   my ($self, %spec) = @_;
diff --git 
a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
index 95b36a8..98f1176 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm
@@ -1,7 +1,7 @@
 package ExtUtils::CBuilder::Platform::Windows::GCC;
 
 use vars qw($VERSION);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 
 sub format_compiler_cmd {
   my ($self, %spec) = @_;
diff --git 
a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
index 319ba26..df1b7ce 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm
@@ -1,7 +1,7 @@
 package ExtUtils::CBuilder::Platform::Windows::MSVC;
 
 use vars qw($VERSION);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 
 sub arg_exec_file {
   my ($self, $file) = @_;
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm
index 0702cc5..4789ff7 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm
@@ -5,7 +5,7 @@ use ExtUtils::CBuilder::Platform::Unix;
 use File::Spec;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 sub need_prelink { 1 }
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm
index 5730896..442bbd8 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm
@@ -5,7 +5,7 @@ use File::Spec;
 use ExtUtils::CBuilder::Platform::Unix;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 # TODO: If a specific exe_file name is requested, if the exe created
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm
index ef86ea8..89565b8 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Platform::Unix;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 sub compile {
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
index 3f13891..2798c69 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm
@@ -6,7 +6,7 @@ use File::Spec;
 
 use vars qw($VERSION @ISA);
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 
 sub link_executable {
   my $self = shift;
diff --git a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm 
b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm
index 7e974b4..e4f161d 100644
--- a/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm
+++ b/cpan/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm
@@ -4,7 +4,7 @@ use strict;
 use ExtUtils::CBuilder::Platform::Unix;
 
 use vars qw($VERSION @ISA);
-$VERSION = '0.2801';
+$VERSION = '0.2802';
 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
 
 sub need_prelink { 1 }
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index c48f09c..3960ad5 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -233,7 +233,7 @@ accepts all POSIX filenames.
 
 =item *
 
-C<ExtUtils::CBuilder> has been upgraded from 0.2703 to 0.2801
+C<ExtUtils::CBuilder> has been upgraded from 0.2703 to 0.2802
 
 =item *
 

--
Perl5 Master Repository

Reply via email to