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