1 use inc::Module::Install 0.67;
5 use 5.006001; # delete this line if you want to send patches for earlier.
8 perl_version '5.006001';
9 all_from 'lib/DBIx/Class.pm';
11 requires 'Data::Page' => 2.00;
12 requires 'Scalar::Util' => 0;
13 requires 'SQL::Abstract' => 1.24;
14 requires 'SQL::Abstract::Limit' => 0.13;
15 requires 'Class::C3' => 0.20;
16 requires 'Class::C3::Componentised' => 0;
17 requires 'Storable' => 0;
18 requires 'Carp::Clan' => 0;
19 requires 'DBI' => 1.40;
20 requires 'Module::Find' => 0;
21 requires 'Class::Inspector' => 0;
22 requires 'Class::Accessor::Grouped' => 0.08002;
23 requires 'JSON::Any' => 1.17;
24 requires 'Scope::Guard' => 0.03;
25 requires 'Path::Class' => 0;
26 requires 'List::Util' => 1.19;
27 requires 'Sub::Name' => 0.04;
29 # Perl 5.8.0 doesn't have utf8::is_utf8()
30 requires 'Encode' => 0 if ($] <= 5.008000);
32 configure_requires 'DBD::SQLite' => 1.14;
34 test_requires 'Test::Builder' => 0.33;
35 test_requires 'Test::Warn' => 0.11;
36 test_requires 'Test::Exception' => 0;
37 test_requires 'Test::Deep' => 0;
39 install_script 'script/dbicadmin';
43 # re-build README and require CDBI modules for testing if we're in a checkout
45 my @force_build_requires_if_author = qw(
54 if ($Module::Install::AUTHOR) {
56 foreach my $module (@force_build_requires_if_author) {
57 build_requires $module;
60 system('pod2text lib/DBIx/Class.pm > README');
67 # Have all prerequisites, check DBD::SQLite sanity
68 if (! $ENV{DBICTEST_NO_SQLITE_CHECK} ) {
71 if (not defined $pid) {
72 die "Unable to fork(): $!";
76 # Win32 does not have real fork()s so a segfault will bring
77 # everything down. Warn about it.
78 if ($^O eq 'MSWin32') {
81 ######################################################################
83 # A short stress-testing of DBD::SQLite will follow. If you have a #
84 # buggy library this might very well be the last text you will see #
85 # before the installation silently terminates. If this happens it #
86 # would mean that you are running a buggy version of DBD::SQLite #
87 # known to randomly segfault on errors. Even if you have the latest #
88 # CPAN module version, the system sqlite3 dynamic library might have #
89 # been compiled against an older buggy sqlite3 dev library (oddly #
90 # DBD::SQLite will prefer the system library against the one bundled #
91 # with it). You are strongly advised to resolve this issue before #
94 # If this happens to you (this text is the last thing you see), and #
95 # you just want to install this module without worrying about the #
96 # tests (which will almost certainly fail) - set the environment #
97 # variable DBICTEST_NO_SQLITE_CHECK to a true value and try again. #
99 ######################################################################
107 $dbh = DBI->connect ('dbi:SQLite::memory:', undef, undef, {
112 or die "Unable to connect to database: $@";
113 $dbh->do ('CREATE TABLE name_with_no_columns'); # a subtle syntax error
114 $dbh->do ('COMMIT'); # followed by commit
126 ############################### WARNING #################################
128 # You are running a buggy version of DBD::SQLite known to randomly #
129 # segfault on errors. Even if you have the latest CPAN module version, #
130 # the sqlite3 dynamic library on this system might have been compiled #
131 # against an older buggy sqlite3 dev library (oddly DBD::SQLite will #
132 # prefer the system library against the one bundled with it). You are #
133 # strongly advised to resolve this issue before proceeding. #
135 #########################################################################
139 "The test suite of this module is almost certain to fail.\n"
140 . 'Do you really want to continue?',
143 exit 0 unless ($ans =~ /^y(es)?$/i);
152 if ($Module::Install::AUTHOR) {
153 # Need to do this _after_ WriteAll else it looses track of them
154 Meta->{values}{build_requires} = [ grep {
156 foreach my $module (@force_build_requires_if_author) {
157 if ($_->[0] =~ /$module/) {
163 } @{Meta->{values}{build_requires}} ];
165 my @scalar_keys = Module::Install::Metadata::Meta_TupleKeys();
166 my $cr = Module::Install::Metadata->can("Meta_TupleKeys");
168 no warnings 'redefine';
169 *Module::Install::Metadata::Meta_TupleKeys = sub {
170 return $cr->(@_), 'resources';
173 Meta->{values}{resources} = [
174 [ 'MailingList', 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class' ],
175 [ 'IRC', 'irc://irc.perl.org/#dbix-class' ],
176 [ 'license', 'http://dev.perl.org/licenses/' ],
177 [ 'repository', 'http://dev.catalyst.perl.org/svnweb/bast/browse/DBIx-Class/' ],