better fix for uninitialized warning
[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.17';
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 author_requires 'CatalystX::LeakChecker', '0.03'; # Skipped if this isn't installed
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::Model::Akismet' => '0.02',
112     'Catalyst::Component::ACCEPT_CONTEXT' => '0.06',
113     'Catalyst::Plugin::ENV' => '9999', # This plugin is just stupid, full stop
114                                        # should have been a core fix.
115     'Catalyst::Plugin::Unicode::Encoding' => '0.2',
116     'Catalyst::Authentication::Credential::HTTP' => '1.009',
117     'Catalyst::Plugin::Session::Store::File' => '0.16',
118     'Catalyst::Plugin::Session' => '0.21',
119     'Catalyst::Plugin::Session::State::Cookie' => '0.10',
120     'Catalyst::Plugin::Session::Store::FastMmap' => '0.09',
121     'Catalyst::Controller::AllowDisable' => '0.03',
122     'Reaction' => '0.001999',
123     'Catalyst::Plugin::Upload::Image::Magick' => '0.03',
124     'Catalyst::Plugin::ConfigLoader'   => '0.22', # Older versions work but
125                                                   # throw Data::Visitor warns
126     'Catalyst::Devel'                  => '1.19',
127     'Catalyst::Plugin::SmartURI'       => '0.032',
128     'CatalystX::CRUD'                  => '0.37',
129     'Catalyst::Action::RenderView'     => '0.07',
130     'Catalyst::Plugin::DebugCookie'    => '0.999002',
131     'Catalyst::Plugin::Authentication' => '0.100091',
132     'CatalystX::Imports'               => '0.03',
133     'Catalyst::Plugin::HashedCookies'  => '1.03',
134     'Catalyst::Action::REST'           => '0.67',
135     'CatalystX::CRUD'                  => '0.42',
136     'CatalystX::CRUD::Model::RDBO'     => '0.20',
137     'Catalyst::View::Mason'            => '0.17',
138 );
139 check_conflicts(%conflicts);
140
141 # End of script, helper functions below.
142
143 sub darwin_check_no_resource_forks {
144     if ($^O eq 'darwin') {
145         my $osx_ver = `/usr/bin/sw_vers -productVersion`;
146         chomp $osx_ver;
147
148         # TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE
149         # On 10.5 (Leopard) it wants COPYFILE_DISABLE
150         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/;
151         my $attr = $osx_ver =~ /^10.5/ ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE';
152
153         makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}.
154                                           qq{ echo "You must set the ENV variable $attr to true,"; }.
155                                           ' echo "to avoid getting resource forks in your dist."; exit 255; fi' });
156     }
157 }