X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=21751bce37295cdfde66f8663376996f07c85c0e;hb=999d871c5fd4acefbb6a066af8f970df27b966cf;hp=13fb8238013f2e358c4c4907b9080a77a5589685;hpb=012b777942e2a14d560cfb9015a9a19583d67060;p=catagits%2FTask-Catalyst.git diff --git a/Makefile.PL b/Makefile.PL index 13fb823..21751bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,27 +1,74 @@ -use inc::Module::Install; +use inc::Module::Install 0.64; -name('Task-Catalyst'); -abstract('All you need to start with Catalyst'); -author('Sebastian Riedel'); -version_from('Catalyst.pm'); -license('perl'); +name 'Task-Catalyst'; +all_from 'lib/Task/Catalyst.pm'; -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'); +requires 'Catalyst' => '5.7006'; +requires 'Catalyst::Devel' => '1.01'; -&WriteAll; +features( + 'Log4perl Support' => [ + -default => 1, + 'Params::Validate' => 0, + 'Catalyst::Log::Log4perl' => '0.1' + ], + 'HTML::Widget Support' => [ + -default => 1, + 'Date::Calc' => 0, + 'Catalyst::Plugin::HTML::Widget' => '1.1' + ], + 'Stacktrace Advanced Debugging Support' => [ + -default => 1, + 'Catalyst::Plugin::StackTrace' => '0.02' + ], + 'Prototype Support' => [ + -default => 1, + 'Catalyst::Plugin::Prototype' => '1.32' + ], + 'DefaultEnd Support' => [ + -default => 1, + 'Catalyst::Plugin::DefaultEnd' => '0.03' + ], + 'SubRequest Support' => [ + -default => 1, + 'Catalyst::Plugin::SubRequest' => '0.10' + ], + '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' + ], + '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', + ], + 'I18N Support' => [ + -default => 1, + 'Catalyst::Plugin::I18N' => '0.05' + ], + 'DBIx::Class Support' => [ + -default => 1, + 'Catalyst::Model::DBIC::Schema' => '0.08' + ], + 'Template::Toolkit Support' => [ + -default => 1, + 'Catalyst::View::TT' => '0.22' + ], + 'Test::WWW::Mechanize Support' => [ + -default => 1, + 'Test::WWW::Mechanize::Catalyst' => '0.35' + ], + 'SQLite Support (WARNING: requires a C compiler!)' => [ + -default => 0, + 'DBD::SQLite' => 0 + ] +); + +auto_install; +WriteAll;