Subject: | Module::Build::Base: Suggest support for GPL v3 (patch attached) |
With the release of GPL version 3.0, the links on www.opensource.org
have been updated. I think the valid_licenses subroutine (or rather,
the %licenses hash) in Module::Build::Base should change. I propose the
attached patch against Base.pm which:
(1) Adds an explicit 'gpl2' license option with the correct link.
(2) Adds a 'gpl3' option pointing to the new version at
http://www.opensource.org/licenses/gpl-3.0.html.
This change should not be controversial or break any existing code.
Version 0.2807 of Module::Build.
Subject: | Base.pm.patch |
--- /usr/lib/perl5/vendor_perl/5.8.8/Module/Build/Base.pm 2007-04-02 21:47:58.000000000 +0100
+++ Base.pm 2008-03-04 18:47:55.000000000 +0000
@@ -3223,6 +3223,8 @@
lgpl => 'http://opensource.org/licenses/artistic-license.php',
bsd => 'http://www.opensource.org/licenses/bsd-license.php',
gpl => 'http://www.opensource.org/licenses/gpl-license.php',
+ gpl2 => 'http://www.opensource.org/licenses/gpl-2.0.php',
+ gpl3 => 'http://www.opensource.org/licenses/gpl-3.0.html',
mit => 'http://opensource.org/licenses/mit-license.php',
mozilla => 'http://opensource.org/licenses/mozilla1.1.php',
open_source => undef,