Upgrade to Devel::PPPort 3.08
Marcus Holland-Moritz [Thu, 19 Jan 2006 18:44:34 +0000 (18:44 +0000)]
p4raw-id: //depot/perl@26914

ext/Devel/PPPort/Changes
ext/Devel/PPPort/META.yml
ext/Devel/PPPort/Makefile.PL
ext/Devel/PPPort/PPPort.pm
ext/Devel/PPPort/PPPort_pm.PL
ext/Devel/PPPort/parts/inc/ppphtest
ext/Devel/PPPort/soak

index f7ec955..0adb5de 100755 (executable)
@@ -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
index 4eff2ab..bb9694c 100644 (file)
@@ -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 <mhx@cpan.org>
 distribution_type:   module
 requires:     
 meta-spec:
index f055ae0..6cb3a11 100644 (file)
@@ -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 <mhx@cpan.org>';
+  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';
index d772df1..a7e8ea9 100644 (file)
@@ -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);
 
index 0246b21..ee6ec75 100644 (file)
@@ -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);
 
index aaf8126..1607db5 100644 (file)
@@ -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";
index 23db958..86801a1 100644 (file)
@@ -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;