]> git.vpit.fr Git - perl/modules/Task-Devel-Cover-Recommended.git/blobdiff - Makefile.PL
This is 1.200.0
[perl/modules/Task-Devel-Cover-Recommended.git] / Makefile.PL
index fa2dec9677d339755bf1f3de6074c097fc397710..8c5b2dad3bdbd9693a4fcb4182542fa1349b7ec1 100644 (file)
@@ -11,43 +11,38 @@ 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 = {
  'Browser::Open'               => '0',
+ 'Capture::Tiny'               => '0',
+ 'Class::XSAccessor'           => '0',
  'Digest::MD5'                 => '0',
  'JSON::PP'                    => '0',
+ 'Moo'                         => '0',
  'PPI::HTML'                   => '1.07',
  'Parallel::Iterator'          => '0',
  'Pod::Coverage'               => '0.06',
  'Pod::Coverage::CountParents' => '0',
  'Storable'                    => '0',
  'Template'                    => '2.00',
-);
+ 'namespace::clean'            => '0',
+ 'Devel::Cover'                => '1.20',
+};
 
 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 +56,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             => {