X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=953aff39ec11576fc79c36dfea75b68dd93c8489;hb=54859563673e4a200fa8c83956bc3aca809dfdfb;hp=a50a505f0c85a41b66a0b34bef6af00ae430849b;hpb=9992a5990019714a7272a6b656acae25d95e46c3;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index a50a505..953aff3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -9,7 +9,7 @@ requires 'namespace::clean'; requires 'Scope::Upper' => '0.06'; requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801'; requires 'Moose' => '0.73'; -requires 'MooseX::MethodAttributes::Inheritable' => '0.05'; +requires 'MooseX::MethodAttributes::Inheritable' => '0.08'; requires 'Carp'; requires 'Class::C3::Adopt::NEXT' => '0.07'; requires 'Class::MOP' => '0.79'; @@ -40,17 +40,16 @@ recommends 'B::Hooks::OP::Check::StashChange'; test_requires 'Class::Data::Inheritable'; test_requires 'Test::MockObject'; -# Run aggregate tests if AGGREGATE_TESTS environment = 1, but not if it = 0 -# Otherwise default to using Test::Aggregate if installed, but not requiring it. -if ( ( exists $ENV{AGGREGATE_TESTS} && !$ENV{AGGREGATE_TESTS}) - || (!exists $ENV{AGGREGATE_TESTS} && !can_use('Test::Aggregate', '0.34_01'))) { +# aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate is available +if ($ENV{AGGREGATE_TESTS} && can_use('Test::Aggregate', '0.34_01')) { + test_requires('Test::Aggregate', '0.34_01'); +} +else { tests join q{ }, grep { $_ ne 't/aggregate.t' } map { glob } qw[t/*.t t/aggregate/*.t]; } -else { - test_requires('Test::Aggregate', '0.34_01'); -} + my @force_build_requires_if_author = qw( Test::NoTabs Test::Pod @@ -107,6 +106,8 @@ EOF # NOTE - This is the version number of the _incompatible_ code, # not the version number of the fixed version. my %conflicts = ( + 'Catalyst::Plugin::ConfigLoader' => '0.22', # Older versions work but + # throw Data::Visitor warns 'Catalyst::Devel' => '0.09', 'Catalyst::Plugin::SmartURI' => '0.029', 'CatalystX::CRUD' => '0.37', @@ -115,6 +116,7 @@ my %conflicts = ( 'Catalyst::Plugin::Authentication' => '0.100091', 'CatalystX::Imports' => '0.03', 'Catalyst::Plugin::HashedCookies' => '1.03', + 'Catalyst::Action::REST' => '0.67', ); check_conflicts(%conflicts);