Put this into the tag/0.14 initially (which isn't actually a tag). This should be...
[catagits/Catalyst-Authentication-Credential-OpenID.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 name      "Catalyst-Authentication-Credential-OpenID";
4 all_from  "lib/Catalyst/Authentication/Credential/OpenID.pm";
5 author    "Ashley Pond V <ashley@cpan.org>";
6
7 requires "parent"        => "0.2";
8 requires "Class::Accessor::Fast" => undef;
9 requires "HTML::Parser"     => "3";
10 requires "LWP::UserAgent"    => undef;
11 requires "Cache::FastMmap"    => "1.28";
12 requires "Catalyst"       => "5.7";
13 requires "Catalyst::Devel"    => "1";
14 requires "Crypt::DH"       => "0.05"; # IIRC OpenID stuff forgets to prereq this
15 requires "Net::OpenID::Consumer" => "1.03";
16 requires "Catalyst::Authentication::User::Hash" => undef;
17 requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
18 requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
19 requires "Catalyst::Engine::HTTP" => undef;
20
21 recommends "Config::General"   => "2";
22 recommends "YAML"        => "0.6";
23 recommends "Math::BigInt"    => undef;
24 recommends "LWPx::ParanoidAgent" => "1.03";
25
26 test_requires "Test::More"      => "0.42";
27 test_requires "Net::OpenID::Server" => "1.02";
28 test_requires "Test::WWW::Mechanize" => "1.20";
29 test_requires "Net::DNS"       => undef;
30 test_requires "IO::Socket::INET"   => undef;
31
32 if ( $Module::Install::AUTHOR )
33 {
34     system("pod2text lib/Catalyst/Authentication/Credential/OpenID.pm > README") == 0
35         or die "Couldn't update the README";
36 }
37
38 auto_install;
39 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-OpenID/';
40
41 WriteAll;
42
43 __END__