Subject: | Patch for WWW::SourceForge |
Hi Kang-min,
I noticed when installing WWW::SourceForge through cpan, that it fails
to install due to one of the tests that requires YAML.pm. Attached is a
little patch that adds this as a requirement to the Makefile.PL:
Btw, what I'm working on is a perl module for downloading files out of
the SourceForge file tracker. We need an ability to automatically
download new versions of packages we use for testing (such as the
monthly LTP releases), but SourceForge's mirror system has made this a
convoluted process. (I want to try to design my module to be compatible
with yours so users could use both together if they want.)
Thanks,
Bryce
--- Makefile.PL~ 2004-11-01 18:31:22.000000000 -0800
+++ Makefile.PL 2005-08-18 14:56:09.000000000 -0700
@@ -10,6 +10,7 @@
PREREQ_PM => {
'WWW::Mechanize' => '0',
'HTML::TableExtract' => '0',
+ 'YAML' => '0',
},
dist => {
COMPRESS => 'gzip -9',