X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=7aaeaa6d08d9bb755be38f7a231e63d6b7046d22;hb=c1fdb4609f77e41f9d0a8ff436adb6b97d26724e;hp=3b4f588bfde9bbc72643a66450c41c66717db5f6;hpb=0424d17af479679e643a7600078c310a032f46fd;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 3b4f588..7aaeaa6 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use inc::Module::Install 0.93; +use inc::Module::Install 0.97; use strict; use warnings; use POSIX (); @@ -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', @@ -135,9 +136,9 @@ for my $mod (sort keys %final_req) { } # output twice since the deplist is > 70 lines -warn $optdep_msg; +warn $optdep_msg if $Module::Install::AUTHOR; auto_install(); -warn $optdep_msg; +warn $optdep_msg if $Module::Install::AUTHOR; # re-create various autogenerated documentation bits if ($Module::Install::AUTHOR) { @@ -159,10 +160,24 @@ if ($Module::Install::AUTHOR) { # PodInherit(); } + tests_recursive (qw| t |); +# temporary(?) until I get around to fix M::I wrt xt/ +# needs Module::Install::AuthorTests +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 $@; +}; + + install_script (qw| script/dbicadmin |); @@ -190,11 +205,10 @@ create_distdir : manifest EOP - - +homepage 'http://www.dbix-class.org/'; resources 'IRC' => 'irc://irc.perl.org/#dbix-class'; resources 'license' => 'http://dev.perl.org/licenses/'; -resources 'repository' => 'http://dev.catalyst.perl.org/repos/bast/DBIx-Class/'; +resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git'; resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class'; # Deprecated/internal modules need no exposure