Merge 'trunk' into 'better_scripts'
[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';
18 requires 'namespace::clean';
19 requires 'namespace::autoclean';
20 requires 'B::Hooks::EndOfScope' => '0.08';
21 requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801';
22 requires 'Class::MOP' => '0.83';
23 requires 'Moose' => '0.78';
24 requires 'MooseX::MethodAttributes::Inheritable' => '0.15';
25 requires 'Carp';
26 requires 'Class::C3::Adopt::NEXT' => '0.07';
27 requires 'CGI::Simple::Cookie';
28 requires 'Data::Dump';
29 requires 'HTML::Entities';
30 requires 'HTTP::Body'    => '1.04'; # makes uploadtmp work
31 requires 'HTTP::Headers' => '1.64';
32 requires 'HTTP::Request';
33 requires 'HTTP::Response';
34 requires 'HTTP::Request::AsCGI' => '0.8';
35 requires 'LWP::UserAgent';
36 requires 'Module::Pluggable' => '3.9';
37 requires 'Path::Class' => '0.09';
38 requires 'Scalar::Util';
39 requires 'Sub::Exporter';
40 requires 'Text::SimpleTable' => '0.03';
41 requires 'Time::HiRes';
42 requires 'Tree::Simple' => '1.15';
43 requires 'Tree::Simple::Visitor::FindByPath';
44 requires 'URI' => '1.35';
45 requires 'Task::Weaken';
46 requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness
47 requires 'MRO::Compat';
48 requires 'MooseX::Getopt';
49 requires 'MooseX::Types';
50 requires 'String::RewritePrefix' => '0.004'; # Catalyst::Utils::resolve_namespace
51
52 test_requires 'Class::Data::Inheritable';
53 test_requires 'Test::Exception';
54
55 # aggregate tests if AGGREGATE_TESTS is set and a recent Test::Aggregate and a Test::Simple it works with is available
56 if ($ENV{AGGREGATE_TESTS} && can_use('Test::Simple', '0.88') && can_use('Test::Aggregate', '0.35_05')) {
57     author_requires('Test::Aggregate', '0.35_05');
58     author_requires('Test::Simple', '0.88');
59 }
60 else {
61     tests join q{ },
62         grep { $_ ne 't/aggregate.t' }
63         map  { glob } qw[t/*.t t/aggregate/*.t];
64 }
65
66 author_tests 't/author';
67 author_requires(map {; $_ => 0 } qw(
68   Test::NoTabs
69   Test::Pod
70   Test::Pod::Coverage
71   Pod::Coverage
72 ));
73
74 if ($Module::Install::AUTHOR) {
75     darwin_check_no_resource_forks();
76 }
77
78 resources(
79     'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst',
80     'IRC'         => 'irc://irc.perl.org/#catalyst',
81     'license',    => 'http://dev.perl.org/licenses/',
82     'homepage',   => 'http://dev.catalyst.perl.org/',
83     'repository', => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/',
84 );
85
86 install_script glob('script/*.pl');
87 auto_install;
88 WriteAll;
89
90 print <<"EOF";
91
92  Important:
93
94     This library is for running Catalyst applications.
95
96     For development and use of catalyst.pl and myapp_create.pl, make sure
97     you also install the development tools package Catalyst::Devel.
98
99         perl -MCPANPLUS -e 'install Catalyst::Devel' # or
100         perl -MCPAN -e 'install Catalyst::Devel'
101
102     To get some commonly used plugins, as well as the TT view and DBIC
103     model, install Task::Catalyst in the same way.
104
105  Have fun!
106 EOF
107
108 # NOTE - This is the version number of the _incompatible_ code,
109 #        not the version number of the fixed version.
110 my %conflicts = (
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 }