X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FTask-Catalyst.git;a=blobdiff_plain;f=Makefile.PL;h=d3c7fdac197073f94e7cce7cc25870568c3fb30b;hp=5e5f2aef193a48c7bca89d6c94f56e1275f2c92c;hb=61f8dc4ead9f167a03f3e94412443cea81094f2c;hpb=89d7750a41852ad0a5174e38f3d1f42495b465e6 diff --git a/Makefile.PL b/Makefile.PL index 5e5f2ae..d3c7fda 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,73 +1,84 @@ -use inc::Module::Install; - -name('Task-Catalyst'); -abstract('All you need to start with Catalyst'); -author('Sebastian Riedel'); -version_from('Catalyst.pm'); -license('perl'); - -include('ExtUtils::AutoInstall'); - -requires( 'Catalyst' => '5.57' ); - -features( - 'FormValidator Support' => [ - -default => 1, - 'Catalyst::Plugin::FormValidator' => 0 - ], - 'FormValidator::Simple Support' => [ - -default => 1, - 'Catalyst::Plugin::FormValidator::Simple' => 0 - ], - 'FillInForm Support' => [ - -default => 1, - 'Catalyst::Plugin::FillInForm' => 0 - ], - 'Prototype Support' => [ - -default => 1, - 'Catalyst::Plugin::Prototype' => 0 - ], - 'Singleton Support' => [ - -default => 1, - 'Catalyst::Plugin::Singleton' => 0 - ], - 'DefaultEnd Support' => [ - -default => 1, - 'Catalyst::Plugin::DefaultEnd' => 0 - ], - 'SubRequest Support' => [ - -default => 1, - 'Catalyst::Plugin::SubRequest' => 0 - ], - 'Session Support' => [ - -default => 1, - 'Catalyst::Plugin::Session' => 0, - 'Catalyst::Plugin::Session::Store::File' => 0, - 'Catalyst::Plugin::Session::State::Cookie' => 0, - 'Catalyst::Plugin::Session::State::URI' => 0 - ], - 'DBIx::Class Support' => [ - -default => 1, - 'Catalyst::Model::DBIC' => 0, - 'Catalyst::Model::DBIC::Plain' => 0 - ], - 'Template::Toolkit Support' => [ - -default => 1, - 'Catalyst::View::TT' => 0 - ], - 'Test::WWW::Mechanize Support' => [ - -default => 1, - 'Test::WWW::Mechanize::Catalyst' => 0 - ], - 'SQLite Support' => [ - -default => 1, - 'DBD::SQLite' => 0 - ], - 'YAML Support' => [ - -default => 1, - 'YAML' => 0 - ] -); - -auto_install(); -&WriteAll; +use inc::Module::Install 0.64; + +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::Widget Support', + -default => 1, + 'Date::Calc' => 0, + 'Catalyst::Plugin::HTML::Widget' => '1.1'; + +feature 'FormBuilder Support', + -default => 1, + 'Catalyst::Controller::FormBuilder' => '1.06'; + +feature 'Stacktrace Advanced Debugging Support', + -default => 1, + 'Catalyst::Plugin::StackTrace' => '0.02'; + +feature 'Prototype Support', + -default => 1, + 'Catalyst::Plugin::Prototype' => '1.32'; + +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::Plugin::Authentication::Store::DBIC' => '0.04', + 'Catalyst::Plugin::Authentication::Store::Htpasswd' => '0.02', + 'Catalyst::Plugin::Authorization::ACL' => '0.06', + 'Catalyst::Plugin::Authorization::Roles' => '0.03'; + +feature 'I18N Support', + -default => 1, + 'Catalyst::Plugin::I18N' => '0.05'; + +feature 'BindLex Support', + -default => 1, + 'Catalyst::Controller::BindLex' => '0.03'; + +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;