Front page | perl.perl5.changes |
Postings from May 2008
Change 33915: Integrate:
From:
Nicholas Clark
Date:
May 23, 2008 08:00
Subject:
Change 33915: Integrate:
Change 33915 by nicholas@mouse-mill on 2008/05/23 14:57:46
Integrate:
[ 33905]
Subject: [PATCH] Documentation typo fix for Attribute::Handlers.
From: Florian Ragwitz <rafl@debian.org>
Date: Wed, 21 May 2008 22:42:40 +0200
Message-Id: <1211402560-12949-1-git-send-email-rafl@debian.org>
[ 33906]
Following a conversation on IRC, Artur thinks it best if we consider
the core version of Attribute::Handlers official from now on, and
hence remove it from Porting/Maintainers.pl
[ 33907]
Rafael will take over Attribute::Handlers
[ 33914]
Bump the version number following change 33905 (and for any other
changes that might come between 5.10's release and 5.8.9's). Note that
Rafael has kindly volunteered to take over maintainer.
Affected files ...
... //depot/maint-5.10/perl/Porting/Maintainers.pl#8 integrate
... //depot/maint-5.10/perl/lib/Attribute/Handlers.pm#2 integrate
Differences ...
==== //depot/maint-5.10/perl/Porting/Maintainers.pl#8 (text) ====
Index: perl/Porting/Maintainers.pl
--- perl/Porting/Maintainers.pl#7~33879~ 2008-05-20 03:05:07.000000000 -0700
+++ perl/Porting/Maintainers.pl 2008-05-23 07:57:46.000000000 -0700
@@ -108,10 +108,10 @@
'Attribute::Handlers' =>
{
- 'MAINTAINER' => 'abergman',
+ 'MAINTAINER' => 'rgarcia',
'FILES' => q[lib/Attribute/Handlers.pm
lib/Attribute/Handlers],
- 'CPAN' => 1,
+ 'CPAN' => 0,
},
'B::Concise' =>
==== //depot/maint-5.10/perl/lib/Attribute/Handlers.pm#2 (text) ====
Index: perl/lib/Attribute/Handlers.pm
--- perl/lib/Attribute/Handlers.pm#1~32694~ 2007-12-22 01:23:09.000000000 -0800
+++ perl/lib/Attribute/Handlers.pm 2008-05-23 07:57:46.000000000 -0700
@@ -4,7 +4,7 @@
use warnings;
use strict;
use vars qw($VERSION $AUTOLOAD);
-$VERSION = '0.79';
+$VERSION = '0.80';
# $DB::single=1;
my %symcache;
@@ -686,7 +686,7 @@
sub fn :Ugly(sister) :Omni('po',tent()) {...}
my @arr :Good :Omni(s/cie/nt/);
- my %hsh :Good(q/bye) :Omni(q/bus/);
+ my %hsh :Good(q/bye/) :Omni(q/bus/);
would cause the following handlers to be invoked:
@@ -864,7 +864,8 @@
=head1 AUTHOR
-Damian Conway (damian@conway.org)
+Damian Conway (damian@conway.org). The maintainer of this module is now Rafael
+Garcia-Suarez (rgarciasuarez@gmail.com).
=head1 BUGS
End of Patch.
-
Change 33915: Integrate:
by Nicholas Clark