JJ Merelo
- Website: lujoyglamour.es
- About: I blog about Perl.
Recent Actions
-
Commented on Identifying CPAN distributions you could help out with
A more interesting way of scoring bugs by importance would be taking into account the number of other modules that depend on a given one in a first approximation, or even overall. From this point of view, probably CGI is...
Comment Threads
-
Neil Bowers commented on
Identifying CPAN distributions you could help out with
This is my pragmatic process based on the official process, which I've fixed on while working on reviews.
-
ruslan-zakirov.myopenid.com commented on
Identifying CPAN distributions you could help out with
Second request for a list based on impact, e.g. reverse deps.
-
Neil Bowers commented on
Identifying CPAN distributions you could help out with
Yeah, I think that'll probably be the next thing I hack in.
-
Ether commented on
Identifying CPAN distributions you could help out with
What code did you use to determine the number and age of outstanding bugs? I was thinking of creating a Kwalitee data point on these stats.
-
Neil Bowers commented on
Identifying CPAN distributions you could help out with
You can get the RT bug data as an SQLite database from https://rt.cpan.org/NoAuth/cpan/rtcpan.sqlite.gz
My query for getting the oldest and newest unresolved bug per dist is
select distribution, substr(min(created),1,10) as oldest_bug, substr(max(created),1,10) as newest_bug from ticket where status in ('new', 'open', 'stalled', 'patched') group by distribution;
About blogs.perl.org
blogs.perl.org is a common blogging platform for the Perl community. Written in Perl and offering the modern features you’ve come to expect in blog platforms, the site is run by Dave Cross and Aaron Crane, with a design donated by Six Apart, Ltd.