X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=27ce1efdc8dfa016d883942bf6133074f90be6eb;hb=26283ee38f220f6c6bae720ea5a189c9c0f47f6f;hp=7d45a685189eb491b3421d656453692478f1ed72;hpb=19f59b4fd16da149a649da5d7cfa5861ea9db35a;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index 7d45a68..27ce1ef 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,6 +5,8 @@ use POSIX (); use 5.006001; # delete this line if you want to send patches for earlier. +# ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ****** + name 'DBIx-Class'; perl_version '5.006001'; all_from 'lib/DBIx/Class.pm'; @@ -40,7 +42,7 @@ requires 'MRO::Compat' => '0.09'; requires 'Module::Find' => '0.06'; requires 'Path::Class' => '0.16'; requires 'Scope::Guard' => '0.03'; -requires 'SQL::Abstract' => '1.56'; +requires 'SQL::Abstract' => '1.58'; requires 'SQL::Abstract::Limit' => '0.13'; requires 'Sub::Name' => '0.04'; @@ -52,17 +54,25 @@ my %replication_requires = ( 'Hash::Merge', => '0.11', ); -# when changing also adjust $DBIx::Class::minimum_sqlt_version -my $sqlt_recommends = '0.11002'; - -recommends 'SQL::Translator' => $sqlt_recommends; - +#************************************************************************# +# Make *ABSOLUTELY SURE* that nothing on this list is a real require, # +# since every module listed in %force_requires_if_author is deleted # +# from the final META.yml (thus will never make it as a CPAN dependency) # +#************************************************************************# my %force_requires_if_author = ( %replication_requires, + # when changing also adjust $DBIx::Class::Storage::DBI::minimum_sqlt_version + 'SQL::Translator' => '0.11002', + # 'Module::Install::Pod::Inherit' => '0.01', - 'Test::Pod::Coverage' => '1.04', - 'SQL::Translator' => $sqlt_recommends, + + # when changing also adjust version in t/02pod.t + 'Test::Pod' => '1.26', + + # when changing also adjust version in t/03podcoverage.t + 'Test::Pod::Coverage' => '1.08', + 'Pod::Coverage' => '0.20', # CDBI-compat related 'DBIx::ContextualFetch' => '0', @@ -104,13 +114,12 @@ my %force_requires_if_author = ( 'DateTime::Format::Oracle' => '0', ) : () , - - $ENV{DBICTEST_SYBASE_DSN} - ? ( - 'DateTime::Format::Sybase' => 0, - ) : () - , ); +#************************************************************************# +# Make *ABSOLUTELY SURE* that nothing on the list aboveis a real require,# +# since every module listed in %force_requires_if_author is deleted # +# from the final META.yml (thus will never make it as a CPAN dependency) # +#************************************************************************# install_script (qw| @@ -126,7 +135,7 @@ resources 'license' => 'http://dev.perl.org/licenses/'; resources 'repository' => 'http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/'; resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class'; -no_index 'DBIx::Class::Storage::DBI::Sybase::Common'; +no_index 'DBIx::Class::Storage::DBI::Sybase::Base'; no_index 'DBIx::Class::SQLAHacks'; no_index 'DBIx::Class::SQLAHacks::MSSQL'; no_index 'DBIx::Class::Storage::DBI::AmbiguousGlob';