Incorporate changes from CPAN release of ExtUtils-CBuilder
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Sat, 8 Mar 2014 13:45:29 +0000 (13:45 +0000)
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>
Sat, 8 Mar 2014 13:45:29 +0000 (13:45 +0000)
Porting/Maintainers.pl
dist/ExtUtils-CBuilder/Changes
dist/ExtUtils-CBuilder/LICENSE
dist/ExtUtils-CBuilder/Makefile.PL

index 49ecaef..dbc035e 100755 (executable)
@@ -429,7 +429,7 @@ use File::Glob qw(:case);
     },
 
     'ExtUtils::CBuilder' => {
-        'DISTRIBUTION' => 'AMBS/ExtUtils/ExtUtils-CBuilder-0.280212.tar.gz',
+        'DISTRIBUTION' => 'AMBS/ExtUtils/ExtUtils-CBuilder-0.280216.tar.gz',
         'FILES'        => q[dist/ExtUtils-CBuilder],
         'EXCLUDED'     => [
             qw(README.mkdn),
index d93e58e..5c03667 100644 (file)
@@ -1,5 +1,15 @@
 Revision history for Perl extension ExtUtils::CBuilder.
 
+0.280216 - 2014-03-07
+
+  Added:
+
+  - Android support [Brian Fraser and Piotr Roszatycki]
+
+  Fixed:
+
+  - Teach ExtUtils::CBuilder to handle mod2fname properly [Brian Fraser]
+
 0.280212 - 2013-09-08
 
   Fixed:
index 0b4c121..822f88d 100644 (file)
@@ -1,4 +1,4 @@
-This software is copyright (c) 2013 by Ken Williams.
+This software is copyright (c) 2014 by Ken Williams.
 
 This is free software; you can redistribute it and/or modify it under
 the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@ b) the "Artistic License"
 
 --- The GNU General Public License, Version 1, February 1989 ---
 
-This software is Copyright (c) 2013 by Ken Williams.
+This software is Copyright (c) 2014 by Ken Williams.
 
 This is free software, licensed under:
 
@@ -22,7 +22,7 @@ This is free software, licensed under:
                      Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
@@ -272,7 +272,7 @@ That's all there is to it!
 
 --- The Artistic License 1.0 ---
 
-This software is Copyright (c) 2013 by Ken Williams.
+This software is Copyright (c) 2014 by Ken Williams.
 
 This is free software, licensed under:
 
index 4ea6bbc..fb429cd 100644 (file)
@@ -1,4 +1,5 @@
 
+# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.013.
 use strict;
 use warnings;
 
@@ -21,6 +22,7 @@ my %WriteMakefileArgs = (
   "NAME" => "ExtUtils::CBuilder",
   "PREREQ_PM" => {
     "Cwd" => 0,
+    "ExtUtils::MakeMaker" => "6.30",
     "File::Basename" => 0,
     "File::Spec" => "3.13",
     "File::Temp" => 0,
@@ -32,37 +34,31 @@ my %WriteMakefileArgs = (
   "TEST_REQUIRES" => {
     "Test::More" => "0.47"
   },
-  "VERSION" => "0.280212",
+  "VERSION" => "0.280216",
   "test" => {
     "TESTS" => "t/*.t"
   }
 );
 
 
-unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
-  my $tr = delete $WriteMakefileArgs{TEST_REQUIRES};
-  my $br = $WriteMakefileArgs{BUILD_REQUIRES};
-  for my $mod ( keys %$tr ) {
-    if ( exists $br->{$mod} ) {
-      $br->{$mod} = $tr->{$mod} if $tr->{$mod} > $br->{$mod};
-    }
-    else {
-      $br->{$mod} = $tr->{$mod};
-    }
-  }
-}
+my %FallbackPrereqs = (
+  "Cwd" => 0,
+  "ExtUtils::MakeMaker" => "6.30",
+  "File::Basename" => 0,
+  "File::Spec" => "3.13",
+  "File::Temp" => 0,
+  "IO::File" => 0,
+  "IPC::Cmd" => 0,
+  "Perl::OSType" => 1,
+  "Test::More" => "0.47",
+  "Text::ParseWords" => 0
+);
 
-unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
-  my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
-  my $pp = $WriteMakefileArgs{PREREQ_PM};
-  for my $mod ( keys %$br ) {
-    if ( exists $pp->{$mod} ) {
-      $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
-    }
-    else {
-      $pp->{$mod} = $br->{$mod};
-    }
-  }
+
+unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
+  delete $WriteMakefileArgs{TEST_REQUIRES};
+  delete $WriteMakefileArgs{BUILD_REQUIRES};
+  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
 }
 
 delete $WriteMakefileArgs{CONFIGURE_REQUIRES}