Skip Menu |

This queue is for tickets about the Config-Checker CPAN distribution.

Report information
The Basics
Id: 50595
Status: resolved
Priority: 0/
Queue: Config-Checker

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

Bug Information
Severity: Normal
Broken in: 0.41
Fixed in: (no value)



Subject: Undeclared dependencies
Statistics suggest that all that's missing are dependency declarations, otherwise this would be a completely green distro. Currently it's mixed: http://matrix.cpantesters.org/?dist=Config-Checker-0.41 The two repeating causes for FAILs are: Can't locate File/Slurp.pm Can't locate Module/Load.pm Indeed I find both modules used directly by Config::Checker and Config::YAMLMacros. HTH, Cheers,
Patch attached to include all missing dependencies.
Subject: config-checker-barbie.patch
--- Config-Checker-0.41/Makefile.PL Wed Sep 2 05:41:22 2009 +++ Config-Checker-0.41_01/Makefile.PL Wed Mar 10 14:20:59 2010 @@ -9,12 +9,17 @@ 'AUTHOR' => 'David Muir Sharnoff <muir@idiom.org>') : ()), 'dist' => { COMPRESS=>"gzip", SUFFIX=>"gz" }, 'PREREQ_PM' => { - 'Clone::PP' => 0, + 'Clone::PP' => 0, 'Time::ParseDate' => 0, - 'FindBin' => 0, + 'FindBin' => 0, 'YAML::Syck' => 0, 'Eval::LineNumbers' => 0, 'Hash::Merge' => 0, + 'Module::Load' => 0, + 'Carp' => 0, + 'File::Slurp' => 0, + 'File::Basename' => 0, + 'Test::More' => 0, }, );
patching distro