X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=5b493d20bbe3eb3b197b9cb0d38c496c89acd5d1;hb=f1577a8d3d13778edacf04a6fb977fa75437b791;hp=2b976ee0ffb833ccf2d4c2f5255a0f1bc078a5b5;hpb=7f2c37b8665b550c2398fabdce5b4e18f082122b;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 2b976ee..5b493d2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -49,6 +49,7 @@ my $runtime_requires = { 'Class::Inspector' => '1.24', 'Data::Page' => '2.00', 'DBI' => '1.609', + 'File::Path' => '2.07', 'MRO::Compat' => '0.09', 'Module::Find' => '0.06', 'Path::Class' => '0.18', @@ -60,6 +61,7 @@ my $runtime_requires = { 'Context::Preserve' => '0.01', 'Try::Tiny' => '0.04', 'namespace::clean' => '0.14', + 'Math::Base36' => '0.07', }; # this is so we can order requires alphabetically @@ -166,14 +168,16 @@ tests_recursive (qw| # temporary(?) until I get around to fix M::I wrt xt/ # needs Module::Install::AuthorTests -eval { +eval { recursive_author_tests (qw/xt/); 1; } || do { - my $err = $@; - eval { require Module::Install::AuthorTests } - || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL:\n\n$@\n"; - die $@; + unless ($args->{skip_author_deps}) { + my $err = $@; + eval { require Module::Install::AuthorTests } + || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL:\n\n$@\n"; + die $@; + } };