diff options
author | David Golden <dagolden@cpan.org> | 2011-01-06 21:38:00 -0500 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2011-01-06 21:38:00 -0500 |
commit | 6cf6332a2802b14655667c0a3d94af55efd05936 (patch) | |
tree | 68d55e60f1e23b9e7636dd9dc75794e9dc668ab1 | |
parent | e8b333e679eb9a7a62c1d86b647515f01821eb60 (diff) | |
download | perl-6cf6332a2802b14655667c0a3d94af55efd05936.tar.gz |
Update Module::Metadata to 1.000003
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/Module-Metadata/lib/Module/Metadata.pm | 12 | ||||
-rw-r--r-- | pod/perldelta.pod | 2 |
3 files changed, 6 insertions, 10 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index aa101a7d9f..0c8ef3935c 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1049,7 +1049,7 @@ use File::Glob qw(:case); 'Module::Metadata' => { 'MAINTAINER' => 'dagolden', - 'DISTRIBUTION' => 'DAGOLDEN/Module-Metadata-1.000002.tar.gz', + 'DISTRIBUTION' => 'DAGOLDEN/Module-Metadata-1.000003.tar.gz', 'FILES' => q[cpan/Module-Metadata], 'EXCLUDED' => [ ], 'UPSTREAM' => 'cpan', diff --git a/cpan/Module-Metadata/lib/Module/Metadata.pm b/cpan/Module-Metadata/lib/Module/Metadata.pm index 6541f1e553..e02b48f6ab 100644 --- a/cpan/Module-Metadata/lib/Module/Metadata.pm +++ b/cpan/Module-Metadata/lib/Module/Metadata.pm @@ -2,8 +2,8 @@ # vim:ts=8:sw=2:et:sta:sts=2 package Module::Metadata; -# stolen from Module::Build::Version and ::Base - this is perl licensed code, -# copyright them. +# Adapted from Perl-licensed code originally distributed with +# Module-Build by Ken Williams # This module provides routines to gather information about # perl modules (assuming this may be expanded in the distant @@ -11,7 +11,7 @@ package Module::Metadata; use strict; use vars qw($VERSION); -$VERSION = '1.000002'; +$VERSION = '1.000003'; $VERSION = eval $VERSION; use File::Spec; @@ -747,14 +747,10 @@ assistance from David Golden (xdg) <dagolden@cpan.org> =head1 COPYRIGHT -Copyright (c) 2001-2006 Ken Williams. All rights reserved. +Copyright (c) 2001-2011 Ken Williams. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. -=head1 SEE ALSO - -perl(1), L<Module::Build::ModuleInfo>(3) - =cut diff --git a/pod/perldelta.pod b/pod/perldelta.pod index ea424b90f2..77d7c4b9a4 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -94,7 +94,7 @@ generation task. =item * -L<Module::Metadata> 1.000002 has been added as a dual-life module. It gathers +L<Module::Metadata> 1.000003 has been added as a dual-life module. It gathers package and POD information from Perl module files. It is a standalone module based on Module::Build::ModuleInfo for use by other module installation toolchain components. Module::Build::ModuleInfo has been deprecated in |