diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-11-12 16:28:12 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2013-11-12 16:42:17 +0000 |
commit | 18b2aa6a0d8618a3be3fe009940a585eddae1e52 (patch) | |
tree | 9ca7475fd3035f8872f4d226ffd207f59c85ec30 /cpan/Module-Build/lib/Module/Build/ConfigData.pm | |
parent | 3a4b75f8383799032432373d6d0037d290ffbd8c (diff) | |
download | perl-18b2aa6a0d8618a3be3fe009940a585eddae1e52.tar.gz |
Update Module-Build to CPAN version 0.4200
[DELTA]
0.4200 - Tue Nov 12 12:39:25 CET 2013
- Released 0.40_11 as 0.4200
0.40_11 - Wed Nov 6 12:46:59 CET 2013
[BUG FIXES]
- Do not set provides in metadata if no_index is set [Leon Timmermans]
0.40_10 - Tue Nov 5 12:11:37 CET 2013
[BUG FIXES]
- Lowercase license in fallback logic [Leon Timmermans]
0.40_09 - Tue Nov 5 00:13:11 CET 2013
[ENHANCEMENTS]
- Converted to using Meta 2.0
Diffstat (limited to 'cpan/Module-Build/lib/Module/Build/ConfigData.pm')
-rw-r--r-- | cpan/Module-Build/lib/Module/Build/ConfigData.pm | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/cpan/Module-Build/lib/Module/Build/ConfigData.pm b/cpan/Module-Build/lib/Module/Build/ConfigData.pm index d55745cb6d..a4b05fc030 100644 --- a/cpan/Module-Build/lib/Module/Build/ConfigData.pm +++ b/cpan/Module-Build/lib/Module/Build/ConfigData.pm @@ -167,12 +167,31 @@ do{ my $x = [ {}, {}, { + 'inc_bundling_support' => { + 'description' => 'Bundle Module::Build in inc/', + 'requires' => { + 'ExtUtils::Installed' => '1.999', + 'ExtUtils::Install' => '1.54' + } + }, + 'license_creation' => { + 'description' => 'Create licenses automatically in distributions', + 'requires' => { + 'Software::License' => 0 + } + }, 'manpage_support' => { + 'description' => 'Create Unix man pages', 'requires' => { 'Pod::Man' => 0 - }, - 'description' => 'Create Unix man pages' + } }, + 'HTML_support' => { + 'description' => 'Create HTML documentation', + 'requires' => { + 'Pod::Html' => 0 + } + }, 'dist_authoring' => { 'recommends' => { 'Module::Signature' => '0.21', @@ -183,28 +202,9 @@ do{ my $x = [ 'Archive::Tar' => '1.09' } }, - 'license_creation' => { - 'requires' => { - 'Software::License' => 0 - }, - 'description' => 'Create licenses automatically in distributions' - }, 'PPM_support' => { 'description' => 'Generate PPM files for distributions' - }, - 'inc_bundling_support' => { - 'description' => 'Bundle Module::Build in inc/', - 'requires' => { - 'ExtUtils::Installed' => '1.999', - 'ExtUtils::Install' => '1.54' - } - }, - 'HTML_support' => { - 'requires' => { - 'Pod::Html' => 0 - }, - 'description' => 'Create HTML documentation' - } + } } ]; $x; }
\ No newline at end of file |