X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f10d2d9c328f3215860e8f5e206225123f963a87;hb=652452208e616becca6cfd0f16956339410da6d0;hp=8fa4ddbc373d6a825d5fd6604ada29e4578962ef;hpb=6a247f3368100ac0557e33cc534bc8ad0ccb1175;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 8fa4ddb..f10d2d9 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,8 +64,9 @@ 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', + 'Variable::Magic' => '0.44', 'Data::Dumper::Concise' => '1.000', 'Scope::Guard' => '0.03', 'Context::Preserve' => '0.01', @@ -65,6 +74,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 @@ -157,7 +167,7 @@ if ($Module::Install::AUTHOR) { print "Regenerating Optional/Dependencies.pod\n"; require DBIx::Class::Optional::Dependencies; - DBIx::Class::Optional::Dependencies->_gen_pod; + DBIx::Class::Optional::Dependencies->_gen_pod (Meta->version); # FIXME Disabled due to unsolved issues, ask theorbtwo # require Module::Install::Pod::Inherit; @@ -175,7 +185,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"; @@ -221,15 +231,13 @@ resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class' # Deprecated/internal modules need no exposure no_index directory => $_ for (qw| lib/DBIx/Class/Admin - lib/DBIx/Class/SQLAHacks lib/DBIx/Class/PK/Auto lib/DBIx/Class/CDBICompat |); no_index package => $_ for (qw/ - DBIx::Class::SQLAHacks DBIx::Class::Storage::DBIHacks + DBIx::Class::Storage::DBIHacks /); - WriteAll(); # Re-write META.yml to _exclude_ all forced requires (we do not want to ship this)