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