In perl.git, the branch maint-5.005 has been updated
<http://perl5.git.perl.org/perl.git/commitdiff/ba3f1003fa0e27b43a8b3a21bd11a0d557a056ed?hp=fceb80b8ef47e3eee16a5777cb0e16f6280a5ed5>
- Log -----------------------------------------------------------------
commit ba3f1003fa0e27b43a8b3a21bd11a0d557a056ed
Author: Leon Brocard <acme@astray.com>
Date: Tue Feb 17 00:05:33 2009 +0800
Update Changes
M Changes
commit bf2d1fa34401e99826be823a1790a3dcd868dd0d
Author: Leon Brocard <acme@astray.com>
Date: Tue Feb 17 00:04:22 2009 +0800
Ignore .git files
M Porting/makerel
commit e7612f8572749182b815c31f0136d0247bc71cb3
Author: Leon Brocard <acme@astray.com>
Date: Tue Feb 17 00:01:44 2009 +0800
Add Porting/genlog_git to the MANIFEST
M MANIFEST
-----------------------------------------------------------------------
Summary of changes:
Changes | 15 +++++++++++++++
MANIFEST | 1 +
Porting/makerel | 1 +
3 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/Changes b/Changes
index ce5c527..ffa1287 100644
--- a/Changes
+++ b/Changes
@@ -80,6 +80,21 @@ Version 5.005_05 Fifth maintenance release of 5.005
____________________________________________________________________________
+[bf2d1f] By: acme on 2009/02/16 16:04:22
+ Log: Ignore .git files
+ Branch: maint-5.005/perl
+ ! Porting/makerel
+____________________________________________________________________________
+[e7612f] By: acme on 2009/02/16 16:01:44
+ Log: Add Porting/genlog_git to the MANIFEST
+ Branch: maint-5.005/perl
+ ! MANIFEST
+____________________________________________________________________________
+[fceb80] By: acme on 2009/02/16 15:48:14
+ Log: Update for 5.005_05 RC1
+ Branch: maint-5.005/perl
+ ! patchlevel.h
+____________________________________________________________________________
[33a728] By: acme on 2009/02/16 15:45:27
Log: Copy over perlhist from blead
Branch: maint-5.005/perl
diff --git a/MANIFEST b/MANIFEST
index 4429562..491a942 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -23,6 +23,7 @@ Porting/findvars Find occurrences of words
Porting/fixCORE Find and fix modules that generate warnings
Porting/fixvars Find undeclared variables with C compiler and fix em
Porting/genlog Generate formatted changelogs by querying p4d
+Porting/genlog_git Generate formatted changelogs by querying Git
Porting/makerel Release making utility
Porting/p4d2p Generate standard patches from p4 diffs
Porting/patching.pod How to report changes made to Perl
diff --git a/Porting/makerel b/Porting/makerel
index f2e1f97..c969346 100755
--- a/Porting/makerel
+++ b/Porting/makerel
@@ -49,6 +49,7 @@ print "\nMaking a release for $perl in $relroot/$reldir\n\n";
print "Cross-checking the MANIFEST...\n";
($missfile, $missentry) = fullcheck();
+$missentry = [grep { $_ !~ /^.git/ } @$missentry];
warn "Can't make a release with MANIFEST files missing.\n" if @$missfile;
warn "Can't make a release with files not listed in MANIFEST.\n" if @$missentry;
if ("@$missentry" =~ m/\.orig\b/) {
--
Perl5 Master Repository