From: Graham Knop Date: Mon, 4 Nov 2013 19:00:21 +0000 (-0500) Subject: CPAN should be in META files X-Git-Tag: v2.000_000~64 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Flocal-lib.git;a=commitdiff_plain;h=845ea87642f93a7cba30096f426532a2ae398d8e CPAN should be in META files --- diff --git a/Makefile.PL b/Makefile.PL index 4dc9ce0..55fed74 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -189,6 +189,7 @@ my %RUN_DEPS = ( 'ExtUtils::MakeMaker' => '6.74', # version PERL_MM_OPT is shell parsed 'ExtUtils::Install' => '1.43', # version INSTALL_BASE was added 'Module::Build' => '0.36', # PERL_MB_OPT + 'CPAN' => '1.82', # sudo support + CPAN::HandleConfig ); my %extra_info = ( @@ -208,7 +209,7 @@ my %extra_info = ( license => [ 'http://dev.perl.org/licenses/' ], }, prereqs => { - runtime => { requires => { %RUN_DEPS, perl => '5.8.1' } }, + runtime => { requires => { perl => '5.8.1' } }, }, ); @@ -223,10 +224,10 @@ END } # don't bother fixing CPAN.pm if bootstrapped from cpanminus -unless ($ENV{PERL5_CPANM_IS_RUNNING}) { - my $required_CPAN = '1.82'; - $RUN_DEPS{'CPAN'} = $required_CPAN; # sudo support + CPAN::HandleConfig - +if ($ENV{PERL5_CPANM_IS_RUNNING}) { + delete $RUN_DEPS{CPAN}; +} +else { # No, really. See # https://rt.cpan.org/Public/Bug/Display.html?id=23735 # for why CPAN now sets the CPANPLUS env var. @@ -274,11 +275,13 @@ DEATH require CPAN; # Explode if it looks like requiring CPAN::HandleConfig should # have worked, but didn't. - die($error) if $CPAN::VERSION >= $required_CPAN; + die($error) if $CPAN::VERSION >= $RUN_DEPS{CPAN}; } } chdir($cwd); +@{$extra_info{prereqs}{runtime}{requires}}{keys %RUN_DEPS} = values %RUN_DEPS; + # have to do this since old EUMM dev releases miss the eval $VERSION line my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.57_07 }; my $mymeta = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.57_02 };