janitorial work
[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;
29requires 'namespace::clean' => 0.09;
ce4c07df 30
31# Perl 5.8.0 doesn't have utf8::is_utf8()
82fae370 32requires 'Encode' => 0 if ($] <= 5.008000);
ce4c07df 33
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
1543db24 47# re-build README and require CDBI modules for testing if we're in a checkout
fe650234 48
82fae370 49my %force_requires_if_author = (
50 'DBIx::ContextualFetch' => 0,
51 'Class::Trigger' => 0,
52 'Time::Piece' => 0,
53 'Clone' => 0,
54 'Test::Pod::Coverage' => 0,
55 'Test::Memory::Cycle' => 0,
56 'SQL::Translator' => 0.09004,
fe650234 57);
58
59if ($Module::Install::AUTHOR) {
60
82fae370 61 foreach my $module (keys %force_requires_if_author) {
62 requires ($module => $force_requires_if_author{$module});
fe650234 63 }
09d46657 64
1543db24 65 system('pod2text lib/DBIx/Class.pm > README');
ff132c6f 66}
67
68auto_provides;
69
3e110410 70auto_install;
71
e0b438fb 72# Have all prerequisites, check DBD::SQLite sanity
269228af 73if (! $ENV{DBICTEST_NO_SQLITE_CHECK} ) {
74
e0b438fb 75 my $pid = fork();
76 if (not defined $pid) {
77 die "Unable to fork(): $!";
78 }
79 elsif (! $pid) {
269228af 80
81 # Win32 does not have real fork()s so a segfault will bring
82 # everything down. Warn about it.
83 if ($^O eq 'MSWin32') {
84 print <<'EOW';
85
86######################################################################
87# #
88# A short stress-testing of DBD::SQLite will follow. If you have a #
89# buggy library this might very well be the last text you will see #
90# before the installation silently terminates. If this happens it #
91# would mean that you are running a buggy version of DBD::SQLite #
92# known to randomly segfault on errors. Even if you have the latest #
3951a291 93# CPAN module version, the system sqlite3 dynamic library might have #
94# been compiled against an older buggy sqlite3 dev library (oddly #
95# DBD::SQLite will prefer the system library against the one bundled #
96# with it). You are strongly advised to resolve this issue before #
97# proceeding. #
269228af 98# #
99# If this happens to you (this text is the last thing you see), and #
100# you just want to install this module without worrying about the #
101# tests (which will almost certainly fail) - set the environment #
102# variable DBICTEST_NO_SQLITE_CHECK to a true value and try again. #
103# #
104######################################################################
105
106EOW
107 }
108
e0b438fb 109 require DBI;
269228af 110 for (1 .. 100) {
e0b438fb 111 my $dbh;
112 $dbh = DBI->connect ('dbi:SQLite::memory:', undef, undef, {
113 AutoCommit => 1,
114 RaiseError => 0,
115 PrintError => 0,
116 })
117 or die "Unable to connect to database: $@";
118 $dbh->do ('CREATE TABLE name_with_no_columns'); # a subtle syntax error
119 $dbh->do ('COMMIT'); # followed by commit
120 $dbh->disconnect;
121 }
122
123 exit 0;
124 }
125 else {
76607ac8 126 eval {
127 local $SIG{ALRM} = sub { die "timeout\n" };
128 alarm 5;
129 wait();
130 alarm 0;
131 };
7a0e56cb 132 my $exception = $@;
133
e0b438fb 134 my $sig = $? & 127;
7a0e56cb 135
136# make sure process actually dies
137 $exception && kill POSIX::SIGKILL(), $pid;
138
139 if ($exception || $sig == POSIX::SIGSEGV() || $sig == POSIX::SIGABRT()
3c086319 140 || $sig == 7) { # 7 == SIGBUS, haven't seen it but just in case
e0b438fb 141 warn (<<EOE);
142
3951a291 143############################### WARNING #################################
144# #
145# You are running a buggy version of DBD::SQLite known to randomly #
146# segfault on errors. Even if you have the latest CPAN module version, #
147# the sqlite3 dynamic library on this system might have been compiled #
148# against an older buggy sqlite3 dev library (oddly DBD::SQLite will #
149# prefer the system library against the one bundled with it). You are #
150# strongly advised to resolve this issue before proceeding. #
151# #
152#########################################################################
e0b438fb 153
154EOE
155 my $ans = prompt (
156 "The test suite of this module is almost certain to fail.\n"
157 . 'Do you really want to continue?',
158 'no',
159 );
160 exit 0 unless ($ans =~ /^y(es)?$/i);
161 }
162 }
163}
164
165
43944e47 166WriteAll();
09d46657 167
168
169if ($Module::Install::AUTHOR) {
170 # Need to do this _after_ WriteAll else it looses track of them
171 Meta->{values}{build_requires} = [ grep {
fe650234 172 my $ok = 1;
82fae370 173 foreach my $module (keys %force_requires_if_author) {
fe650234 174 if ($_->[0] =~ /$module/) {
175 $ok = 0;
176 last;
177 }
178 }
179 $ok;
09d46657 180 } @{Meta->{values}{build_requires}} ];
181
182 my @scalar_keys = Module::Install::Metadata::Meta_TupleKeys();
fe650234 183 my $cr = Module::Install::Metadata->can("Meta_TupleKeys");
184 {
185 no warnings 'redefine';
186 *Module::Install::Metadata::Meta_TupleKeys = sub {
187 return $cr->(@_), 'resources';
188 };
09d46657 189 }
190 Meta->{values}{resources} = [
191 [ 'MailingList', 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class' ],
192 [ 'IRC', 'irc://irc.perl.org/#dbix-class' ],
100dd0a8 193 [ 'license', 'http://dev.perl.org/licenses/' ],
194 [ 'repository', 'http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/' ],
09d46657 195 ];
196 Meta->write;
197}