X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=4d2970fa882776903fb2d14079b40d520a995fc3;hb=e1bf6e1444fd3032b70900401d88860a186083be;hp=219fb9b066f55247c03073bc1e8f8eabc2f2faca;hpb=f930a8cf8f29f78ea7dd1de8893a1aa525530af9;p=catagits%2FTask-Catalyst.git diff --git a/Makefile.PL b/Makefile.PL index 219fb9b..4d2970f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,25 +1,74 @@ -use inc::Module::Install; - -name('Task::Catalyst'); -abstract('All you need to start with Catalyst'); -author('Sebastian Riedel'); -version_from('Catalyst.pm'); -license('perl'); - -requires('Catalyst'); -requires('Catalyst::Plugin::FormValidator'); -requires('Catalyst::Plugin::FormValidator::Simple'); -requires('Catalyst::Plugin::FillInForm'); -requires('Catalyst::Plugin::Prototype'); -requires('Catalyst::Plugin::Singleton'); -requires('Catalyst::Plugin::DefaultEnd'); -requires('Catalyst::Plugin::SubRequest'); -requires('Catalyst::Plugin::Session'); -requires('Catalyst::Plugin::Session::Store::File'); -requires('Catalyst::Plugin::Session::State::Cookie'); -requires('Catalyst::Plugin::Session::State::URI'); -requires('Catalyst::Model::DBIC'); -requires('Catalyst::Model::DBIC::Plain'); -requires('Catalyst::View::TT'); -requires('DBD::SQLite'); -requires('YAML'); +use inc::Module::Install 0.67; + +name 'Task-Catalyst'; +all_from 'lib/Task/Catalyst.pm'; + +requires 'Catalyst' => '5.7007'; +requires 'Catalyst::Devel' => '1.02'; + +feature 'Apache/mod_perl Support', + -default => 1, + 'Catalyst::Engine::Apache' => '1.09'; + +feature 'FastCGI Support', + -default => 1, + 'FCGI' => 0, + 'FCGI::ProcManager' => 0; + +feature 'PAR Support', + -default => 1, + 'PAR' => 0; + +feature 'Log4perl Support', + -default => 1, + 'Params::Validate' => 0, + 'Catalyst::Log::Log4perl' => '0.1'; + +feature 'HTML::FormFu Support', + -default => 1, + 'Catalyst::Controller::HTML::FormFu' => '0.03'; + +feature 'FormBuilder Support', + -default => 0, + 'Catalyst::Controller::FormBuilder' => '0.03'; + +feature 'Stacktrace Advanced Debugging Support', + -default => 1, + 'Catalyst::Plugin::StackTrace' => '0.02'; + +feature 'Session Support', + -default => 1, + 'Catalyst::Plugin::Session' => '0.05', + 'Catalyst::Plugin::Session::Store::File' => '0.07', + 'Catalyst::Plugin::Session::State::Cookie' => '0.02', + 'Catalyst::Plugin::Session::State::URI' => '0.02'; + +feature 'Authentication/Authorization Support', + -default => 1, + 'Catalyst::Plugin::Authentication' => '0.05', + 'Catalyst::Authentication::Store::DBIx::Class' => '0.04', + 'Catalyst::Plugin::Authorization::ACL' => '0.06', + 'Catalyst::Plugin::Authorization::Roles' => '0.03'; + +feature 'I18N Support', + -default => 1, + 'Catalyst::Plugin::I18N' => '0.05'; + +feature 'DBIx::Class Support', + -default => 1, + 'Catalyst::Model::DBIC::Schema' => '0.08'; + +feature 'Template::Toolkit Support', + -default => 1, + 'Catalyst::View::TT' => '0.22'; + +feature 'Test::WWW::Mechanize Support', + -default => 1, + 'Test::WWW::Mechanize::Catalyst' => '0.35'; + +feature 'SQLite Support (WARNING: requires a C compiler!)', + -default => 0, + 'DBD::SQLite' => 0; + +auto_install; +WriteAll;