Skip Menu |

This queue is for tickets about the Module-Install CPAN distribution.

Report information
The Basics
Id: 55594
Status: resolved
Priority: 0/
Queue: Module-Install

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

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



Subject: Missing license
The GNU Affero General Public License v3 should be added to the license detection code. Here are the details for the license: http://www.fsf.org/licensing/licenses/agpl-3.0.html http://opensource.org/licenses/agpl-v3.html
Hi, added support for missing licenses including agpl in the trunk. Will be fixed in the next release. Thanks. On 2010-3-15 Mon 10:44:33, sjn wrote: Show quoted text
> The GNU Affero General Public License v3 should be added to the
license Show quoted text
> detection code. > > Here are the details for the license: > > http://www.fsf.org/licensing/licenses/agpl-3.0.html > http://opensource.org/licenses/agpl-v3.html
Hi. Module::Install 0.96/0.97 with a fix is out. Thanks.
Seems the resolution was only partial.... Attached a patch for making AGPLv3 actually listed (with URL.)

On that note, there seems to be quite a few badly categorized and/or missing licenses.. :-(


- Salve

Subject: agpl.patch
Index: lib/Module/Install/Metadata.pm =================================================================== --- lib/Module/Install/Metadata.pm (revision 12541) +++ lib/Module/Install/Metadata.pm (working copy) @@ -458,6 +458,7 @@ gpl => 'http://opensource.org/licenses/gpl-license.php', gpl2 => 'http://opensource.org/licenses/gpl-2.0.php', gpl3 => 'http://opensource.org/licenses/gpl-3.0.html', + agpl3 => 'http://opensource.org/licenses/agpl-3.0.html', mit => 'http://opensource.org/licenses/mit-license.php', mozilla => 'http://opensource.org/licenses/mozilla1.1.php', open_source => undef, @@ -512,7 +513,7 @@ 'GNU library general public license' => 'lgpl', 1, 'GNU library public license' => 'lgpl', 1, 'GNU Free Documentation license' => 'unrestricted', 1, - 'GNU Affero General Public License' => 'open_source', 1, + 'GNU Affero General Public License' => 'agpl', 1, '(?:Free)?BSD license' => 'bsd', 1, 'Artistic license' => 'artistic', 1, 'Apache (?:Software )?license' => 'apache', 1,