Merge branch pass_component_names:
[catagits/Catalyst-Runtime.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 perl_version '5.008001';
4
5 name 'Catalyst-Runtime';
6 all_from 'lib/Catalyst/Runtime.pm';
7
8 requires 'namespace::autoclean';
9 requires 'namespace::clean';
10 requires 'B::Hooks::EndOfScope' => '0.08';
11 requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801';
12 requires 'Class::MOP' => '0.83';
13 requires 'Moose' => '0.78';
14 requires 'MooseX::MethodAttributes::Inheritable' => '0.14';
15 requires 'Carp';
16 requires 'Class::C3::Adopt::NEXT' => '0.07';
17 requires 'CGI::Simple::Cookie';
18 requires 'Data::Dump';
19 requires 'HTML::Entities';
20 requires 'HTTP::Body'    => '1.04'; # makes uploadtmp work
21 requires 'HTTP::Headers' => '1.64';
22 requires 'HTTP::Request';
23 requires 'HTTP::Response';
24 requires 'HTTP::Request::AsCGI' => '0.8';
25 requires 'LWP::UserAgent';
26 requires 'Module::Pluggable' => '3.9';
27 requires 'Path::Class' => '0.09';
28 requires 'Scalar::Util';
29 requires 'Sub::Exporter';
30 requires 'Text::SimpleTable' => '0.03';
31 requires 'Time::HiRes';
32 requires 'Tree::Simple' => '1.15';
33 requires 'Tree::Simple::Visitor::FindByPath';
34 requires 'URI' => '1.35';
35 requires 'Task::Weaken';
36 requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness
37 requires 'MRO::Compat';
38 requires 'String::RewritePrefix' => '0.004'; # Catalyst::Utils::resolve_namespace
39
40 recommends 'B::Hooks::OP::Check::StashChange';
41
42 test_requires 'Class::Data::Inheritable';
43 test_requires 'Test::Exception';
44
45 # aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate and a Test::Simple it works with is available
46 if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::Aggregate', '0.35_05')) {
47     author_requires('Test::Aggregate', '0.35_05');
48     author_requires('Test::Simple', '0.88');
49 }
50 else {
51     tests join q{ },
52         grep { $_ ne 't/aggregate.t' }
53         map  { glob } qw[t/*.t t/aggregate/*.t];
54 }
55
56 author_requires(map {; $_ => 0 } qw(
57   Test::NoTabs
58   Test::Pod
59   Test::Pod::Coverage
60   Pod::Coverage
61 ));
62
63 if ($Module::Install::AUTHOR) {
64     darwin_check_no_resource_forks();
65 }
66
67 resources(
68     'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst',
69     'IRC'         => 'irc://irc.perl.org/#catalyst',
70     'license',    => 'http://dev.perl.org/licenses/',
71     'homepage',   => 'http://dev.catalyst.perl.org/',
72     'repository', => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/',
73 );
74
75 install_script glob('script/*.pl');
76 auto_install;
77 WriteAll;
78
79 print <<"EOF";
80
81  Important:
82
83     This library is for running Catalyst applications.
84
85     For development and use of catalyst.pl and myapp_create.pl, make sure
86     you also install the development tools package Catalyst::Devel.
87
88         perl -MCPANPLUS -e 'install Catalyst::Devel' # or
89         perl -MCPAN -e 'install Catalyst::Devel'
90
91     To get some commonly used plugins, as well as the TT view and DBIC
92     model, install Task::Catalyst in the same way.
93
94  Have fun!
95 EOF
96
97 # NOTE - This is the version number of the _incompatible_ code,
98 #        not the version number of the fixed version.
99 my %conflicts = (
100     'Catalyst::Component::ACCEPT_CONTEXT' => '0.06',
101     'Catalyst::Plugin::ENV' => '9999', # This plugin is just stupid, full stop
102                                        # should have been a core fix.
103     'Catalyst::Plugin::Unicode::Encoding' => '0.2',
104     'Catalyst::Authentication::Credential::HTTP' => '1.009',
105     'Catalyst::Plugin::Session::Store::File' => '0.16',
106     'Catalyst::Plugin::Session' => '0.21',
107     'Catalyst::Plugin::Session::State::Cookie' => '0.10',
108     'Catalyst::Plugin::Session::Store::FastMmap' => '0.09',
109     'Catalyst::Controller::AllowDisable' => '0.03',
110     'Reaction' => '0.001999',
111     'Catalyst::Plugin::Upload::Image::Magick' => '0.03',
112     'Catalyst::Plugin::ConfigLoader'   => '0.22', # Older versions work but
113                                                   # throw Data::Visitor warns
114     'Catalyst::Devel'                  => '0.09',
115     'Catalyst::Plugin::SmartURI'       => '0.032',
116     'CatalystX::CRUD'                  => '0.37',
117     'Catalyst::Action::RenderView'     => '0.07',
118     'Catalyst::Plugin::DebugCookie'    => '0.999002',
119     'Catalyst::Plugin::Authentication' => '0.100091',
120     'CatalystX::Imports'               => '0.03',
121     'Catalyst::Plugin::HashedCookies'  => '1.03',
122     'Catalyst::Action::REST'           => '0.67',
123     'CatalystX::CRUD'                  => '0.42',
124     'CatalystX::CRUD::Model::RDBO'     => '0.20',
125 );
126 check_conflicts(%conflicts);
127
128 # End of script, helper functions below.
129
130 sub darwin_check_no_resource_forks {
131     if ($^O eq 'darwin') {
132         my $osx_ver = `/usr/bin/sw_vers -productVersion`;
133         chomp $osx_ver;
134
135         # TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE
136         # On 10.5 (Leopard) it wants COPYFILE_DISABLE
137         die("Oh, you got Snow Lepoard, snazzy. Please read the man page for tar to find out if Apple renamed COPYFILE_DISABLE again and fix this Makefile.PL please?\n") if $osx_ver =~ /^10.6/;
138         my $attr = $osx_ver =~ /^10.5/ ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE';
139
140         makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}.
141                                           qq{ echo "You must set the ENV variable $attr to true,"; }.
142                                           ' echo "to avoid getting resource forks in your dist."; exit 255; fi' });
143     }
144 }