Bump Moose prereq
[catagits/Catalyst-Runtime.git] / Makefile.PL
1 use inc::Module::Install 0.64;
2
3 perl_version '5.008001';
4
5 name 'Catalyst-Runtime';
6 all_from 'lib/Catalyst/Runtime.pm';
7
8 requires 'namespace::clean';
9 requires 'Scope::Upper' => '0.06';
10 requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00800';
11 requires 'Moose' => '0.70';
12 requires 'Carp';
13 requires 'Class::C3::Adopt::NEXT' => '0.05';
14 requires 'Class::MOP';
15 requires 'CGI::Simple::Cookie';
16 requires 'Data::Dump';
17 requires 'File::Modified';
18 requires 'HTML::Entities';
19 requires 'HTTP::Body'    => '1.04'; # makes uploadtmp work
20 requires 'HTTP::Headers' => '1.64';
21 requires 'HTTP::Request';
22 requires 'HTTP::Response';
23 requires 'HTTP::Request::AsCGI' => '0.5';
24 requires 'LWP::UserAgent';
25 requires 'Module::Pluggable' => '3.01';
26 requires 'Path::Class' => '0.09';
27 requires 'Scalar::Util';
28 requires 'Sub::Exporter';
29 requires 'Text::SimpleTable' => '0.03';
30 requires 'Time::HiRes';
31 requires 'Tree::Simple' => '1.15';
32 requires 'Tree::Simple::Visitor::FindByPath';
33 requires 'URI' => '1.35';
34 requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness
35 requires 'MRO::Compat';
36
37 test_requires 'Class::Data::Inheritable';
38 test_requires 'Test::MockObject';
39
40 if (   ( exists $ENV{AGGREGATE_TESTS} && !$ENV{AGGREGATE_TESTS})
41     || (!exists $ENV{AGGREGATE_TESTS} && !can_use('Test::Aggregate', '0.34_01'))) {
42     tests join q{ },
43         grep { $_ ne 't/aggregate.t' }
44         map  { glob } qw[t/*.t t/aggregate/*.t];
45 }
46 else {
47     test_requires('Test::Aggregate', '0.34_01');
48 }
49 my @force_build_requires_if_author = qw(
50   Test::NoTabs 
51   Test::Pod 
52   Test::Pod::Coverage 
53   Pod::Coverage
54 );
55
56 if ($Module::Install::AUTHOR) {
57
58   foreach my $module (@force_build_requires_if_author) {
59     build_requires $module;
60   }
61
62
63   if ($^O eq 'darwin') { 
64       my $osx_ver = `/usr/bin/sw_vers -productVersion`;
65       chomp $osx_ver;
66
67       # TAR on 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE
68       # On 10.5 (Leopard) it wants COPYFILE_DISABLE
69       my $attr = $osx_ver eq '10.5' ? 'COPYFILE_DISABLE' : 'COPY_EXTENDED_ATTRIBUTES_DISABLE';
70
71       makemaker_args(dist => { PREOP => qq{\@if [ "\$\$$attr" != "true" ]; then}.
72                                         qq{ echo "You must set the ENV variable $attr to true,"; }.
73                                         ' echo "to avoid getting resource forks in your dist."; exit 255; fi' }); 
74   }
75 }
76
77 install_script glob('script/*.pl');
78 auto_install;
79 WriteAll;
80
81 if ($Module::Install::AUTHOR) {
82
83   # Strip out the author only build_requires from META.yml
84   # Need to do this _after_ WriteAll else it looses track of them
85   Meta->{values}{build_requires} = [ grep {
86     my $ok = 1;
87     foreach my $module (@force_build_requires_if_author) {
88       if ($_->[0] =~ /$module/) {
89         $ok = 0;
90         last;
91       }
92     }
93     $ok;
94   } @{Meta->{values}{build_requires}} ];
95
96   Meta->{values}{resources} = [ 
97     [ 'MailingList', 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst' ],
98     [ 'IRC', 'irc://irc.perl.org/#catalyst' ],
99     [ 'license', 'http://dev.perl.org/licenses/' ],
100     [ 'homepage', 'http://dev.catalyst.perl.org/'], 
101     [ 'repository', 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Runtime/' ],
102   ];
103
104   Meta->write;
105 }
106 print <<"EOF";
107
108  Important:
109
110     This library is for running Catalyst applications.
111
112     For development and use of catalyst.pl and myapp_create.pl, make sure
113     you also install the development tools package Catalyst::Devel.
114
115         perl -MCPANPLUS -e 'install Catalyst::Devel' # or
116         perl -MCPAN -e 'install Catalyst::Devel'
117
118     To get some commonly used plugins, as well as the TT view and DBIC 
119     model, install Task::Catalyst in the same way.
120
121  Have fun!
122 EOF
123
124 check_conflicts();
125
126 # Nicked straight from Moose!
127 sub check_conflicts {
128     # NOTE - This is the version number of the _incompatible_ code,
129     #        not the version number of the fixed version.
130     my %conflicts = (
131         'Catalyst::Plugin::SmartURI'       => '0.029',
132         'CatalystX::CRUD'                  => '0.37',
133         'Catalyst::Action::RenderView'     => '0.07',
134         'Catalyst::Plugin::DebugCookie'    => '0.999002',
135         'Catalyst::Plugin::Authentication' => '0.100091',
136         'CatalystX::Imports'               => '0.03',
137         'Catalyst::Plugin::HashedCookies'  => '1.03',
138     );
139
140     my $found = 0;
141     for my $mod ( sort keys %conflicts ) {
142         eval "require($mod)";
143         next if $@;
144
145         my $installed = $mod->VERSION();
146         if ( $installed le $conflicts{$mod} ) {
147
148             print <<"EOF";
149
150 ***
151     This version of Catalyst conflicts with the version of
152     $mod ($installed) you have installed.
153
154     You will need to upgrade $mod after installing
155     this version of Catalyst.
156 ***
157
158 EOF
159
160             $found = 1;
161         }
162     }
163
164     return unless $found;
165
166     # More or less copied from Module::Build
167     return if $ENV{PERL_MM_USE_DEFAULT};
168     return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT));
169
170     sleep 4;
171 }