M::I 0.89 finally resolves all provlems with auto_install
[dbsrgits/DBIx-Class.git] / Makefile.PL
1 use inc::Module::Install 0.89;
2 use strict;
3 use warnings;
4 use POSIX ();
5
6 use 5.006001; # delete this line if you want to send patches for earlier.
7
8 name     'DBIx-Class';
9 perl_version '5.006001';
10 all_from 'lib/DBIx/Class.pm';
11
12 # configure_requires so _check_sqlite() below can run
13 # remove once test deprecated
14 configure_requires 'DBD::SQLite';
15
16 requires 'DBD::SQLite'              => 1.25;
17 requires 'Data::Page'               => 2.00;
18 requires 'SQL::Abstract'            => 1.55;
19 requires 'SQL::Abstract::Limit'     => 0.13;
20 requires 'Class::C3::Componentised' => 1.0005;
21 requires 'Carp::Clan'               => 6.0;
22 requires 'DBI'                      => 1.605;
23 requires 'Module::Find'             => 0.06;
24 requires 'Class::Inspector'         => 1.24;
25 requires 'Class::Accessor::Grouped' => 0.08003;
26 requires 'JSON::Any'                => 1.18;
27 requires 'Scope::Guard'             => 0.03;
28 requires 'Path::Class'              => 0.16;
29 requires 'Sub::Name'                => 0.04;
30 requires 'MRO::Compat'              => 0.09;
31
32 # Core
33 requires 'List::Util'               => 0;
34 requires 'Scalar::Util'             => 0;
35 requires 'Storable'                 => 0;
36
37 # Perl 5.8.0 doesn't have utf8::is_utf8()
38 requires 'Encode'                   => 0 if ($] <= 5.008000);
39
40 test_requires 'Test::More'          => 0.82;
41 test_requires 'Test::Builder'       => 0.33;
42 test_requires 'Test::Warn'          => 0.11;
43 test_requires 'Test::Exception'     => 0;
44 test_requires 'Test::Deep'          => 0;
45
46 recommends 'SQL::Translator'        => 0.09004;
47
48 install_script (qw|
49     script/dbicadmin
50 |);
51
52 tests_recursive (qw|
53     t
54 |);
55
56 # re-build README and require extra modules for testing if we're in a checkout
57
58 my %force_requires_if_author = (
59   'Test::Pod::Coverage'       => 1.04,
60   'SQL::Translator'           => 0.09004,
61
62   # CDBI-compat related
63   'DBIx::ContextualFetch'     => 0,
64   'Class::DBI::Plugin::DeepAbstractSearch' => 0,
65   'Class::Trigger'            => 0,
66   'Time::Piece::MySQL'        => 0,
67   'Clone'                     => 0,
68   'Date::Simple'              => 0,
69
70   # t/52cycle.t
71   'Test::Memory::Cycle'       => 0,
72
73   # t/60core.t
74   'DateTime::Format::MySQL'   => 0,
75   
76   # t/89inflate_datetime.t
77   'DateTime::Format::Pg'      => 0,
78
79   # t/72pg.t
80   $ENV{DBICTEST_PG_DSN}
81     ? ('Sys::SigAction'=> 0)
82     : ()
83   ,
84
85   # t/93storage_replication.t
86   'Moose',                        => 0.77,
87   'MooseX::AttributeHelpers'      => 0.12,
88   'MooseX::Types',                => 0.10,
89   'namespace::clean'              => 0.11,
90   'Hash::Merge',                  => 0.11,
91
92   # t/96_is_deteministic_value.t
93   'DateTime::Format::Strptime' => 0,
94 );
95
96 if ($Module::Install::AUTHOR) {
97
98   foreach my $module (keys %force_requires_if_author) {
99     build_requires ($module => $force_requires_if_author{$module});
100   }
101
102   system('pod2text lib/DBIx/Class.pm > README');
103 }
104
105 auto_provides;
106
107 if ($Module::Install::AUTHOR) {
108   warn <<'EOW';
109 ******************************************************************************
110 ******************************************************************************
111 ***                                                                        ***
112 *** AUTHOR MODE: all optional test dependencies converted to hard requires ***
113 ***                                                                        ***
114 ******************************************************************************
115 ******************************************************************************
116
117 EOW
118 }
119 auto_install;
120
121 # Have all prerequisites, check DBD::SQLite sanity
122 _check_sqlite() if (! $ENV{DBICTEST_NO_SQLITE_CHECK} );
123
124 WriteAll();
125
126 if ($Module::Install::AUTHOR) {
127   # Need to do this _after_ WriteAll else it loses track of them
128   Meta->{values}{build_requires} = [ grep {
129     my $ok = 1;
130     foreach my $module (keys %force_requires_if_author) {
131       if ($_->[0] =~ /$module/) {
132         $ok = 0;
133         last;
134       }
135     }
136     $ok;
137   } @{Meta->{values}{build_requires}} ];
138
139   Meta->{values}{resources} = [ 
140     [ 'MailingList', 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class' ],
141     [ 'IRC', 'irc://irc.perl.org/#dbix-class' ],
142     [ 'license', 'http://dev.perl.org/licenses/' ],
143     [ 'repository', 'http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/' ],
144   ];
145   Meta->write;
146 }
147
148
149 # This is legacy code. Latest DBD::SQLite developments fixed all known bugs
150 # in this area. Remove before some arbitrary next version
151 sub _check_sqlite {
152
153   # Win32 does not have real fork()s so a segfault will bring
154   # everything down. Warn about it below, and don't try fork()
155   if ($^O ne 'MSWin32') {
156
157     my $pid = fork();
158     if (not defined $pid) {
159         die "Unable to fork(): $!";
160     }
161     elsif (! $pid) {
162       _torture_sqlite();
163       exit 0;
164     }
165     else {
166       eval {
167           local $SIG{ALRM} = sub { die "timeout\n" };
168           alarm 5;
169           wait();
170           alarm 0;
171       };
172       my $exception = $@;
173
174       my $sig = $? & 127;
175
176       # make sure process actually dies
177       $exception && kill POSIX::SIGKILL(), $pid;
178
179       if ($exception || $sig == POSIX::SIGSEGV() || $sig == POSIX::SIGABRT()
180         || $sig == 7) { # 7 == SIGBUS, haven't seen it but just in case
181           warn (<<EOE);
182
183 ############################### WARNING #################################
184 #                                                                       #
185 # You are running a buggy version of DBD::SQLite known to randomly      #
186 # segfault on errors.  Even if you have the latest CPAN module version, #
187 # the sqlite3 dynamic library on this system might have been compiled   #
188 # against an older buggy sqlite3 dev library (oddly DBD::SQLite will    #
189 # prefer the system library against the one bundled with it). You are   #
190 # strongly advised to resolve this issue before proceeding.             #
191 #                                                                       #
192 #########################################################################
193
194 EOE
195           my $ans = prompt (
196             "The test suite of this module is almost certain to fail.\n"
197             . 'Do you really want to continue?',
198             'no',
199           );
200
201           exit 0 unless ($ans =~ /^y(es)?$/i);
202       }
203     }
204   }
205
206   else {  # the win32 version
207
208     print <<'EOW';
209 ######################################################################
210 #                                                                    #
211 # A short stress-testing of DBD::SQLite will follow. If you have a   #
212 # buggy library this might very well be the last text you will see   #
213 # before the installation silently terminates. If this happens it    #
214 # would mean that you are running a buggy version of DBD::SQLite     #
215 # known to randomly segfault on errors. Even if you have the latest  #
216 # CPAN module version, the system sqlite3 dynamic library might have #
217 # been compiled against an older buggy sqlite3 dev library (oddly    #
218 # DBD::SQLite will prefer the system library against the one bundled #
219 # with it). You are strongly advised to resolve this issue before    #
220 # proceeding.                                                        #
221 #                                                                    #
222 # If this happens to you (this text is the last thing you see), and  #
223 # you just want to install this module without worrying about the    #
224 # tests (which will almost certainly fail) - set the environment     #
225 # variable DBICTEST_NO_SQLITE_CHECK to a true value and try again.   #
226 #                                                                    #
227 ######################################################################
228
229 EOW
230
231     _torture_sqlite();
232   }
233 }
234
235 sub _torture_sqlite {
236   require DBI;
237
238   for (1 .. 100) {
239     my $dbh = DBI->connect ('dbi:SQLite::memory:', undef, undef, {
240       AutoCommit => 1,
241       RaiseError => 0,
242       PrintError => 0,
243     }) or die "Unable to connect to database: $@";
244
245     $dbh->do ('CREATE TABLE name_with_no_columns');   # a subtle syntax error
246     $dbh->do ('COMMIT');                              # followed by commit
247     $dbh->disconnect;
248   }
249 }