Skip Menu |

This queue is for tickets about the Module-CPANTS-Analyse CPAN distribution.

Report information
The Basics
Id: 28134
Status: resolved
Priority: 0/
Queue: Module-CPANTS-Analyse

People
Owner: domm [...] cpan.org
Requestors: ask [...] 0x61736b.net
brian.d.foy [...] gmail.com
david [...] landgren.net
jquelin [...] gmail.com
kulp [...] thekulp.com
mhasch-cpanbugs [...] cozap.com
Cc: cjm [...] cpan.org
AdminCc:

Bug Information
Severity: Important
Broken in: 0.72
Fixed in: 0.73



Subject: Typo (wrong parentheses) in Module::CPANTS::Kwalitee::NeedsCompiler
There is a typo in lib/Module/CPANTS/Kwalitee/NeedsCompiler.pm, from Module-CPANTS-Analyse-0.72, causing analyse() to issue this warning: Use of uninitialized value in string eq at /usr/local/share/perl/5.8.8/Module/CPANTS/Kwalitee/NeedsCompiler.pm line 22. The patch below (putting the second closing parenthesis in the right place) should fix this. -Martin
Subject: paren.patch
--- lib/Module/CPANTS/Kwalitee/NeedsCompiler.pm.dist 2007-06-30 23:15:25.000000000 +0200 +++ lib/Module/CPANTS/Kwalitee/NeedsCompiler.pm 2007-07-12 18:39:08.000000000 +0200 @@ -19,7 +19,7 @@ return; } } - if (defined ref($me->d->{prereq}) and ref($me->d->{prereq} eq 'ARRAY')) { + if (defined ref($me->d->{prereq}) and ref($me->d->{prereq}) eq 'ARRAY') { for my $m (@{ $me->d->{prereq} }) { if ($m->{requires} =~ /^Inline::/ or $m->{requires} eq 'ExtUtils::CBuilder'
Subject: File-BSED: Please report the error(s)?
Date: Fri, 13 Jul 2007 17:06:52 +0200
To: bug-module-cpants-analyse [...] rt.cpan.org
From: Ask Solem Hoel <ask [...] 0x61736b.net>
Show quoted text
>>Please report the error(s) to bug-module-cpants-
analyse@rt.cpan.org (no_cpants_errors) There is no error message, so I guess I'll just send a notice. The dist is: http://cpants.perl.org/dist/File-BSED -- ad()((!!!ÆÆ::)(,..c.xz("F(=ÀxS&@#.da####!!(); cell: +47 41545862 http://www.0x61736b.net
From: ASKSH [...] cpan.org
On Fri Jul 13 11:07:21 2007, ask@0x61736b.net wrote: Show quoted text
> >>Please report the error(s) to bug-module-cpants-
> analyse@rt.cpan.org (no_cpants_errors) > > > There is no error message, so I guess I'll just send a notice. > > The dist is: http://cpants.perl.org/dist/File-BSED
I just tested it locally on my machine, and no errors here. Maybe it is an error with cpants.perl.org.
On Fri Jul 13 11:07:21 2007, ask@0x61736b.net wrote: Show quoted text
> There is no error message, so I guess I'll just send a notice. > > The dist is: http://cpants.perl.org/dist/File-BSED
I have the same issue with http://cpants.perl.org/dist/MSDOS-Attrib CPANTS shows it failing no_cpants_errors, but there's no error message listed.
Subject: CPANTS problem for Chemistry::Elements and Crypt::Rijndael?
Date: Mon, 30 Jul 2007 20:16:31 -0500
To: bug-module-cpants-analyse [...] rt.cpan.org
From: "brian d foy" <brian.d.foy [...] gmail.com>
A couple of weeks ago, Chemistry::Elements and Crypt::Rijndael started failing "no_cpants_errors", but neither shows any details about the failure. Is there a way to find out what those errors might be? cpants_lint.pl doesn't see a problem. Thanks, -- brian d foy <brian.d.foy@gmail.com> http://www.pair.com/~comdog/
Subject: My modules give CPANTS indigestion
Date: Wed, 01 Aug 2007 18:20:51 +0200
To: bug-module-cpants-analyse [...] rt.cpan.org
From: David Landgren <david [...] landgren.net>
Hello domm, a number of my modules are provoking Kwalitee errors: BSD-Process BSD-Sysctl Crypt-SSLeay fail to produce pretty much of anything. (and Crypt-SSLeay is a prereq for other modules) Data-PowerSet Integer-Partition Regexp-Assemble Set-Partition Tie-Cycle-Sinewave STDERR: Use of uninitialized value in string eq at /usr/local/share/perl/5.8.8/Module/CPANTS/Kwalitee/NeedsCompiler.pm line 22. Thanks, David
Subject: no_cpants_errors appeared due to uninitialized value
Date: Thu, 2 Aug 2007 16:43:41 +0200
To: bug-module-cpants-analyse [...] rt.cpan.org
From: Jerome Quelin <jquelin [...] gmail.com>
hello, two of my modules have seen my kwalitee get down: http://cpants.perl.org/dist/Acme-Tie-Eleet http://cpants.perl.org/dist/Language-Ook however, the details of the modules show: ---- 8< BEGIN PASTE >8 ---- cpants_errors STDERR: Use of uninitialized value in string eq at /usr/local/share/perl/5.8.8/Module/CPANTS/Kwalitee/NeedsCompiler.pm line 22. STDOUT: ---- 8< END PASTE >8 ---- this seems to be really an internal cpants error. ==> can you check this please? regards, jérôme -- jquelin@gmail.com
Subject: [Module::CPANTS::Kwalitee::NeedsCompiler] typo/bug
Date: Thu, 9 Aug 2007 14:00:09 -0500 (CDT)
To: bug-module-cpants-analyse [...] rt.cpan.org
From: "Darren M Kulp" <kulp [...] thekulp.com>
There is an error in Module::CPANTS::Kwalitee::NeedsCompiler 0.72 on line 22: the 'eq' comparison on that line is inside the parameter list for ref(). Please move the right parenthesis before the 'eq' token. Thanks! Darren Kulp