X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=blobdiff_plain;f=Makefile.PL;h=5fe648be8549bc5d15412c8753705eeb7faeaac3;hp=62df75f0781835740e590847fd409505e97cf104;hb=70e6d5f7d5881c08702f71c6de80effc2f264ade;hpb=3ac9a26c88e923da4ab7481a71b0d63456f6fe95 diff --git a/Makefile.PL b/Makefile.PL index 62df75f..5fe648b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,6 @@ -use inc::Module::Install 0.97; +use inc::Module::Install 1.00; use strict; use warnings; -use POSIX (); use 5.008001; @@ -25,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 @@ -35,20 +42,20 @@ perl_version '5.008001'; all_from 'lib/DBIx/Class.pm'; my $build_requires = { - 'DBD::SQLite' => '1.25', + 'DBD::SQLite' => '1.29', }; my $test_requires = { 'File::Temp' => '0.22', 'Test::Builder' => '0.33', - 'Test::Exception' => '0', + 'Test::Exception' => '0.31', 'Test::More' => '0.92', 'Test::Warn' => '0.21', }; my $runtime_requires = { 'Carp::Clan' => '6.0', - 'Class::Accessor::Grouped' => '0.09003', + 'Class::Accessor::Grouped' => '0.09008', 'Class::C3::Componentised' => '1.0005', 'Class::Inspector' => '1.24', 'Data::Page' => '2.00', @@ -57,9 +64,9 @@ my $runtime_requires = { 'MRO::Compat' => '0.09', 'Module::Find' => '0.06', 'Path::Class' => '0.18', - 'SQL::Abstract' => '1.67', - 'SQL::Abstract::Limit' => '0.13', + 'SQL::Abstract' => '1.69', 'Sub::Name' => '0.04', + 'Variable::Magic' => '0.44', 'Data::Dumper::Concise' => '1.000', 'Scope::Guard' => '0.03', 'Context::Preserve' => '0.01', @@ -67,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 @@ -105,7 +113,7 @@ EOW ****************************************************************************** *** *** *** AUTHOR MODE: all optional test dependencies converted to hard requires *** -*** ( to disabled re-run Makefile.PL with --skip_author_deps ) *** +*** ( to disable re-run Makefile.PL with --skip_author_deps ) *** *** *** ****************************************************************************** ****************************************************************************** @@ -159,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; @@ -177,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"; @@ -218,19 +226,18 @@ resources 'IRC' => 'irc://irc.perl.org/#dbix-class'; resources 'license' => 'http://dev.perl.org/licenses/'; resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git'; resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class'; +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)