Merge branch 'master' into psgi
[catagits/Catalyst-Devel.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.91;
4 use Module::Install::AuthorRequires;
5 use Module::Install::AuthorTests;
6
7 name     'Catalyst-Devel';
8 all_from 'lib/Catalyst/Devel.pm';
9
10 requires 'Moose';
11 requires 'MooseX::Emulate::Class::Accessor::Fast';
12 requires 'File::ShareDir';
13 requires 'namespace::clean';
14 requires 'namespace::autoclean';
15 requires 'Catalyst'    => '5.80015';
16 requires 'Catalyst::Action::RenderView' => '0.10';
17 requires 'Catalyst::Plugin::Static::Simple' => '0.28';
18 requires 'Catalyst::Plugin::ConfigLoader' => '0.30';
19 requires 'Config::General' => '2.42'; # as of 1.07, we use .conf and not .yaml
20 requires 'File::ChangeNotify' => '0.07';
21 requires 'File::Copy::Recursive';
22 requires 'Path::Class' => '0.09';
23 requires 'Template'    => '2.14';
24
25 # The Catalyst applications this module distribution have a Makefile.PL using
26 # Module::Install as well as the Module::Install::Catalyst extension included in
27 # this distribution. Therefore we really *depend* on Module::Install to be
28 # installed, even though we also use it to build this distribution and include
29 # it in its inc/ directory for releases.
30 requires 'Module::Install' => '0.91';
31
32 author_requires 'IPC::Run3';
33 author_requires 'Module::Info';
34 author_requires 'File::Find::Rule';
35
36 test_requires 'Test::More' => '0.94';
37 test_requires 'Test::Fatal' => '0.003';
38
39 install_share 'share';
40
41 author_tests 't/author';
42
43 if ( $^O eq 'MSWin32' ) {
44     # Proc::Background needs this on Win32 but doesn't actually
45     # require it, if it's missing it just dies in the Makefile.PL.
46     requires 'Win32::Process' => '0.04';
47     requires 'Proc::Background';
48 }
49
50 if (!$ENV{CATALYST_DEVEL_NO_510_CHECK}) {
51     use Symbol 'gensym';
52     use IPC::Open3;
53     use File::Spec;
54     open NULL, '>', File::Spec->devnull;
55     my $err = gensym;
56     my $pid = open3(gensym, '&>NULL', $err, "$^X -It/lib -MUnknownError -e 1");
57
58     my $unknown_error = 0;
59
60     while (<$err>) {
61         $unknown_error = 1 if /^Unknown error/;
62     }
63
64     waitpid $pid, 0;
65
66     if ($unknown_error) {
67         warn <<EOE;
68 ############################### WARNING #################################
69 #                                                                       #
70 # You are using perl 5.10.0 with the "Unknown error" bug. This can make #
71 # developing Catalyst applications much more painful, as it will come   #
72 # up with no details every time you have a syntax error in a Controller.#
73 #                                                                       #
74 # For more information see:                                             #
75 #                                                                       #
76 #  * http://rt.perl.org/rt3/Public/Bug/Display.html?id=49472            #
77 #                                                                       #
78 # It is highly recommended that you use a different version of perl or  #
79 # compile a patched version for Catalyst development.                   #
80 #                                                                       #
81 # To skip this check, set the CATALYST_DEVEL_NO_510_CHECK environment   #
82 # variable.                                                             #
83 #                                                                       #
84 #########################################################################
85
86 EOE
87         my $ans = prompt('Do you want to continue?', 'no');
88         exit 0 unless $ans =~ /^y(es)?\z/i;
89     }
90 }
91
92 # kill warning from older versions of Class::C3
93 if ($] >= 5.009_005 && can_use('Class::C3') && !can_use('Class::C3', 0.20)) {
94     requires 'Class::C3' => '0.20';
95 }
96
97 auto_install;
98
99 WriteAll;
100
101 if ($Module::Install::AUTHOR) {
102     Meta->{values}{resources} = [
103         [ 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst' ],
104         [ 'IRC'         => 'irc://irc.perl.org/#catalyst' ],
105         [ 'license',    => 'http://dev.perl.org/licenses/' ],
106         [ 'homepage',   => 'http://dev.catalyst.perl.org/'],
107         [ 'repository', => 'git://git.shadowcat.co.uk/catagits/Catalyst-Devel.git' ],
108     ];
109
110     Meta->{values}{requires} = [ grep {
111         $_->[0] ne 'Class::C3'
112     } @{ Meta->{values}{requires} } ];
113
114     Meta->write;
115 }