In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/3a42395c067611139a8730e53bb1d25a2864e85a?hp=a242eeb4c06c63af5ec7e01d5602b14bde94aa81>
- Log ----------------------------------------------------------------- commit 3a42395c067611139a8730e53bb1d25a2864e85a Author: Jesse Vincent <[email protected]> Date: Thu Dec 10 13:20:27 2009 -0500 Notes on why PathTools is in Cwd/ M Porting/Maintainers.pl commit 9c7b20a98a1d5faa39d9d097a77c2bf4a0a19daa Author: Jesse Vincent <[email protected]> Date: Thu Dec 10 13:14:24 2009 -0500 Update Cwd / PathTools to 3.31 to get us a non-devel version number based on a chat with Steffen. No code changes. M Porting/Maintainers.pl M cpan/Cwd/Changes M cpan/Cwd/Cwd.pm M cpan/Cwd/lib/File/Spec.pm ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 5 ++++- cpan/Cwd/Changes | 14 ++++++++++++++ cpan/Cwd/Cwd.pm | 2 +- cpan/Cwd/lib/File/Spec.pm | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index a3e5e65..cd3fff0 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1131,11 +1131,14 @@ use File::Glob qw(:case); 'PathTools' => { 'MAINTAINER' => 'kwilliams', - 'DISTRIBUTION' => 'SMUELLER/PathTools-3.30_02.tar.gz', + 'DISTRIBUTION' => 'SMUELLER/PathTools-3.31.tar.gz', 'FILES' => q[cpan/Cwd], 'EXCLUDED' => [ qr{^t/lib/Test/} ], 'CPAN' => 1, 'UPSTREAM' => "cpan", + # NOTE: PathTools is in cpan/Cwd/ because it contains Cwd.xs and + # something, possibly Makefile.SH, makes an assumption that the + # leafname of some file corresponds with the pathname of the directory. }, 'perlebcdic' => diff --git a/cpan/Cwd/Changes b/cpan/Cwd/Changes index 29d0113..63484e1 100644 --- a/cpan/Cwd/Changes +++ b/cpan/Cwd/Changes @@ -1,5 +1,19 @@ Revision history for Perl distribution PathTools. +3.31 - Sun Nov 1 15:15:00 2009 + +- Do not pack a Build.PL to avoid a circular dependency involving + ExtUtils::CBuilder (PathTools RT #50749) + +3.30_02 - Tue Sep 29 08:17:00 2009 + +- Remove more special logic required for core perl. + +3.30_01 - Mon Sep 21 14:39:00 2009 + +- Merge changes from core perl. + (Mostly changes regarding the lib->ext migration) + 3.30 - Sun May 10 10:55:00 2009 - Promote to stable release. diff --git a/cpan/Cwd/Cwd.pm b/cpan/Cwd/Cwd.pm index bc2f3db..a5e2cda 100644 --- a/cpan/Cwd/Cwd.pm +++ b/cpan/Cwd/Cwd.pm @@ -171,7 +171,7 @@ use strict; use Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); -$VERSION = '3.3002'; +$VERSION = '3.31'; my $xs_version = $VERSION; $VERSION = eval $VERSION; diff --git a/cpan/Cwd/lib/File/Spec.pm b/cpan/Cwd/lib/File/Spec.pm index 839e2aa..40c7316 100644 --- a/cpan/Cwd/lib/File/Spec.pm +++ b/cpan/Cwd/lib/File/Spec.pm @@ -3,7 +3,7 @@ package File::Spec; use strict; use vars qw(@ISA $VERSION); -$VERSION = '3.30'; +$VERSION = '3.31'; $VERSION = eval $VERSION; my %module = (MacOS => 'Mac', -- Perl5 Master Repository
