include the r/w repo spec for contributors
[catagits/Catalyst-Runtime.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.91;
4 # Ensure that these get used - yes, M::I loads them for us, but if you're
5 # in author mode and don't have them installed, then the error is tres
6 # cryptic.
7 if ($Module::Install::AUTHOR) { # We could just use them, but telling
8     my @fail;                   # people the set of things they need nicer
9     foreach my $module (qw/
10         Module::Install::AuthorRequires
11         Module::Install::CheckConflicts
12         Module::Install::AuthorTests
13         Module::Install::Authority
14     /) {
15         push(@fail, $module)
16             unless eval qq{require $module; 1;};
17     }
18     die("Module::Install extensions failed, not installed? \n"
19         . join("\n", map { "  $_" } @fail) . "\n") if @fail;
20 }
21
22 perl_version '5.008003';
23
24 name 'Catalyst-Runtime';
25 author 'Sebastian Riedel <sri@cpan.org>';
26 authority('cpan:MSTROUT');
27 all_from 'lib/Catalyst/Runtime.pm';
28
29 requires 'List::MoreUtils';
30 requires 'namespace::autoclean' => '0.09';
31 requires 'namespace::clean' => '0.23';
32 requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00903';
33 requires 'Class::Load' => '0.12';
34 requires 'Class::MOP' => '0.95';
35 requires 'Data::OptList';
36 requires 'Moose' => '1.03';
37 requires 'MooseX::MethodAttributes::Inheritable' => '0.24';
38 requires 'MooseX::Role::WithOverloading' => '0.09';
39 requires 'Carp';
40 requires 'Class::C3::Adopt::NEXT' => '0.07';
41 requires 'CGI::Simple::Cookie' => '1.109';
42 requires 'Data::Dump';
43 requires 'Data::OptList';
44 requires 'HTML::Entities';
45 requires 'HTML::HeadParser';
46 requires 'HTTP::Body'    => '1.06'; # ->cleanup(1)
47 requires 'HTTP::Headers' => '1.64';
48 requires 'HTTP::Request' => '5.814';
49 requires 'HTTP::Response' => '5.813';
50 requires 'HTTP::Request::AsCGI' => '1.0';
51 requires 'LWP::UserAgent';
52 requires 'Module::Pluggable' => '3.9';
53 requires 'Path::Class' => '0.09';
54 requires 'Scalar::Util';
55 requires 'Sub::Exporter';
56 requires 'Text::SimpleTable' => '0.03';
57 requires 'Time::HiRes';
58 requires 'Tree::Simple' => '1.15';
59 requires 'Tree::Simple::Visitor::FindByPath';
60 requires 'Try::Tiny';
61 requires 'Safe::Isa';
62 requires 'URI' => '1.35';
63 requires 'Task::Weaken';
64 requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness
65 requires 'MRO::Compat';
66 requires 'MooseX::Getopt' => '0.48';
67 requires 'String::RewritePrefix' => '0.004'; # Catalyst::Utils::resolve_namespace
68 requires 'Devel::InnerPackage'; # No longer core in blead
69 requires 'Plack' => '0.9991'; # IIS6+7 fix middleware
70 requires 'Plack::Middleware::ReverseProxy' => '0.04';
71 requires 'Plack::Test::ExternalServer';
72
73 # Install the standalone Regex dispatch modules in order to ease the
74 # depreciation transition
75 requires 'Catalyst::DispatchType::Regex' => '5.90021';
76
77 test_requires 'Class::Data::Inheritable';
78 test_requires 'Test::Exception';
79 test_requires 'Test::More' => '0.88';
80 test_requires 'Data::Dump';
81 test_requires 'HTTP::Request::Common';
82
83 # aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate and a Test::Simple it works with is available
84 my @author_requires;
85 if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::Aggregate', '0.364')) {
86     push(@author_requires, 'Test::Aggregate', '0.364');
87     push(@author_requires, 'Test::Simple', '0.88');
88     open my $fh, '>', '.aggregating';
89 }
90 else {
91     unlink '.aggregating';
92     tests 't/*.t t/aggregate/*.t';
93 }
94
95 push(@author_requires, 'CatalystX::LeakChecker', '0.05');
96 push(@author_requires, 'Catalyst::Devel', '1.0'); # For http server test
97
98 author_tests('t/author');
99 author_requires(
100   @author_requires,
101   map {; $_ => 0 } qw(
102   File::Copy::Recursive
103   Catalyst::Engine::PSGI
104   Test::Without::Module
105   Starman
106   MooseX::Daemonize
107   Test::NoTabs
108   Test::Pod
109   Test::Pod::Coverage
110   Test::Spelling
111   Pod::Coverage::TrustPod
112 ));
113
114 if ($Module::Install::AUTHOR) {
115     darwin_check_no_resource_forks();
116 }
117
118 resources(
119     'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst',
120     'IRC'         => 'irc://irc.perl.org/#catalyst',
121     'license',    => 'http://dev.perl.org/licenses/',
122     'homepage',   => 'http://dev.catalyst.perl.org/',
123     # r/w: catagits@git.shadowcat.co.uk:Catalyst-Runtime.git
124     'repository', => 'git://git.shadowcat.co.uk/catagits/Catalyst-Runtime.git',
125 );
126
127 install_script glob('script/*.pl');
128 auto_install;
129 WriteAll;
130
131 print <<"EOF";
132
133  Important:
134
135     This library is for running Catalyst applications.
136
137     For development and use of catalyst.pl and myapp_create.pl, make sure
138     you also install the development tools package Catalyst::Devel.
139
140         perl -MCPANPLUS -e 'install Catalyst::Devel' # or
141         perl -MCPAN -e 'install Catalyst::Devel'     # or
142         cpanm Catalyst::Devel
143
144     To get some commonly used plugins, as well as the TT view and DBIC
145     model, install Task::Catalyst in the same way.
146
147  Have fun!
148 EOF
149
150 # NOTE - This is the version number of the _incompatible_ code,
151 #        not the version number of the fixed version.
152 my %conflicts = (
153     'Catalyst::Plugin::SubRequest' => '0.14',
154     'Catalyst::Model::Akismet' => '0.02',
155     'Catalyst::Component::ACCEPT_CONTEXT' => '0.06',
156     'Catalyst::Plugin::ENV' => '9999', # This plugin is just stupid, full stop
157                                        # should have been a core fix.
158     'Catalyst::Plugin::Unicode::Encoding' => '0.2',
159     'Catalyst::Plugin::Authentication' => '0.10010', # _config accessor in ::Credential::Password
160     'Catalyst::Authentication::Credential::HTTP' => '1.009',
161     'Catalyst::Plugin::Session::Store::File'     => '0.16',
162     'Catalyst::Plugin::Session'                  => '0.21',
163     'Catalyst::Plugin::Session::State::Cookie'   => '0.10',
164     'Catalyst::Plugin::Session::Store::FastMmap' => '0.09',
165     'Catalyst::Controller::AllowDisable'         => '0.03',
166     'Reaction'                                   => '0.001999',
167     'Catalyst::Plugin::Upload::Image::Magick'    => '0.03',
168     'Catalyst::Plugin::ConfigLoader'             => '0.22', # Older versions work but
169                                                   # throw Data::Visitor warns
170     'Catalyst::Devel'                            => '1.19',
171     'Catalyst::Plugin::SmartURI'                 => '0.032',
172     'CatalystX::CRUD'                            => '0.37',
173     'Catalyst::Action::RenderView'               => '0.07',
174     'Catalyst::Plugin::DebugCookie'              => '0.999002',
175     'Catalyst::Plugin::Authentication'           => '0.100091',
176     'CatalystX::Imports'                         => '0.03',
177     'Catalyst::Plugin::HashedCookies'            => '1.03',
178     'Catalyst::Action::REST'                     => '0.67',
179     'CatalystX::CRUD'                            => '0.42',
180     'CatalystX::CRUD::Model::RDBO'               => '0.20',
181     'Catalyst::View::Mason'                      => '0.17',
182 #    Note these are not actually needed - they fail tests against the
183 #    new version, but still work fine..
184 #    'Catalyst::ActionRole::ACL'                  => '0.05',
185 #    'Catalyst::Plugin::Session::Store::DBIC'     => '0.11',
186       'Test::WWW::Mechanize::Catalyst'            => '0.53', # Dep warnings unless upgraded.
187 );
188 check_conflicts(%conflicts);
189
190 # End of script, helper functions below.
191
192 sub darwin_check_no_resource_forks {
193     if ($^O eq 'darwin') {
194         my $osx_ver = `/usr/bin/sw_vers -productVersion`;
195         chomp $osx_ver;
196
197         # TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE
198         # On 10.5 (Leopard) it wants COPYFILE_DISABLE
199         my $attr = $osx_ver =~ /^10.(5|6|7|8)/  ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE';
200
201         makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}.
202                                           qq{ echo "You must set the ENV variable $attr to 'true',"; }.
203                                           ' echo "to avoid getting resource forks in your dist."; exit 255; fi' });
204     }
205 }