NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Installed, but... (Score:1)
Re: (Score:1)
Yeah, from the other thread, here is one:
http://search.cpan.org/dist/ack/ [cpan.org]
META.yml repository HOWTO (Score:1)
with Module::Install, add the following to your Makefile.PL:
resources repository => 'http://...';
with MakeMaker, add the following to WriteMakefile (thanks claes):
EXTRA_META => q{
resources:
repository: http://.../ [...]
},
Re: (Score:1)
...and with Module::Build, it's:
displaying bugtracker, homepage and mailinglist (Score:1)
Why stop the fun at the repository?
I've augmented the original script to display the bugtracker (if different than rt), homepage and mailinglist advertised in the META.yml as well. This version can be found at http://userscripts.org/scripts/show/31748 [userscripts.org].
Re: (Score:1)
Would it be possible to key off something else other than "CPAN Testers"? That particular row doesn't show up unless tests have been run.
Admittedly, it's an edge case, but still...
Here's an example fix:
102c102
< /<tr>\s*<td.*?>CPAN Testers/i,
---
> /<tr>\s*<td.*?>Links/i,
Also, any thought to setting up a github for this script?
Re: (Score:1)
Would it be possible to key off something else other than "CPAN Testers"? That particular row doesn't show up unless tests have been run. Admittedly, it's an edge case, but still...
Good catch. I'll try to fix that as soon as I can. Thanks!
any thought to setting up a github for this script?
Ask, and... well, you know the drill by now. ;-) It's at http://github.com/yanick/greaseyanick/tree/master [github.com]
Re: (Score:1)
Just to say that I finally got around moving the hook off 'Testers' and on a more trustworthy row. I've made the change to the new CPAN_Meta script, though, considering that it supersede the original CPAN_repository. Enjoy! :-)