Skip Menu |

This queue is for tickets about the HTML-TableContentParser CPAN distribution.

Report information
The Basics
Id: 80317
Status: resolved
Priority: 0/
Queue: HTML-TableContentParser

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

Bug Information
Severity: Normal
Broken in: 0.13
Fixed in: 0.200



Subject: Undeclared dependency on HTML::Parser
HTML::TableContentParser depends on HTML::Parser, but does not declare that dependency in its metadata. Because of this, installations can fail. The attached patch to Makefile.PL should resolve the problem.
Subject: HTML-TableContentParser-Makefile.patch
--- Makefile.old 2002-05-08 14:15:55.000000000 -0400 +++ Makefile.PL 2012-10-21 13:31:11.000000000 -0400 @@ -4,5 +4,7 @@ WriteMakefile( 'NAME' => 'HTML::TableContentParser', 'VERSION_FROM' => 'TableContentParser.pm', # finds $VERSION - 'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 + 'PREREQ_PM' => { + 'HTML::Parser' => 0, + }, # e.g., Module::Name => 1.1 );
I have forked gitpan/HTML-TableContentParser as trwyant/perl-HTML-TableContentParser, and applied a patch for this and 32010 Test fails under Perl 5.10.0 under Mac OS X 10.3.9. If you are willing to grant me co-maintainer status I am willing to make a release.