In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d9450ee2a9b1ca2063cf115b8a2b2dd9d73d30b3?hp=7b1f040f113ce456626b3d1bdccddfe15a5bf9c1>
- Log ----------------------------------------------------------------- commit d9450ee2a9b1ca2063cf115b8a2b2dd9d73d30b3 Author: David Mitchell <[email protected]> Date: Mon Mar 4 01:00:05 2013 +0000 Porting/corelist.pl: fix a die error message One particular die() just printed a filename, without saying what was wrong with it. Which was a bit confusing. M Porting/corelist.pl commit e4fbed9933a160e686160b37049c10610fdfb51e Author: David Mitchell <[email protected]> Date: Mon Mar 4 00:58:39 2013 +0000 release_managers_guide: clarify YAML regeneration Make it clear that you use the current perl, not a system perl, and that the result may not have any changes. M Porting/release_managers_guide.pod ----------------------------------------------------------------------- Summary of changes: Porting/corelist.pl | 3 ++- Porting/release_managers_guide.pod | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Porting/corelist.pl b/Porting/corelist.pl index 11d51ad..6185150 100755 --- a/Porting/corelist.pl +++ b/Porting/corelist.pl @@ -194,7 +194,8 @@ while ( my ( $module, $file ) = each %module_to_file ) { # Like it or lump it, this has to be Unix format. my $meta_YAML_path = "authors/id/$dist"; - $meta_YAML_path =~ s/(?:tar\.gz|tar\.bz2|zip|tgz)$/meta/ or die "$meta_YAML_path"; + $meta_YAML_path =~ s/(?:tar\.gz|tar\.bz2|zip|tgz)$/meta/ + or die "ERROR: bad meta YAML path: '$meta_YAML_path'"; my $meta_YAML_url = 'http://ftp.funet.fi/pub/CPAN/' . $meta_YAML_path; if ( -e "$cpan/$meta_YAML_path" ) { diff --git a/Porting/release_managers_guide.pod b/Porting/release_managers_guide.pod index a348fcf..d976bf5 100644 --- a/Porting/release_managers_guide.pod +++ b/Porting/release_managers_guide.pod @@ -701,10 +701,11 @@ Be sure to commit your change: =head3 run makemeta to update META files - $ perl Porting/makemeta + $ ./perl -Ilib Porting/makemeta Be sure to commit any changes (if applicable): + $ git status # any changes? $ git commit -m 'Update META files' META.* =head3 build, test and check a fresh perl -- Perl5 Master Repository
