X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=407826e06eff77a36f493d5ee050c015b2753e42;hb=e86dd03eba6f1a2bae12e2d6d24163bd11d2bab1;hp=c4f0312ade61f613d75e5a256f41d343d9990b49;hpb=8d86d0e2183cea90009277c05713594679c799d3;p=p5sagit%2FModule-Metadata.git diff --git a/Makefile.PL b/Makefile.PL index c4f0312..407826e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,9 @@ use strict; use warnings FATAL => 'all'; use ExtUtils::MakeMaker; +use 5.006; + +# TODO: convert to dzil and use [OnlyCorePrereqs], and possibly [DualLife] (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; @@ -9,12 +12,14 @@ WriteMakefile( VERSION_FROM => 'lib/Module/Metadata.pm', ABSTRACT_FROM => 'lib/Module/Metadata.pm', LICENSE => 'perl', + MIN_PERL_VERSION => '5.006', PREREQ_PM => { 'Carp' => 0, 'File::Find' => 0, 'File::Spec' => 0, 'IO::File' => 0, 'strict' => 0, + 'warnings' => 0, 'vars' => 0, 'version' => 0.87, 'warnings' => 0, @@ -24,11 +29,37 @@ WriteMakefile( , }, META_MERGE => { + 'meta-spec' => { version => 2 }, dynamic_config => 0, resources => { # r/w: p5sagit@git.shadowcat.co.uk:Module-Metadata.git - repository => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git', - homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git', + repository => { + url => 'git://git.shadowcat.co.uk/p5sagit/Module-Metadata.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Module-Metadata.git', + type => 'git', + }, + bugtracker => { + mailto => 'bug-Module-Metadata@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata', + }, + }, + prereqs => { + requires => { + test => { + 'Test::More' => 0, + 'Carp' => 0, + 'Config' => 0, + 'Cwd' => 0, + 'Data::Dumper' => 0, + 'Exporter' => 0, + 'File::Basename' => 0, + 'File::Find' => 0, + 'File::Path' => 0, + 'File::Spec' => 0, + 'File::Temp' => 0, + 'IO::File' => 0, + }, + }, }, }, );