1 use inc::Module::Install 0.67;
6 use 5.006001; # delete this line if you want to send patches for earlier.
9 perl_version '5.006001';
10 all_from 'lib/DBIx/Class.pm';
12 requires 'Data::Page' => 2.00;
13 requires 'Scalar::Util' => 0;
14 requires 'SQL::Abstract' => 1.24;
15 requires 'SQL::Abstract::Limit' => 0.13;
16 requires 'Class::C3' => 0.20;
17 requires 'Class::C3::Componentised' => 0;
18 requires 'Storable' => 0;
19 requires 'Carp::Clan' => 0;
20 requires 'DBI' => 1.40;
21 requires 'Module::Find' => 0;
22 requires 'Class::Inspector' => 0;
23 requires 'Class::Accessor::Grouped' => 0.08002;
24 requires 'JSON::Any' => 1.17;
25 requires 'Scope::Guard' => 0.03;
26 requires 'Path::Class' => 0;
27 requires 'List::Util' => 1.19;
28 requires 'Sub::Name' => 0.04;
29 requires 'namespace::clean' => 0.09;
31 # Perl 5.8.0 doesn't have utf8::is_utf8()
32 requires 'Encode' => 0 if ($] <= 5.008000);
34 configure_requires 'DBD::SQLite' => 1.14;
36 test_requires 'Test::Builder' => 0.33;
37 test_requires 'Test::Warn' => 0.11;
38 test_requires 'Test::Exception' => 0;
39 test_requires 'Test::Deep' => 0;
41 install_script 'script/dbicadmin';
45 # re-build README and require CDBI modules for testing if we're in a checkout
47 my @force_build_requires_if_author = qw(
56 if ($Module::Install::AUTHOR) {
58 foreach my $module (@force_build_requires_if_author) {
59 build_requires $module;
62 system('pod2text lib/DBIx/Class.pm > README');
69 # Have all prerequisites, check DBD::SQLite sanity
70 if (! $ENV{DBICTEST_NO_SQLITE_CHECK} ) {
73 if (not defined $pid) {
74 die "Unable to fork(): $!";
78 # Win32 does not have real fork()s so a segfault will bring
79 # everything down. Warn about it.
80 if ($^O eq 'MSWin32') {
83 ######################################################################
85 # A short stress-testing of DBD::SQLite will follow. If you have a #
86 # buggy library this might very well be the last text you will see #
87 # before the installation silently terminates. If this happens it #
88 # would mean that you are running a buggy version of DBD::SQLite #
89 # known to randomly segfault on errors. Even if you have the latest #
90 # CPAN module version, the system sqlite3 dynamic library might have #
91 # been compiled against an older buggy sqlite3 dev library (oddly #
92 # DBD::SQLite will prefer the system library against the one bundled #
93 # with it). You are strongly advised to resolve this issue before #
96 # If this happens to you (this text is the last thing you see), and #
97 # you just want to install this module without worrying about the #
98 # tests (which will almost certainly fail) - set the environment #
99 # variable DBICTEST_NO_SQLITE_CHECK to a true value and try again. #
101 ######################################################################
109 $dbh = DBI->connect ('dbi:SQLite::memory:', undef, undef, {
114 or die "Unable to connect to database: $@";
115 $dbh->do ('CREATE TABLE name_with_no_columns'); # a subtle syntax error
116 $dbh->do ('COMMIT'); # followed by commit
124 local $SIG{ALRM} = sub { die "timeout\n" };
130 if ($@ || $sig == POSIX::SIGSEGV) {
133 ############################### WARNING #################################
135 # You are running a buggy version of DBD::SQLite known to randomly #
136 # segfault on errors. Even if you have the latest CPAN module version, #
137 # the sqlite3 dynamic library on this system might have been compiled #
138 # against an older buggy sqlite3 dev library (oddly DBD::SQLite will #
139 # prefer the system library against the one bundled with it). You are #
140 # strongly advised to resolve this issue before proceeding. #
142 #########################################################################
146 "The test suite of this module is almost certain to fail.\n"
147 . 'Do you really want to continue?',
150 exit 0 unless ($ans =~ /^y(es)?$/i);
159 if ($Module::Install::AUTHOR) {
160 # Need to do this _after_ WriteAll else it looses track of them
161 Meta->{values}{build_requires} = [ grep {
163 foreach my $module (@force_build_requires_if_author) {
164 if ($_->[0] =~ /$module/) {
170 } @{Meta->{values}{build_requires}} ];
172 my @scalar_keys = Module::Install::Metadata::Meta_TupleKeys();
173 my $cr = Module::Install::Metadata->can("Meta_TupleKeys");
175 no warnings 'redefine';
176 *Module::Install::Metadata::Meta_TupleKeys = sub {
177 return $cr->(@_), 'resources';
180 Meta->{values}{resources} = [
181 [ 'MailingList', 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class' ],
182 [ 'IRC', 'irc://irc.perl.org/#dbix-class' ],
183 [ 'license', 'http://dev.perl.org/licenses/' ],
184 [ 'repository', 'http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/' ],