Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30865/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Change the official location of the perl license, and correct 'urls' to 'resources'
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.464
retrieving revision 1.465
diff -u -d -r1.464 -r1.465
--- Base.pm 27 Jul 2005 04:47:51 -0000 1.464
+++ Base.pm 28 Jul 2005 02:56:42 -0000 1.465
@@ -2447,7 +2447,7 @@
{
my %licenses =
(
- perl => 'http://search.cpan.org/src/NWCLARK/perl-5.8.7/README',
+ 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',
@@ -2591,7 +2591,7 @@
$node->{$name} = $self->$_();
}
if (defined( my $url = $self->valid_licenses->{ $self->license } )) {
- $node->{urls}{license} = $url;
+ $node->{resources}{license} = $url;
}
foreach ( @{$self->prereq_action_types} ) {
|