Skip Menu |

This queue is for tickets about the RSS-Parser-Lite CPAN distribution.

Report information
The Basics
Id: 63194
Status: resolved
Priority: 0/
Queue: RSS-Parser-Lite

People
Owner: TFPBL [...] cpan.org
Requestors: MRO [...] cpan.org
Cc:
AdminCc:

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



Subject: Missing dependency for XML::Parser::Lite
XML::RSS::Parser::Lite is missing an dependency for XML::Parser::Lite. The attached patch should (ie. not tested) fix it.
Subject: missing-dependency.patch
--- Makefile.PL.orig 2010-11-21 00:38:36.000000000 +0100 +++ Makefile.PL 2010-11-21 00:44:46.000000000 +0100 @@ -2,5 +2,8 @@ WriteMakefile( NAME => 'XML::RSS::Parser::Lite', - VERSION_FROM => 'lib/XML/RSS/Parser/Lite.pm' -); \ No newline at end of file + VERSION_FROM => 'lib/XML/RSS/Parser/Lite.pm', + PREREQ_PM => { + 'XML::Parser::Lite' => 0, + } +);
Thank you for reporting that problem, I've included your patch in version 0.12 Thomas