X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTask-Devel-Cover-Recommended.git;a=blobdiff_plain;f=Makefile.PL;h=ee538f04663b973a5739652a8992147b966a3ad3;hp=fa2dec9677d339755bf1f3de6074c097fc397710;hb=HEAD;hpb=e5fd0b219dae4e6e93563f5b7a763c0fdf49c87e diff --git a/Makefile.PL b/Makefile.PL index fa2dec9..ee538f0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,43 +11,43 @@ my $dist = 'Task-Devel-Cover-Recommended'; (my $file = $dist) =~ s{-}{/}g; $file = "lib/$file.pm"; -my %DC_CONFIGURE = ( - 'ExtUtils::MakeMaker' => 0, -); - -my %DC_BUILD = ( - 'Test::Differences' => 0, - 'Test::More' => 0, - 'Test::Warn' => 0, -); +my $CONFIGURE_PREREQS = { + 'ExtUtils::MakeMaker' => '0', +}; -my %DC_PREREQ_PM = ( - 'Devel::Cover' => '0.93', +my $BUILD_PREREQS = { + 'ExtUtils::MakeMaker' => '0', + 'Test::More' => '0', +}; +my $RUN_PREREQS = { + 'B::Debug' => '0', 'Browser::Open' => '0', + 'Capture::Tiny' => '0', + 'Class::XSAccessor' => '0', 'Digest::MD5' => '0', - 'JSON::PP' => '0', + 'HTML::Entities' => '3.69', + 'HTML::Parser' => '0', + 'JSON::MaybeXS' => '1.003003', + 'Moo' => '0', 'PPI::HTML' => '1.07', 'Parallel::Iterator' => '0', 'Pod::Coverage' => '0.06', 'Pod::Coverage::CountParents' => '0', + 'Sereal::Decoder' => '0', + 'Sereal::Encoder' => '0', 'Storable' => '0', 'Template' => '2.00', -); + 'namespace::clean' => '0', + 'Devel::Cover' => '1.29', +}; my %META = ( - configure_requires => { - 'ExtUtils::MakeMaker' => 0, - %DC_CONFIGURE, - }, - build_requires => { - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, - %DC_BUILD, - }, - dynamic_config => 0, - resources => { - bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", + configure_requires => $CONFIGURE_PREREQS, + build_requires => $BUILD_PREREQS, + dynamic_config => 0, + resources => { + bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", @@ -61,7 +61,8 @@ WriteMakefile( VERSION_FROM => $file, ABSTRACT_FROM => $file, PL_FILES => {}, - PREREQ_PM => \%DC_PREREQ_PM, + BUILD_REQUIRES => $BUILD_PREREQS, + PREREQ_PM => $RUN_PREREQS, MIN_PERL_VERSION => '5.008002', META_MERGE => \%META, dist => {