From: Marcus Holland-Moritz Date: Thu, 19 Jan 2006 18:44:34 +0000 (+0000) Subject: Upgrade to Devel::PPPort 3.08 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e8b5c247d4b3c38be559b2bcc56140aecb2b5f07;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Devel::PPPort 3.08 p4raw-id: //depot/perl@26914 --- diff --git a/ext/Devel/PPPort/Changes b/ext/Devel/PPPort/Changes index f7ec955..0adb5de 100755 --- a/ext/Devel/PPPort/Changes +++ b/ext/Devel/PPPort/Changes @@ -1,3 +1,8 @@ +3.08 - 2006-01-19 + + * thanks to Craig Berry for fixing my broken ppphtest + * add AUTHOR and ABSTRACT_FROM to Makefile.PL + 3.07 - 2006-01-16 * improve internals documentation in HACKERS diff --git a/ext/Devel/PPPort/META.yml b/ext/Devel/PPPort/META.yml index 4eff2ab..bb9694c 100644 --- a/ext/Devel/PPPort/META.yml +++ b/ext/Devel/PPPort/META.yml @@ -1,10 +1,10 @@ --- #YAML:1.0 name: Devel-PPPort -version: 3.07 -abstract: ~ +version: 3.08 +abstract: Perl/Pollution/Portability license: perl generated_by: ExtUtils::MakeMaker version 6.30_01 -author: ~ +author: Marcus Holland-Moritz distribution_type: module requires: meta-spec: diff --git a/ext/Devel/PPPort/Makefile.PL b/ext/Devel/PPPort/Makefile.PL index f055ae0..6cb3a11 100644 --- a/ext/Devel/PPPort/Makefile.PL +++ b/ext/Devel/PPPort/Makefile.PL @@ -4,9 +4,9 @@ # ################################################################################ # -# $Revision: 17 $ +# $Revision: 19 $ # $Author: mhx $ -# $Date: 2006/01/14 18:07:57 +0100 $ +# $Date: 2006/01/19 19:35:25 +0100 $ # ################################################################################ # @@ -49,6 +49,13 @@ if ($opt{'apicheck'}) { push @clean, qw{ apicheck.c }; } +if (eval $ExtUtils::MakeMaker::VERSION >= 6) { + push @moreopts, AUTHOR => 'Marcus Holland-Moritz '; + if (-f 'PPPort.pm') { + push @moreopts, ABSTRACT_FROM => 'PPPort.pm'; + } +} + if (eval $ExtUtils::MakeMaker::VERSION >= 6.30_01) { print "Setting license tag...\n"; push @moreopts, LICENSE => 'perl'; diff --git a/ext/Devel/PPPort/PPPort.pm b/ext/Devel/PPPort/PPPort.pm index d772df1..a7e8ea9 100644 --- a/ext/Devel/PPPort/PPPort.pm +++ b/ext/Devel/PPPort/PPPort.pm @@ -925,7 +925,7 @@ require DynaLoader; use strict; use vars qw($VERSION @ISA $data); -$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.07 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.08 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; @ISA = qw(DynaLoader); diff --git a/ext/Devel/PPPort/PPPort_pm.PL b/ext/Devel/PPPort/PPPort_pm.PL index 0246b21..ee6ec75 100644 --- a/ext/Devel/PPPort/PPPort_pm.PL +++ b/ext/Devel/PPPort/PPPort_pm.PL @@ -499,7 +499,7 @@ require DynaLoader; use strict; use vars qw($VERSION @ISA $data); -$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.07 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.08 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; @ISA = qw(DynaLoader); diff --git a/ext/Devel/PPPort/parts/inc/ppphtest b/ext/Devel/PPPort/parts/inc/ppphtest index aaf8126..1607db5 100644 --- a/ext/Devel/PPPort/parts/inc/ppphtest +++ b/ext/Devel/PPPort/parts/inc/ppphtest @@ -1,8 +1,8 @@ ################################################################################ ## -## $Revision: 29 $ +## $Revision: 30 $ ## $Author: mhx $ -## $Date: 2006/01/14 23:01:37 +0100 $ +## $Date: 2006/01/19 18:34:14 +0100 $ ## ################################################################################ ## @@ -31,9 +31,9 @@ use Config; my $tmp = 'ppptmp'; my $inc = ''; -my $perl = find_perl(); my $isVMS = $^O eq 'VMS'; my $isMAC = $^O eq 'MacOS'; +my $perl = find_perl(); rmtree($tmp) if -d $tmp; mkpath($tmp) or die "mkpath $tmp: $!\n"; diff --git a/ext/Devel/PPPort/soak b/ext/Devel/PPPort/soak index 23db958..86801a1 100644 --- a/ext/Devel/PPPort/soak +++ b/ext/Devel/PPPort/soak @@ -32,7 +32,7 @@ use Pod::Usage; use List::Util qw(max); use Config; -my $VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.07 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +my $VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.08 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; $| = 1; my $verbose = 0;