No, it needs to be left so that other components outside devel still work
[catagits/Catalyst-Devel.git] / Makefile.PL
CommitLineData
693e890f 1use inc::Module::Install 0.91;
54616d61 2
3name 'Catalyst-Devel';
c93c671b 4all_from 'lib/Catalyst/Devel.pm';
68ccb5e5 5
ee99bea5 6requires 'Moose';
5561a11e 7requires 'File::ShareDir';
cf042872 8requires 'namespace::autoclean';
2b6385ce 9requires 'Catalyst' => '5.8000';
2658a4db 10requires 'Catalyst::Action::RenderView' => '0.04';
2eea177a 11requires 'Catalyst::Plugin::Static::Simple' => '0.16';
e2a962e1 12requires 'Catalyst::Plugin::ConfigLoader';
fa60b7ee 13requires 'Config::General' => '2.42'; # as of 1.07, we use .conf and not .yaml
396a43ae 14requires 'File::ChangeNotify' => '0.07';
fde6650e 15requires 'File::Copy::Recursive';
693e890f 16requires 'Module::Install' => '0.91';
3d63fa09 17requires 'Path::Class' => '0.09';
18requires 'Template' => '2.14';
54616d61 19
afd739f1 20install_share 'share';
21
2e9609df 22if ( $^O eq 'MSWin32' ) {
62cb5aed 23 # Proc::Background needs this on Win32 but doesn't actually
2e9609df 24 # require it, if it's missing it just dies in the Makefile.PL.
25 requires 'Win32::Process' => '0.04';
26 requires 'Proc::Background';
27}
28
1cbc4fbe 29if (!$ENV{CATALYST_DEVEL_NO_510_CHECK}) {
30 use Symbol 'gensym';
31 use IPC::Open3;
32 use File::Spec;
33 open NULL, '>', File::Spec->devnull;
34 my $err = gensym;
35 my $pid = open3(gensym, '&>NULL', $err, "$^X -It/lib -MUnknownError -e 1");
ee99bea5 36
1cbc4fbe 37 my $unknown_error = 0;
38
39 while (<$err>) {
40 $unknown_error = 1 if /^Unknown error/;
41 }
42
43 waitpid $pid, 0;
44
45 if ($unknown_error) {
46 warn <<EOE;
47############################### WARNING #################################
48# #
49# You are using perl 5.10.0 with the "Unknown error" bug. This can make #
ee99bea5 50# developing Catalyst applications much more painful, as it will come #
1cbc4fbe 51# up with no details every time you have a syntax error in a Controller.#
52# #
53# For more information see: #
54# #
55# * http://rt.perl.org/rt3/Public/Bug/Display.html?id=49472 #
56# #
68217a55 57# It is highly recommended that you use a different version of perl or #
58# compile a patched version for Catalyst development. #
1cbc4fbe 59# #
60# To skip this check, set the CATALYST_DEVEL_NO_510_CHECK environment #
61# variable. #
62# #
63#########################################################################
64
65EOE
66 my $ans = prompt('Do you want to continue?', 'no');
67 exit 0 unless $ans =~ /^y(es)?\z/i;
68 }
69}
70
d6c4f9a7 71# kill warning from older versions of Class::C3
72if ($] >= 5.009_005 && can_use('Class::C3') && !can_use('Class::C3', 0.20)) {
73 requires 'Class::C3' => '0.20';
74}
75
5539814d 76auto_install;
77
54616d61 78WriteAll;
d6c4f9a7 79
80if ($Module::Install::AUTHOR) {
81 Meta->{values}{resources} = [
82 [ 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst' ],
83 [ 'IRC' => 'irc://irc.perl.org/#catalyst' ],
84 [ 'license', => 'http://dev.perl.org/licenses/' ],
85 [ 'homepage', => 'http://dev.catalyst.perl.org/'],
86 [ 'repository', => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Devel/' ],
87 ];
88
89 Meta->{values}{requires} = [ grep {
90 $_->[0] ne 'Class::C3'
91 } @{ Meta->{values}{requires} } ];
92
93 Meta->write;
94}