Author: ericwilhelm
Date: Sun Oct  7 10:32:18 2007
New Revision: 10059

Modified:
   Module-Build/trunk/Changes
   Module-Build/trunk/lib/Module/Build/Base.pm

Log:
** fix bug #29783 [David Thomas] **
lib/Module/Build/Base.pm - update/fix valid_licenses() table
  (removed duplicate 'gpl', corrected 'lgpl', added 'artistic_2')
Changes                  - update


Modified: Module-Build/trunk/Changes
==============================================================================
--- Module-Build/trunk/Changes  (original)
+++ Module-Build/trunk/Changes  Sun Oct  7 10:32:18 2007
@@ -1,5 +1,8 @@
 Revision history for Perl extension Module::Build.
 
+ - Added 'artistic_2' license, corrected 'lgpl' license url (bug #29783)
+   [David Thomas]
+
  - VMS find_perl_interpreter() is just $^X (bug #29810) [Craig A. Berry]
 
  - Some large VMS fixes, mostly having to do with the non-case-

Modified: Module-Build/trunk/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/trunk/lib/Module/Build/Base.pm (original)
+++ Module-Build/trunk/lib/Module/Build/Base.pm Sun Oct  7 10:32:18 2007
@@ -3279,10 +3279,10 @@
   my %licenses =
     (
      perl => 'http://dev.perl.org/licenses/',
-     gpl => 'http://www.opensource.org/licenses/gpl-license.php',
      apache => 'http://apache.org/licenses/LICENSE-2.0',
      artistic => 'http://opensource.org/licenses/artistic-license.php',
-     lgpl => 'http://opensource.org/licenses/artistic-license.php',
+     artistic_2 => 'http://opensource.org/licenses/artistic-license-2.0.php',
+     lgpl => 'http://www.opensource.org/licenses/lgpl-license.php',
      bsd => 'http://www.opensource.org/licenses/bsd-license.php',
      gpl => 'http://www.opensource.org/licenses/gpl-license.php',
      mit => 'http://opensource.org/licenses/mit-license.php',

Reply via email to