summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteffen Mueller <smueller@cpan.org>2011-07-27 22:24:09 +0200
committerSteffen Mueller <smueller@cpan.org>2011-07-27 22:36:55 +0200
commitb21842bdb5588bb8eb651224624910f5b57d694a (patch)
treecdb78df9bf67f7e3404f5423c356d8e49b09a988
parentef4474b5b7af564ed5f0979a4019b7fb79bb0233 (diff)
downloadperl-b21842bdb5588bb8eb651224624910f5b57d694a.tar.gz
ExtUtils::ParseXS requires 5.8.1
(This is also the update to CPAN's 3.00_04).
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--dist/ExtUtils-ParseXS/Changes4
-rw-r--r--dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm2
3 files changed, 5 insertions, 3 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 69f09ebbd5..26d12d6bd8 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -752,7 +752,7 @@ use File::Glob qw(:case);
'ExtUtils::ParseXS' =>
{
'MAINTAINER' => 'smueller',
- 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.00_03.tar.gz',
+ 'DISTRIBUTION' => 'SMUELLER/ExtUtils-ParseXS-3.00_04.tar.gz',
'FILES' => q[dist/ExtUtils-ParseXS],
'UPSTREAM' => 'blead',
},
diff --git a/dist/ExtUtils-ParseXS/Changes b/dist/ExtUtils-ParseXS/Changes
index f7d321357f..ccb33e6514 100644
--- a/dist/ExtUtils-ParseXS/Changes
+++ b/dist/ExtUtils-ParseXS/Changes
@@ -1,6 +1,8 @@
Revision history for Perl extension ExtUtils::ParseXS.
-3.00_04 -
+3.00_04 - Wed Jul 27 22:22:00 CET 2011
+
+ - Require perl 5.8.1.
- Patches from CPAN RT #53938, #61908
Both of these are attempts to fix win32 problems:
diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
index 0fcae561bf..8f5fe4ae9b 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
@@ -1,7 +1,7 @@
package ExtUtils::ParseXS;
use strict;
-use 5.006; # We use /??{}/ in regexes
+use 5.008001; # We use /??{}/ in regexes
use Cwd;
use Config;
use Exporter;