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