Add doc on how conditions and attrs are merged when chaining.
[dbsrgits/DBIx-Class.git] / Makefile.PL
CommitLineData
737416a4 1use inc::Module::Install 0.67;
fe650234 2use strict;
3use warnings;
76607ac8 4use POSIX ();
fe650234 5
6use 5.006001; # delete this line if you want to send patches for earlier.
ce4c07df 7
8name 'DBIx-Class';
ce4c07df 9perl_version '5.006001';
8e0f16f1 10all_from 'lib/DBIx/Class.pm';
ce4c07df 11
82fae370 12requires 'Data::Page' => 2.00;
13requires 'Scalar::Util' => 0;
14requires 'SQL::Abstract' => 1.49;
15requires 'SQL::Abstract::Limit' => 0.13;
16requires 'Class::C3' => 0.20;
17requires 'Class::C3::Componentised' => 0;
18requires 'Storable' => 0;
19requires 'Carp::Clan' => 0;
20requires 'DBI' => 1.40;
21requires 'Module::Find' => 0;
22requires 'Class::Inspector' => 0;
23requires 'Class::Accessor::Grouped' => 0.08002;
24requires 'JSON::Any' => 1.17;
25requires 'Scope::Guard' => 0.03;
26requires 'Path::Class' => 0;
27requires 'List::Util' => 1.19;
28requires 'Sub::Name' => 0.04;
ce4c07df 29
30# Perl 5.8.0 doesn't have utf8::is_utf8()
82fae370 31requires 'Encode' => 0 if ($] <= 5.008000);
ce4c07df 32
9ac2c0f8 33# configure_requires so the sanity check below can run
82fae370 34configure_requires 'DBD::SQLite' => 1.14;
d9a898ca 35
f947585b 36test_requires 'Test::Builder' => 0.33;
97aca715 37test_requires 'Test::Warn' => 0.11;
f947585b 38test_requires 'Test::Exception' => 0;
ce3b4eb9 39test_requires 'Test::Deep' => 0;
ce4c07df 40
82fae370 41recommends 'SQL::Translator' => 0.09004;
42
ce4c07df 43install_script 'script/dbicadmin';
44
50891152 45tests_recursive 't';
ce4c07df 46
c96454c3 47# re-build README and require extra modules for testing if we're in a checkout
fe650234 48
82fae370 49my %force_requires_if_author = (
c96454c3 50 'Test::Pod::Coverage' => 1.04,
9ac2c0f8 51 'SQL::Translator' => 0.09004,
52
53 # CDBI-compat related
82fae370 54 'DBIx::ContextualFetch' => 0,
602fd807 55 'Class::DBI::Plugin::DeepAbstractSearch' => 0,
82fae370 56 'Class::Trigger' => 0,
57 'Time::Piece' => 0,
58 'Clone' => 0,
9ac2c0f8 59
60 # t/52cycle.t
82fae370 61 'Test::Memory::Cycle' => 0,
9ac2c0f8 62
c96454c3 63 # t/60core.t
64 'DateTime::Format::MySQL' => 0,
65
9ac2c0f8 66 # t/93storage_replication.t
67 'Moose', => 0,
68 'MooseX::AttributeHelpers' => 0.12,
c96454c3 69
70 # t/96_is_deteministic_value.t
71 'DateTime::Format::Strptime' => 0,
fe650234 72);
73
74if ($Module::Install::AUTHOR) {
75
82fae370 76 foreach my $module (keys %force_requires_if_author) {
77 requires ($module => $force_requires_if_author{$module});
fe650234 78 }
09d46657 79
1543db24 80 system('pod2text lib/DBIx/Class.pm > README');
ff132c6f 81}
82
83auto_provides;
84
3e110410 85auto_install;
86
e0b438fb 87# Have all prerequisites, check DBD::SQLite sanity
269228af 88if (! $ENV{DBICTEST_NO_SQLITE_CHECK} ) {
89
e0b438fb 90 my $pid = fork();
91 if (not defined $pid) {
92 die "Unable to fork(): $!";
93 }
94 elsif (! $pid) {
269228af 95
96 # Win32 does not have real fork()s so a segfault will bring
97 # everything down. Warn about it.
98 if ($^O eq 'MSWin32') {
99 print <<'EOW';
100
101######################################################################
102# #
103# A short stress-testing of DBD::SQLite will follow. If you have a #
104# buggy library this might very well be the last text you will see #
105# before the installation silently terminates. If this happens it #
106# would mean that you are running a buggy version of DBD::SQLite #
107# known to randomly segfault on errors. Even if you have the latest #
3951a291 108# CPAN module version, the system sqlite3 dynamic library might have #
109# been compiled against an older buggy sqlite3 dev library (oddly #
110# DBD::SQLite will prefer the system library against the one bundled #
111# with it). You are strongly advised to resolve this issue before #
112# proceeding. #
269228af 113# #
114# If this happens to you (this text is the last thing you see), and #
115# you just want to install this module without worrying about the #
116# tests (which will almost certainly fail) - set the environment #
117# variable DBICTEST_NO_SQLITE_CHECK to a true value and try again. #
118# #
119######################################################################
120
121EOW
122 }
123
e0b438fb 124 require DBI;
269228af 125 for (1 .. 100) {
e0b438fb 126 my $dbh;
127 $dbh = DBI->connect ('dbi:SQLite::memory:', undef, undef, {
128 AutoCommit => 1,
129 RaiseError => 0,
130 PrintError => 0,
131 })
132 or die "Unable to connect to database: $@";
133 $dbh->do ('CREATE TABLE name_with_no_columns'); # a subtle syntax error
134 $dbh->do ('COMMIT'); # followed by commit
135 $dbh->disconnect;
136 }
137
138 exit 0;
139 }
140 else {
76607ac8 141 eval {
142 local $SIG{ALRM} = sub { die "timeout\n" };
143 alarm 5;
144 wait();
145 alarm 0;
146 };
7a0e56cb 147 my $exception = $@;
148
e0b438fb 149 my $sig = $? & 127;
7a0e56cb 150
151# make sure process actually dies
152 $exception && kill POSIX::SIGKILL(), $pid;
153
154 if ($exception || $sig == POSIX::SIGSEGV() || $sig == POSIX::SIGABRT()
3c086319 155 || $sig == 7) { # 7 == SIGBUS, haven't seen it but just in case
e0b438fb 156 warn (<<EOE);
157
3951a291 158############################### WARNING #################################
159# #
160# You are running a buggy version of DBD::SQLite known to randomly #
161# segfault on errors. Even if you have the latest CPAN module version, #
162# the sqlite3 dynamic library on this system might have been compiled #
163# against an older buggy sqlite3 dev library (oddly DBD::SQLite will #
164# prefer the system library against the one bundled with it). You are #
165# strongly advised to resolve this issue before proceeding. #
166# #
167#########################################################################
e0b438fb 168
169EOE
170 my $ans = prompt (
171 "The test suite of this module is almost certain to fail.\n"
172 . 'Do you really want to continue?',
173 'no',
174 );
175 exit 0 unless ($ans =~ /^y(es)?$/i);
176 }
177 }
178}
179
180
43944e47 181WriteAll();
09d46657 182
183
184if ($Module::Install::AUTHOR) {
185 # Need to do this _after_ WriteAll else it looses track of them
186 Meta->{values}{build_requires} = [ grep {
fe650234 187 my $ok = 1;
82fae370 188 foreach my $module (keys %force_requires_if_author) {
fe650234 189 if ($_->[0] =~ /$module/) {
190 $ok = 0;
191 last;
192 }
193 }
194 $ok;
09d46657 195 } @{Meta->{values}{build_requires}} ];
196
197 my @scalar_keys = Module::Install::Metadata::Meta_TupleKeys();
fe650234 198 my $cr = Module::Install::Metadata->can("Meta_TupleKeys");
199 {
200 no warnings 'redefine';
201 *Module::Install::Metadata::Meta_TupleKeys = sub {
202 return $cr->(@_), 'resources';
203 };
09d46657 204 }
205 Meta->{values}{resources} = [
206 [ 'MailingList', 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class' ],
207 [ 'IRC', 'irc://irc.perl.org/#dbix-class' ],
100dd0a8 208 [ 'license', 'http://dev.perl.org/licenses/' ],
209 [ 'repository', 'http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/' ],
09d46657 210 ];
211 Meta->write;
212}
9a3219ee 213
214if ($Module::Install::AUTHOR) {
215 warn "\nAUTHOR MODE: all optional test dependencies were made hard requires\n";
216}