Subject: | initial fixes for CPAN Testers FAIL reports |
This patch initially fixes the bugs seen in CPAN Testers FAIL reports
[1]. However, as the distribution also requires Class::Debugable, which
doesn't appear to be on CPAN, this distribution will not pass until that
module is also released.
[1] http://www.cpantesters.org/distro/F/File-Convert-CSV.html
Subject: | file-convert-csv.patch |
--- File-Convert-CSV/File-Convert-CSV-0.03/Makefile.PL Thu Dec 31 00:20:23 2009
+++ File-Convert-CSV/File-Convert-CSV-0.03_01/Makefile.PL Tue Mar 2 16:06:34 2010
@@ -5,7 +5,16 @@
WriteMakefile(
NAME => 'File::Convert::CSV',
VERSION_FROM => 'lib/File/Convert/CSV.pm', # finds $VERSION
- PREREQ_PM => {}, # e.g., Module::Name => 1.1
+ PREREQ_PM => {
+
+ 'IO::Extended' => 0,
+ 'Data::Iter' => 0,
+ 'Carp' => 0,
+ 'Class::Debugable' => 0,
+ 'Data::Dump' => 0,
+ 'Path::Class' => 0,
+
+ }, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/File/Convert/CSV.pm', # retrieve abstract from module
AUTHOR => 'murat <Murat@familiehaase.de>') : ()),