In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/b367c45de1e716917350f403e8cac1658767f7a6?hp=18391b266d7c701eef1760fa9fddfc3e43ebcfcd>

- Log -----------------------------------------------------------------
commit b367c45de1e716917350f403e8cac1658767f7a6
Author: Steve Hay <[email protected]>
Date:   Thu Mar 19 21:09:42 2015 +0000

    Upgrade parent from version 0.228 to 0.232
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl     |  2 +-
 cpan/parent/lib/parent.pm  |  2 +-
 cpan/parent/t/parent-pmc.t | 12 +++++++++++-
 pod/perldelta.pod          |  6 ++++++
 4 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index a21e843..433987c 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -842,7 +842,7 @@ use File::Glob qw(:case);
     },
 
     'parent' => {
-        'DISTRIBUTION' => 'CORION/parent-0.228.tar.gz',
+        'DISTRIBUTION' => 'CORION/parent-0.232.tar.gz',
         'FILES'        => q[cpan/parent],
     },
 
diff --git a/cpan/parent/lib/parent.pm b/cpan/parent/lib/parent.pm
index b31603b..445ed12 100644
--- a/cpan/parent/lib/parent.pm
+++ b/cpan/parent/lib/parent.pm
@@ -1,7 +1,7 @@
 package parent;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.228';
+$VERSION = '0.232';
 
 sub import {
     my $class = shift;
diff --git a/cpan/parent/t/parent-pmc.t b/cpan/parent/t/parent-pmc.t
index 851a438..a8708b4 100644
--- a/cpan/parent/t/parent-pmc.t
+++ b/cpan/parent/t/parent-pmc.t
@@ -13,8 +13,18 @@ use Config;
 use lib 't/lib';
 
 plan skip_all => ".pmc are only available with 5.6 and later" if $] < 5.006;
+my $no_pmc;
+
+if (Config->can('non_bincompat_options')) {
+    foreach(Config::non_bincompat_options()) {
+       if($_ eq "PERL_DISABLE_PMC"){
+           $no_pmc = 1;
+           last;
+       }
+    }
+};
 plan skip_all => ".pmc are disabled in this perl"
-    if $Config{ccflags} =~ /(?<!\w)-DPERL_DISABLE_PMC\b/;
+    if $no_pmc;
 plan tests => 3;
 
 use vars qw($got_here);
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index f4492d4..64fb24b 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -204,6 +204,12 @@ L<Module::CoreList> has been reverted from version 
5.20150220 to 5.20150320.
 
 =item *
 
+L<parent> has been upgraded from version 0.228 to 0.232.
+
+No changes to installed files other than the version bump.
+
+=item *
+
 L<Pod::Functions> has been upgraded from version 1.08 to 1.09.
 
 =item *

--
Perl5 Master Repository

Reply via email to