Restore ability to handle underdefined root (t/prefetch/incomplete.t)
[dbsrgits/DBIx-Class.git] / Makefile.PL
CommitLineData
fe650234 1use strict;
2use warnings;
3
55087b99 4use 5.008001;
6c96d73f 5use inc::Module::Install 1.06;
ce4c07df 6
d1dc7a98 7##
8## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad)
9##
fc4b0448 10# get cpanX --installdeps . to behave in a checkout (most users do not expect
11# the deps for a full test suite run, and if they do - there's MI::AutoInstall
12# for that)
13BEGIN {
14 $Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) );
3054407e 15 makemaker_args( NORECURS => 1 );
fc4b0448 16}
4b5544ad 17
47589465 18homepage 'http://www.dbix-class.org/';
19resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
20resources 'license' => 'http://dev.perl.org/licenses/';
21resources 'repository' => 'https://github.com/dbsrgits/DBIx-Class';
22resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
23resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class';
24
ce4c07df 25name 'DBIx-Class';
b50d0dd3 26perl_version '5.008001';
8e0f16f1 27all_from 'lib/DBIx/Class.pm';
294c1f51 28Meta->{values}{x_authority} = 'cpan:RIBASUSHI';
ce4c07df 29
fc4b0448 30tests_recursive (qw|
31 t
32|);
8057ed01 33
fc4b0448 34install_script (qw|
35 script/dbicadmin
36|);
90cfe42b 37
fc4b0448 38###
39### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
40### All of them *MUST* go to DBIx::Class::Optional::Dependencies
41###
8057ed01 42my $runtime_requires = {
19d9d861 43 # FIXME - temporary workaround for RT#83143 (Path::Class)
44 'File::Spec' => '3.30',
45
fc4b0448 46 # FIXME - temporary, needs throwing out for something more efficient
47 'Data::Compare' => '1.22',
48
49 # DBI itself should be capable of installation and execution in pure-perl
50 # mode. However it has never been tested yet, so consider XS for the time
51 # being
52 'DBI' => '1.57',
53
a08e7b00 54 # on older versions first() leaks
55 # for the time being make it a hard dep - when we get
56 # rid of Sub::Name will revisit this (possibility is
57 # to use Devel::HideXS to force the pure-perl version
58 # or something like that)
59 'List::Util' => '1.16',
60
fc4b0448 61 # XS (or XS-dependent) libs
62 'Sub::Name' => '0.04',
63
64 # pure-perl (FatPack-able) libs
90fb8e19 65 'Class::Accessor::Grouped' => '0.10009',
9c1700e3 66 'Class::C3::Componentised' => '1.0009',
8057ed01 67 'Class::Inspector' => '1.24',
79680fc0 68 'Config::Any' => '0.20',
69 'Context::Preserve' => '0.01',
2b8cc2f2 70 'Data::Dumper::Concise' => '2.020',
8057ed01 71 'Data::Page' => '2.00',
90fb8e19 72 'Devel::GlobalDestruction' => '0.09',
b8d22f13 73 'Hash::Merge' => '0.12',
dfd722ef 74 'Moo' => '1.000006',
90fb8e19 75 'MRO::Compat' => '0.12',
76 'Module::Find' => '0.07',
77 'namespace::clean' => '0.24',
f4d7449c 78 'Path::Class' => '0.18',
b7b18f32 79 'Scope::Guard' => '0.03',
6612e610 80 'SQL::Abstract' => '1.73',
90fb8e19 81 'Try::Tiny' => '0.07',
45150bc4 82
83 # Technically this is not a core dependency - it is only required
84 # by the MySQL codepath. However this particular version is bundled
85 # since 5.10.0 and is a pure-perl module anyway - let it slide
86 'Text::Balanced' => '2.00',
fc4b0448 87};
cd122820 88
fc4b0448 89my $build_requires = {
90 # needed for testing only, not for operation
91 # we will move away from this dep eventually, perhaps to DBD::CSV or something
92 'DBD::SQLite' => '1.29',
8057ed01 93};
94
fc4b0448 95my $test_requires = {
96 'File::Temp' => '0.22',
97 'Test::Exception' => '0.31',
98 'Test::Warn' => '0.21',
99 'Test::More' => '0.94',
100 # not sure if this is necessary at all, ask schwern some day
101 'Test::Builder' => '0.94',
102
103 # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t
104 # remove and do a manual glob-collection if n::c is no longer a dep
105 'Package::Stash' => '0.28',
106};
bb7950c0 107
9345b14c 108# make strictures.pm happy (DO NOT LIKE, TOO MUCH XS!)
109# (i.e. what if the .git/.svn is *not* because of DBIC?)
110#
111# Note - this is added as test_requires *directly*, so it gets properly
112# excluded on META.yml cleansing
113if (-e '.git' or -e '.svn') {
114 test_requires 'indirect' => '0.25';
115 test_requires 'multidimensional' => '0.008';
116 test_requires 'bareword::filehandles' => '0.003';
117}
118
20beaf5f 119# if the user has this env var set and no SQLT installed, tests will fail
120# same rationale for direct test_requires as the strictures stuff above
121# (even though no dist will be created from this)
122# we force this req regarless of author_deps, worst case scenario it will
123# be specified twice
124if ($ENV{DBICTEST_SQLT_DEPLOY}) {
125 local @INC = ('lib', @INC);
126 require DBIx::Class::Optional::Dependencies;
127 my $dep_req = DBIx::Class::Optional::Dependencies->req_list_for('deploy');
128 for (keys %$dep_req) {
129 test_requires ($_ => $dep_req->{$_})
130 }
131}
132
8057ed01 133# this is so we can order requires alphabetically
fc4b0448 134# copies are needed for potential author requires injection
8057ed01 135my $reqs = {
136 build_requires => { %$build_requires },
137 requires => { %$runtime_requires },
138 test_requires => { %$test_requires },
139};
3a4251e2 140
c78f9f5b 141# only do author-includes if not part of a `make` run
142if ($Module::Install::AUTHOR and ! $ENV{MAKELEVEL}) {
fc4b0448 143 # get options here, make $args available to all snippets
144 require Getopt::Long;
145 my $getopt = Getopt::Long::Parser->new(
146 config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/]
147 );
148 my $args = {
149 skip_author_deps => undef,
150 };
df65d4da 151 $getopt->getoptions($args, qw/
152 skip_author_deps|skip-author-deps
153 /);
fc4b0448 154 if (@ARGV) {
155 warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
0424d17a 156 }
8057ed01 157
3ba58fe4 158 # We need the MM facilities to generate the pieces for the final MM run.
159 # Just instantiate a throaway object here
160 my $mm_proto = ExtUtils::MakeMaker->new({
3054407e 161 NORECURS => 1,
3ba58fe4 162 NAME => Meta->name || die 'The Module::Install metadata must be available at this point but is not - did you rearrange the Makefile.PL...?',
163 });
164
ffce4b65 165 # Crutch for DISTBUILDING_IN_HELL
166 # Spits back a working dos2unix snippet to be used on the supplied path(s)
167 # Ironically EUMM's dos2unix is broken on win32 itself - it does
168 # not take into account the CRLF layer present on win32
169 my $crlf_fixup = sub {
170 return '' unless ($^O eq 'MSWin32' or $^O eq 'cygwin');
171 my $targets = join ', ', map { "q($_)" } @_;
172 "\t" . $mm_proto->oneliner( qq(\$ENV{PERLIO}='unix' and system( \$^X, qw( -MExtUtils::Command -e dos2unix -- ), $targets ) ) );
173 };
174
e01862e4 175 # we are in the process of (re)writing the makefile - some things we
176 # call below very well may fail
177 local $ENV{DBICTEST_NO_MAKEFILE_VERIFICATION} = 1;
178
fc4b0448 179 require File::Spec;
180 # string-eval, not do(), because we need to provide the
3ba58fe4 181 # $mm_proto, $reqs and $*_requires lexicals to the included file
fc4b0448 182 # (some includes *do* modify $reqs above)
8baa2122 183 for my $inc (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) {
184 my $src = do { local (@ARGV, $/) = $inc; <> } or die $!;
185 eval "use warnings; use strict; $src" or die sprintf
186 "Failed execution of %s: %s\n",
187 $inc,
188 ($@ || $! || 'Unknown error'),
189 ;
0424d17a 190 }
8057ed01 191}
fc4b0448 192else {
193 # make sure this Makefile can not be used to make a dist
0e016219 194 # (without the author includes there are no meta cleanup, no sanity checks, etc)
fc4b0448 195 postamble <<EOP;
fc4b0448 196create_distdir: nonauthor_stop_distdir_creation
197nonauthor_stop_distdir_creation:
198\t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
199\t\$(NOECHO) \$(FALSE)
200EOP
201}
8057ed01 202
203# compose final req list, for alphabetical ordering
204my %final_req;
205for my $rtype (keys %$reqs) {
206 for my $mod (keys %{$reqs->{$rtype}} ) {
207
208 # sanity check req duplications
209 if ($final_req{$mod}) {
b718fd0a 210 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
8057ed01 211 }
212
213 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
214 }
215}
216
217# actual require
218for my $mod (sort keys %final_req) {
219 my ($rtype, $ver) = @{$final_req{$mod}};
220 no strict 'refs';
221 $rtype->($mod, $ver);
222}
a410299d 223
fc4b0448 224# author-mode or not - this is where we show a list of missing deps
225# IFF we are running interactively
92f8f62a 226auto_install();
a410299d 227
713cc98e 228WriteAll();