X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0e4341d0cea153ef48927ec6293d0192dad783aa;hb=b9df8e39d03e6da167b2598f6ee70fb16c069112;hp=3d98f29af63a77ad8ca1f5a8dca1a80e35ab54a8;hpb=347275d1516a44a395e14c724bf15f7afa944c33;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 3d98f29..0e4341d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use inc::Module::Install 0.97; +use inc::Module::Install 1.00; use strict; use warnings; use POSIX (); @@ -35,7 +35,7 @@ perl_version '5.008001'; all_from 'lib/DBIx/Class.pm'; my $build_requires = { - 'DBD::SQLite' => '1.25', + 'DBD::SQLite' => '1.29', }; my $test_requires = { @@ -48,7 +48,7 @@ my $test_requires = { my $runtime_requires = { 'Carp::Clan' => '6.0', - 'Class::Accessor::Grouped' => '0.09003', + 'Class::Accessor::Grouped' => '0.09004', 'Class::C3::Componentised' => '1.0005', 'Class::Inspector' => '1.24', 'Data::Page' => '2.00', @@ -105,7 +105,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 ) *** *** *** ****************************************************************************** ****************************************************************************** @@ -218,6 +218,7 @@ 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| @@ -264,7 +265,9 @@ if ($Module::Install::AUTHOR && ! $args->{skip_author_deps} ) { } if (keys %removed_build_requires) { - die join ("\n", "\n\nFATAL FAIL! It looks like some author dependencies made it to the META.yml:\n", + die join ("\n", + "\n\nFATAL FAIL! It looks like some author dependencies made it to the META.yml:", + "(most likely a broken Module::Install)\n", map { "\t$_" } (keys %removed_build_requires) ) . "\n\n"; }