X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=364a8d25cc49d0c4c22a43648b64a7b22c92e6f8;hb=ebb63b018a8a7ce6b3f3e0f679ee1cff88b5ccb8;hp=e26b0a7e1cf045aa44a4fdf9d4236fe26ebd0958;hpb=fef5d100c208d604c7a7b3c33eb6e32946d71848;p=dbsrgits%2FDBIx-Class.git diff --git a/Build.PL b/Build.PL index e26b0a7..364a8d2 100644 --- a/Build.PL +++ b/Build.PL @@ -6,20 +6,28 @@ my %arguments = ( license => 'perl', module_name => 'DBIx::Class', requires => { - 'Data::Page' => 0, - 'DBI' => 0, - 'UNIVERSAL::require' => 0, - 'NEXT' => 0, + 'Data::Page' => 2.00, 'Scalar::Util' => 0, - 'SQL::Abstract' => 1.19, - 'SQL::Abstract::Limit' => 0.033, - 'DBD::SQLite' => 1.08, - 'Tie::IxHash' => 0, + 'SQL::Abstract' => 1.20, + 'SQL::Abstract::Limit' => 0.101, + 'Class::C3' => 0.11, 'Storable' => 0, + 'Class::Data::Accessor' => 0.01, + 'Carp::Clan' => 0, + 'DBI' => 1.40, + }, + build_requires => { + 'DBD::SQLite' => 1.11, + }, + recommends => { + 'Data::UUID' => 0, + 'Module::Find' => 0, + 'Class::Inspector' => 0, }, create_makefile_pl => 'passthrough', create_readme => 1, - test_files => [ glob('t/*.t'), glob('t/*/*.t') ] + test_files => [ glob('t/*.t'), glob('t/*/*.t') ], + script_files => [ glob('script/*') ], ); Module::Build->new(%arguments)->create_build_script;