Author: ericwilhelm Date: Sun Oct 7 10:42:42 2007 New Revision: 10060 Modified: Module-Build/trunk/lib/Module/Build/API.pod Module-Build/trunk/lib/Module/Build/Base.pm
Log: lib/Module/Build/Base.pm - cleanup licenses table lib/Module/Build/API.pod - bah: duplicate license info for documentation Modified: Module-Build/trunk/lib/Module/Build/API.pod ============================================================================== --- Module-Build/trunk/lib/Module/Build/API.pod (original) +++ Module-Build/trunk/lib/Module/Build/API.pod Sun Oct 7 10:42:42 2007 @@ -436,6 +436,11 @@ The distribution is licensed under the Artistic License, as specified by the F<Artistic> file in the standard Perl distribution. +=item artistic_2 + +The distribution is licensed under the Artistic 2.0 License +(L<http://opensource.org/licenses/artistic-license-2.0.php>.) + =item bsd The distribution is licensed under the BSD License 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:42:42 2007 @@ -3276,22 +3276,21 @@ BEGIN { *scripts = \&script_files; } { - my %licenses = - ( - perl => 'http://dev.perl.org/licenses/', - apache => 'http://apache.org/licenses/LICENSE-2.0', - artistic => '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', - mozilla => 'http://opensource.org/licenses/mozilla1.1.php', - open_source => undef, - unrestricted => undef, - restrictive => undef, - unknown => undef, - ); + my %licenses = ( + perl => 'http://dev.perl.org/licenses/', + apache => 'http://apache.org/licenses/LICENSE-2.0', + artistic => 'http://opensource.org/licenses/artistic-license.php', + artistic_2 => 'http://opensource.org/licenses/artistic-license-2.0.php', + lgpl => 'http://opensource.org/licenses/lgpl-license.php', + bsd => 'http://opensource.org/licenses/bsd-license.php', + gpl => 'http://opensource.org/licenses/gpl-license.php', + mit => 'http://opensource.org/licenses/mit-license.php', + mozilla => 'http://opensource.org/licenses/mozilla1.1.php', + open_source => undef, + unrestricted => undef, + restrictive => undef, + unknown => undef, + ); sub valid_licenses { return \%licenses; }
