Skip Menu |

This queue is for tickets about the File-Convert-CSV CPAN distribution.

Report information
The Basics
Id: 55144
Status: new
Priority: 0/
Queue: File-Convert-CSV

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

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



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>') : ()),