Skip Menu |

This queue is for tickets about the Catalyst-Controller-Atompub CPAN distribution.

Report information
The Basics
Id: 80038
Status: resolved
Priority: 0/
Queue: Catalyst-Controller-Atompub

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.5.4
Fixed in: (no value)



Subject: Fails with bleadperl >= v5.16.0-235-g417a992
As per subject. Sample fail report: http://www.cpantesters.org/cpan/report/d5d8ebb4-0239-11e2-ace9-1f037ed9fe3d The commit that made all these tests fail is: http://perl5.git.perl.org/perl.git/commitdiff/417a992d4dc78be79e44d19e029d9742d0334128 It forbid lines like this: for my $operation qw(list create read update delete) { which I found in https://metacpan.org/source/TAKERU/Catalyst-Controller-Atompub-0.5.4/lib/Catalyst/Controller/Atompub/Collection.pm#L138 This now needs an extra pair of parens: for my $operation (qw(list create read update delete)) { HTH&&Thanks&&Regards,
Thank you. I fixed the problem. On 2012-10月-06 土 04:40:17, ANDK wrote: Show quoted text
> As per subject. > > Sample fail report: > > http://www.cpantesters.org/cpan/report/d5d8ebb4-0239-11e2-ace9- > 1f037ed9fe3d > > The commit that made all these tests fail is: > >
http://perl5.git.perl.org/perl.git/commitdiff/417a992d4dc78be79e44d19e029d9742d03341 28 Show quoted text
> > It forbid lines like this: > > for my $operation qw(list create read update delete) { > > which I found in > https://metacpan.org/source/TAKERU/Catalyst-Controller-Atompub- > 0.5.4/lib/Catalyst/Controller/Atompub/Collection.pm#L138 > > This now needs an extra pair of parens: > > for my $operation (qw(list create read update delete)) { > > HTH&&Thanks&&Regards,