X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=cac6e77b65309e1e207478778bc2389144e7a7e3;hb=39c9c72df61c84b595715e3d164bacc0b8e68439;hp=40806a12fb496db3f3507817caa664ce145d2016;hpb=ccebe1f11c68b097a0446853b9c39a5af9cf8403;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 40806a1..cac6e77 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -24,6 +24,14 @@ if (@ARGV) { warn "\nIgnoring unrecognized option(s): @ARGV\n\n"; } +# get cpanX --installdeps . to behave in a checkout (most users do not need +# the deps for a full test suite run, and if they do - there's MI::AutoInstall +# for that) +## +## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad) +## +$Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) ); + ### ### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends() ### All of them should go to DBIx::Class::Optional::Dependencies @@ -56,7 +64,7 @@ my $runtime_requires = { 'MRO::Compat' => '0.09', 'Module::Find' => '0.06', 'Path::Class' => '0.18', - 'SQL::Abstract' => '1.67', + 'SQL::Abstract' => '1.68', 'Sub::Name' => '0.04', 'Data::Dumper::Concise' => '1.000', 'Scope::Guard' => '0.03', @@ -65,6 +73,7 @@ my $runtime_requires = { 'namespace::clean' => '0.14', 'Math::BigInt' => '1.89', 'Math::Base36' => '0.07', + 'Config::Any' => '0.20', }; # this is so we can order requires alphabetically @@ -175,7 +184,7 @@ eval { recursive_author_tests (qw/xt/); 1; } || do { - unless ($args->{skip_author_deps}) { + if ($Module::Install::AUTHOR && ! $args->{skip_author_deps}) { my $err = $@; eval { require Module::Install::AuthorTests } || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL in author mode (or supply --skip_author_deps):\n\n$@\n";