Skip Menu |

This queue is for tickets about the DBIx-TextSearch CPAN distribution.

Report information
The Basics
Id: 11944
Status: new
Priority: 0/
Queue: DBIx-TextSearch

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

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



Subject: Makefile.PL has incorrect PREREQ_PM
Hello, Your Makefile.PL does not contains a correct PREREQ_PM parameter, as it contains the list of the module you depends upon: PREREQ_PM => {'DBI', 'Carp', 'Env', 'English', 'Net::FTP', 'LWP::Simple', 'LWP::UserAgent', 'HTTP::Response', 'SGML::StripParser', 'Text::Query::BuildSQL', 'URI', 'File::Basename', 'HTML::TokeParser', 'Socket', 'Sys::Hostname', 'Digest::MD5' }, where it should contains a hash with each module name as key and the required version as value: PREREQ_PM => { 'DBI' => 0, 'Net::FTP' => 0, 'LWP::UserAgent' => 0, 'SGML::StripParser' => 0, 'Text::Query::BuildSQL' => 0, 'URI' => 0, 'HTML::TokeParser' => 0, 'Digest::MD5' => 0 }, where the core modules and duplicates have been removed. Regards