Skip Menu |

This queue is for tickets about the WWW-SourceForge CPAN distribution.

Report information
The Basics
Id: 14237
Status: resolved
Priority: 0/
Queue: WWW-SourceForge

People
Owner: Nobody in particular
Requestors: bryce [...] bryceharrington.org
Cc:
AdminCc:

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



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',
Hello bryce. It seems that YAML is required by the code generated by Module::Install. I put YAML as a prerequestie and release 0.084 anyway. Please let me know if I could help any of the process of your module. I'm glad if this moudle helps. :) Cheers, Kang-min Liu