X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=d53cc28969aac25169211dc7a789cfa0f42866d0;hb=2664a81bf9d84eff55bbc3cd33916297bacdbde4;hp=e9e9b7f871bd92ccd02e607abd27083c174d36be;hpb=8484866421e8caa420e118848629c3b62d6086c3;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index e9e9b7f..d53cc28 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,4 @@ -use inc::Module::Install 0.64; +use inc::Module::Install 0.87; perl_version '5.008001'; @@ -8,11 +8,11 @@ all_from 'lib/Catalyst/Runtime.pm'; requires 'namespace::clean'; requires 'Scope::Upper' => '0.06'; requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801'; -requires 'Moose' => '0.73'; +requires 'Class::MOP' => '0.83'; +requires 'Moose' => '0.76'; requires 'MooseX::MethodAttributes::Inheritable' => '0.09'; requires 'Carp'; requires 'Class::C3::Adopt::NEXT' => '0.07'; -requires 'Class::MOP' => '0.79'; requires 'CGI::Simple::Cookie'; requires 'Data::Dump'; requires 'File::Modified'; @@ -72,7 +72,7 @@ if ($Module::Install::AUTHOR) { # Strip out the author only build_requires from META.yml # Need to do this _after_ WriteAll else it looses track of them - strip_author_only_build_requires(@force_build_requires_if_author); + strip_author_only_build_requires(@force_build_requires_if_author, 'Test::Aggregate'); Meta->{values}{resources} = [ [ 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst' ], @@ -106,6 +106,9 @@ EOF # NOTE - This is the version number of the _incompatible_ code, # not the version number of the fixed version. my %conflicts = ( + 'Catalyst::Controller::AllowDisable' => '0.03', + 'Reaction' => '0.001999', + 'Catalyst::Plugin::Upload::Image::Magick' => '0.03', 'Catalyst::Plugin::ConfigLoader' => '0.22', # Older versions work but # throw Data::Visitor warns 'Catalyst::Devel' => '0.09', @@ -117,6 +120,8 @@ my %conflicts = ( 'CatalystX::Imports' => '0.03', 'Catalyst::Plugin::HashedCookies' => '1.03', 'Catalyst::Action::REST' => '0.67', + 'CatalystX::CRUD' => '0.42', + 'CatalystX::CRUD::Model::RDBO' => '0.20', ); check_conflicts(%conflicts);