X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=59c0a393ed2c79b288969a1264a8b72acc9d7155;hb=44a9ed75e5d936e96ce63cfb13c943ab3f59dc52;hp=3c1ba129a26ea7ee21ca39334822ff2d9e14bd68;hpb=52d05eb578fb19f0e04e08436edc4ba1d659db79;p=catagits%2FGitalist.git diff --git a/Makefile.PL b/Makefile.PL index 3c1ba12..59c0a39 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,6 +7,7 @@ use inc::Module::Install 0.91; use Module::Install::AuthorRequires; use Module::Install::AuthorTests; use Module::Install::ReadmeFromPod; +use Module::Install::ProvidesClass; name 'Gitalist'; all_from 'lib/Gitalist.pm'; @@ -16,8 +17,7 @@ author 'Dan Brook '; license 'gpl2'; -# Want trunk for FCGI to work correctly.. -requires 'Catalyst::Runtime' => '5.80014'; +requires 'Catalyst::Runtime' => '5.8001402'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::StackTrace'; requires 'Catalyst::Plugin::Static::Simple'; @@ -47,7 +47,6 @@ requires 'CGI'; requires 'DateTime'; requires 'DateTime::Format::Mail'; requires 'File::Copy::Recursive'; -requires 'File::Stat::ModeString'; requires 'File::Which'; requires 'HTML::Entities'; requires 'IPC::Run'; @@ -65,9 +64,14 @@ author_requires 'Test::Pod' => '1.14'; author_requires 'Test::Pod::Coverage' => '1.04'; test_requires 'Test::More' => '0.88'; +test_requires 'Test::utf8' => '0.02'; + +resources bugtracker => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Gitalist'; +resources repository => 'git://git.shadowcat.co.uk/catagits/Gitalist.git'; catalyst; +auto_provides_class; author_tests 't/author'; install_script glob('script/*.pl'); auto_install;