diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2006-08-14 19:43:23 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2006-08-14 19:43:23 +0000 |
commit | d31fb070b291649b455f137f48c7f21c85ad7d6a (patch) | |
tree | 4ade64b3218b0f242ab5c7286428db01636bc8cd /ext/Devel | |
parent | ffb080959d31b576bf1929ea1d80ae0d7c0f5a94 (diff) | |
download | perl-d31fb070b291649b455f137f48c7f21c85ad7d6a.tar.gz |
Upgrade to Devel::PPPort 3.10
p4raw-id: //depot/perl@28714
Diffstat (limited to 'ext/Devel')
-rwxr-xr-x | ext/Devel/PPPort/Changes | 4 | ||||
-rw-r--r-- | ext/Devel/PPPort/PPPort_pm.PL | 15 | ||||
-rw-r--r-- | ext/Devel/PPPort/soak | 2 |
3 files changed, 11 insertions, 10 deletions
diff --git a/ext/Devel/PPPort/Changes b/ext/Devel/PPPort/Changes index a8b4770ef7..330eb0c23d 100755 --- a/ext/Devel/PPPort/Changes +++ b/ext/Devel/PPPort/Changes @@ -1,3 +1,7 @@ +3.10 - 2006-08-14 + + * remove timestamp from generated ppport.h + 3.09_02 - 2006-07-25 * added support for the following API diff --git a/ext/Devel/PPPort/PPPort_pm.PL b/ext/Devel/PPPort/PPPort_pm.PL index fb98ced47b..b291b4c495 100644 --- a/ext/Devel/PPPort/PPPort_pm.PL +++ b/ext/Devel/PPPort/PPPort_pm.PL @@ -4,9 +4,9 @@ # ################################################################################ # -# $Revision: 48 $ +# $Revision: 49 $ # $Author: mhx $ -# $Date: 2006/07/24 21:03:14 +0200 $ +# $Date: 2006/08/14 21:26:31 +0200 $ # ################################################################################ # @@ -335,9 +335,9 @@ __DATA__ # ################################################################################ # -# $Revision: 48 $ +# $Revision: 49 $ # $Author: mhx $ -# $Date: 2006/07/24 21:03:14 +0200 $ +# $Date: 2006/08/14 21:26:31 +0200 $ # ################################################################################ # @@ -498,16 +498,14 @@ package Devel::PPPort; use strict; use vars qw($VERSION $data); -$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.09_02 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.10 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; sub _init_data { $data = do { local $/; <DATA> }; - my $now = localtime; my $pkg = 'Devel::PPPort'; $data =~ s/__PERL_VERSION__/$]/g; $data =~ s/__VERSION__/$VERSION/g; - $data =~ s/__DATE__/$now/g; $data =~ s/__PKG__/$pkg/g; $data =~ s/^\|>//gm; } @@ -537,8 +535,7 @@ __DATA__ ppport.h -- Perl/Pollution/Portability Version __VERSION__ - Automatically created by __PKG__ running under - perl __PERL_VERSION__ on __DATE__. + Automatically created by __PKG__ running under perl __PERL_VERSION__. Do NOT edit this file directly! -- Edit PPPort_pm.PL and the includes in parts/inc/ instead. diff --git a/ext/Devel/PPPort/soak b/ext/Devel/PPPort/soak index 4a1d9f0590..613e17c30d 100644 --- a/ext/Devel/PPPort/soak +++ b/ext/Devel/PPPort/soak @@ -33,7 +33,7 @@ use File::Find; use List::Util qw(max); use Config; -my $VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.09_02 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; +my $VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.10 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' }; $| = 1; my %OPT = ( |