X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=4a1b1c18c0780f269c0921ecb323173cc9d37555;hb=f82e1b2b114c99ad6712cb93003338ae5d0423a5;hp=3361aacfe85077aa51e217e53d84e3b0bf32e5e6;hpb=807303a1658f895c41417beba24d24ff9b71c194;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index 3361aac..4a1b1c1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -43,7 +43,6 @@ my %META = ( 'HTTP::Headers' => '1.64', 'HTTP::Request' => '5.814', 'HTTP::Response' => '5.813', - 'HTTP::Request::AsCGI' => '1.0', 'Module::Pluggable' => '4.7', 'Path::Class' => '0.09', 'Scalar::Util' => 0, @@ -51,7 +50,7 @@ my %META = ( 'Text::SimpleTable' => '0.03', 'Time::HiRes' => 0, 'Tree::Simple' => '1.15', - 'Tree::Simple::Visitor::FindByPath' => 0, + 'Tree::Simple::Visitor::FindByUID' => 0, 'Try::Tiny' => '0.17', 'Safe::Isa' => 0, 'Task::Weaken' => 0, @@ -63,7 +62,6 @@ my %META = ( 'Plack' => '0.9991', # IIS6+7 fix middleware 'Plack::Middleware::ReverseProxy' => '0.04', 'Plack::Test::ExternalServer' => 0, - 'Class::Data::Inheritable' => 0, 'Encode' => '2.49', 'LWP' => '5.837', # LWP had unicode fail in 5.8.26 'URI' => '1.65', @@ -87,14 +85,13 @@ my %META = ( }, develop => { requires => { - 'Test::Aggregate' => '0.364', 'Test::Simple' => '0.88', 'CatalystX::LeakChecker' => '0.05', 'Catalyst::Devel' => '1.0', # For http server test 'Catalyst::Engine::PSGI' => 0, 'Test::WWW::Mechanize::Catalyst' => '0.51', 'Test::TCP' => '2.00', # ditto, ships Net::EmptyPort - 'File::Copy::Recursive' => 0, + 'File::Copy::Recursive' => '0.40', 'Starman' => 0, 'MooseX::Daemonize' => 0, 'Test::NoTabs' => 0, @@ -165,14 +162,7 @@ my %META = ( x_authority => 'cpan:MSTROUT', ); -my $tests = 't/*.t'; -if ($ENV{AGGREGATE_TESTS} && eval { require Test::Aggregate; Test::Aggregate->VERSION(0.364); }) { - open my $fh, '>', '.aggregating'; -} -else { - unlink '.aggregating'; - $tests .= ' t/aggregate/*.t'; -} +my $tests = 't/*.t t/aggregate/*.t'; my %MM_ARGS = ( test => { TESTS => $tests },