In perl.git, the branch blead has been updated
<http://perl5.git.perl.org/perl.git/commitdiff/69f0857ceb3d6c587ce864cec2bf48cc666426c7?hp=39e518fd0507d74dbc0c77604a10ed01af505ee5>
- Log -----------------------------------------------------------------
commit 69f0857ceb3d6c587ce864cec2bf48cc666426c7
Author: Rafael Garcia-Suarez <rgs@consttype.org>
Date: Sat Mar 31 10:55:12 2012 +0200
Typo fix in the list of maintainers
M Porting/Maintainers.pl
commit 3364991097dafedb70f6e6a832cbc6fb01991dc7
Author: Rafael Garcia-Suarez <rgs@consttype.org>
Date: Sat Mar 31 10:54:51 2012 +0200
Show maintainer name in corecpan output
M Porting/corecpan.pl
-----------------------------------------------------------------------
Summary of changes:
Porting/Maintainers.pl | 2 +-
Porting/corecpan.pl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 16dba1f..905215b 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -192,7 +192,7 @@ use File::Glob qw(:case);
%Modules = (
'AnyDBM_File' => {
- 'MAINTAINERS' => 'p5p',
+ 'MAINTAINER' => 'p5p',
'FILES' => q[lib/AnyDBM_File.{pm,t}],
'UPSTREAM' => 'blead',
},
diff --git a/Porting/corecpan.pl b/Porting/corecpan.pl
index 41778c1..3a38d11 100755
--- a/Porting/corecpan.pl
+++ b/Porting/corecpan.pl
@@ -159,7 +159,7 @@ else {
for my $file (sort keys %{$results{$dist}}) {
my ($vcore, $vcpan) = @{$results{$dist}{$file}}{@labels};
if (our $opt_v or $vcore ne $vcpan) {
- print "\n$dist:\n" unless ($distname_printed++);
+ print "\n$dist ($Modules{$dist}{MAINTAINER}):\n" unless ($distname_printed++);
print "\t$file: core=$vcore, cpan=$vcpan\n";
}
}
--
Perl5 Master Repository