Skip Menu |

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

Report information
The Basics
Id: 44419
Status: resolved
Priority: 0/
Queue: WWW-Ohloh-API

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

Bug Information
Severity: Normal
Broken in: 1.0_1
Fixed in: (no value)



Subject: better Build.PL
Comments are included in patch. Requires Module::Build 0.30 for creating dist. P.S. Your repository has version earlier that on CPAN. -- Alexandr Ciornii, http://chorny.net
Subject: Build.PL.patch
--- Build.PL.dist 2008-11-20 05:18:18.000000000 +0200 +++ Build.PL 2009-03-19 13:02:02.984375000 +0200 @@ -1,3 +1,4 @@ +use 5.006; #warnings.pm; use strict; use warnings; use Module::Build; @@ -8,8 +9,7 @@ dist_author => 'Yanick Champoux <yanick@cpan.org>', dist_version_from => 'lib/WWW/Ohloh/API.pm', requires => { - perl => '5.8.0', - 'Test::More' => 0, + perl => '5.008', #need one-dot form for perls earlier than 5.6 'version' => 0, 'LWP::UserAgent' => 0, 'Readonly' => 0, @@ -21,10 +21,16 @@ 'HTML::HeadParser' => 0, 'Params::Validate' => 0, 'List::MoreUtils' => 0, - URI => 0, 'Date::Parse' => 0, 'Time::Piece' => 0, }, + build_requires => { + 'Test::More' => 0, + 'Module::Build' => 0, + }, + configure_requires => { + 'Module::Build' => 0, #0.30 for creating dist + }, recommends => { 'Test::Pod::Snippets' => '0.04.01', }, @@ -36,6 +42,10 @@ bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Ohloh-Api', }, + keywords => [ + 'Ohloh', + 'API', + ], }, );
Thanks! I applied the patch to the code. And, yup, I've moved the repository to Github: http://github.com/yanick/www- few days. Thanks for reminding me of that too. :-)