Skip Menu |

This queue is for tickets about the Bank-Holidays CPAN distribution.

Report information
The Basics
Id: 21032
Status: resolved
Priority: 0/
Queue: Bank-Holidays

People
Owner: tyler [...] seraph-net.net
Requestors: alexchorny [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.55
Fixed in: 0.66



Subject: missing dependencies
Must require in Makefile.PL HTML::TableExtract, LWP::Simple, DateTime. Add PREREQ_PM => { 'HTML::TableExtract'=>0, 'LWP::Simple'=>0, 'DateTime'=>0, }, P.S. Please write more tests. ------- Alexandr Ciornii, http://chorny.net
From: Alexandr Ciornii <alexchorny [...] gmail.com>
Patched Makefile.PL
use 5.006001; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'Bank::Holidays', VERSION_FROM => 'lib/Bank/Holidays.pm', # finds $VERSION PREREQ_PM => { 'HTML::TableExtract'=>0, 'LWP::Simple'=>0, 'DateTime'=>0, }, ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/Bank/Holidays.pm', # retrieve abstract from module AUTHOR => 'root <root@suse.de>') : ()), );
On Wed Aug 16 17:07:03 2006, alexchorny@gmail.com wrote: Show quoted text
> Patched Makefile.PL