X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ee226f9d549ea7f602da04edea3ef1d449bc321d;hb=be45468751eff3913bbed8a8edc6aa853619adc7;hp=2c383397ec55ac9209e8cf0e34676bb0f940a2ba;hpb=b553e30c12cade787e4c26ca54f19983577bdb30;p=catagits%2FCatalyst-Runtime.git diff --git a/Makefile.PL b/Makefile.PL index 2c38339..ee226f9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,7 @@ all_from 'lib/Catalyst/Runtime.pm'; requires 'namespace::clean'; requires 'Scope::Upper' => '0.06'; requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801'; +requires 'Class::MOP' => '0.83'; requires 'Moose' => '0.76'; requires 'MooseX::MethodAttributes::Inheritable' => '0.09'; requires 'Carp'; @@ -71,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' ], @@ -105,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', @@ -116,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);