Revert 796acb6a - latest FreeTDS does not support MARs in any form
[dbsrgits/DBIx-Class.git] / Makefile.PL
1 use strict;
2 use warnings;
3
4 use 5.008001;
5 use inc::Module::Install 1.06;
6
7 ##
8 ## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad)
9 ##
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)
13 BEGIN {
14   $Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) );
15 }
16
17 name     'DBIx-Class';
18 perl_version '5.008001';
19 all_from 'lib/DBIx/Class.pm';
20
21 tests_recursive (qw|
22     t
23 |);
24
25 install_script (qw|
26     script/dbicadmin
27 |);
28
29 homepage 'http://www.dbix-class.org/';
30 resources 'IRC'         => 'irc://irc.perl.org/#dbix-class';
31 resources 'license'     => 'http://dev.perl.org/licenses/';
32 resources 'repository'  => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git';
33 resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
34 resources 'bugtracker'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class';
35
36 ###
37 ### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
38 ### All of them *MUST* go to DBIx::Class::Optional::Dependencies
39 ###
40 my $runtime_requires = {
41   # FIXME - temporary, needs throwing out for something more efficient
42   'Data::Compare'            => '1.22',
43
44   # DBI itself should be capable of installation and execution in pure-perl
45   # mode. However it has never been tested yet, so consider XS for the time
46   # being
47   'DBI'                      => '1.57',
48
49   # XS (or XS-dependent) libs
50   'Sub::Name'                => '0.04',
51
52   # pure-perl (FatPack-able) libs
53   'Class::Accessor::Grouped' => '0.10002',
54   'Class::C3::Componentised' => '1.0009',
55   'Class::Inspector'         => '1.24',
56   'Class::Method::Modifiers' => '1.06',
57   'Config::Any'              => '0.20',
58   'Context::Preserve'        => '0.01',
59   'Data::Dumper::Concise'    => '2.020',
60   'Data::Page'               => '2.00',
61   'Hash::Merge'              => '0.12',
62   'Moo'                      => '0.009013',
63   'MRO::Compat'              => '0.09',
64   'Module::Find'             => '0.06',
65   'namespace::clean'         => '0.20',
66   'Path::Class'              => '0.18',
67   'Scope::Guard'             => '0.03',
68   'SQL::Abstract'            => '1.72',
69   'Try::Tiny'                => '0.04',
70
71   # dual-life corelibs needing a specific bugfixed version
72   'File::Path'               => '2.07',
73 };
74
75 my $build_requires = {
76   # needed for testing only, not for operation
77   # we will move away from this dep eventually, perhaps to DBD::CSV or something
78   'DBD::SQLite'              => '1.29',
79 };
80
81 my $test_requires = {
82   'File::Temp'               => '0.22',
83   'Test::Exception'          => '0.31',
84   'Test::Warn'               => '0.21',
85   'Test::More'               => '0.94',
86   # not sure if this is necessary at all, ask schwern some day
87   'Test::Builder'            => '0.94',
88
89   # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t
90   # remove and do a manual glob-collection if n::c is no longer a dep
91   'Package::Stash'           => '0.28',
92 };
93
94 # make strictures.pm happy (DO NOT LIKE, TOO MUCH XS!)
95 # (i.e. what if the .git/.svn is *not* because of DBIC?)
96 #
97 # Note - this is added as test_requires *directly*, so it gets properly
98 # excluded on META.yml cleansing
99 if (-e '.git' or -e '.svn') {
100   test_requires 'indirect'              => '0.25';
101   test_requires 'multidimensional'      => '0.008';
102   test_requires 'bareword::filehandles' => '0.003';
103 }
104
105 # Bail out on parallel testing
106 if (
107   ($ENV{HARNESS_OPTIONS}||'') =~ / (?: ^ | \: ) j(\d+) /x
108     and
109   $1 > 1
110 ) { die <<EOP }
111
112 ******************************************************************************
113 ******************************************************************************
114 ***                                                                        ***
115 ***      PARALLEL TESTING DETECTED ( \$ENV{HARNESS_OPTIONS} = 'j$1' )        ***
116 ***                                                                        ***
117 *** DBIC tests WILL FAIL. It is harder to make them parallel-friendly than ***
118 *** it should be (though work is underway). In the meantime you will have  ***
119 *** to adjust your environment and re-run the installation. Sorry!         ***
120 ***                                                                        ***
121 ******************************************************************************
122 ******************************************************************************
123
124 EOP
125
126 # this is so we can order requires alphabetically
127 # copies are needed for potential author requires injection
128 my $reqs = {
129   build_requires => { %$build_requires },
130   requires => { %$runtime_requires },
131   test_requires => { %$test_requires },
132 };
133
134 # only do author-includes if not part of a `make` run
135 if ($Module::Install::AUTHOR  and ! $ENV{MAKELEVEL}) {
136   # get options here, make $args available to all snippets
137   require Getopt::Long;
138   my $getopt = Getopt::Long::Parser->new(
139     config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/]
140   );
141   my $args = {
142     skip_author_deps => undef,
143   };
144   $getopt->getoptions($args, qw/
145     skip_author_deps|skip-author-deps
146   /);
147   if (@ARGV) {
148     warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
149   }
150
151   require File::Spec;
152   # string-eval, not do(), because we need to provide the
153   # $reqs and $*_requires lexicals to the included file
154   # (some includes *do* modify $reqs above)
155   for (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) {
156     eval scalar do { local (@ARGV, $/) = $_; <> }
157       or die ($@ || $!);
158   }
159 }
160 else {
161   # make sure this Makefile can not be used to make a dist
162   # (without the author includes there are no meta cleanup, no sanity checks, etc)
163   postamble <<EOP;
164 .PHONY: nonauthor_stop_distdir_creation
165 create_distdir: nonauthor_stop_distdir_creation
166 nonauthor_stop_distdir_creation:
167 \t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
168 \t\$(NOECHO) \$(FALSE)
169 EOP
170
171   # if the user has this env var set and no SQLT installed, tests will fail
172   # same rationale for direct test_requires as the strictures stuff above
173   # (even though no dist will be created from this)
174   if ($ENV{DBICTEST_SQLT_DEPLOY}) {
175     local @INC = ('lib', @INC);
176     require DBIx::Class::Optional::Dependencies;
177     my $dep_req = DBIx::Class::Optional::Dependencies->req_list_for('deploy');
178     for (keys %$dep_req) {
179       test_requires ($_ => $dep_req->{$_})
180     }
181   }
182 }
183
184 # compose final req list, for alphabetical ordering
185 my %final_req;
186 for my $rtype (keys %$reqs) {
187   for my $mod (keys %{$reqs->{$rtype}} ) {
188
189     # sanity check req duplications
190     if ($final_req{$mod}) {
191       die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
192     }
193
194     $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
195   }
196 }
197
198 # actual require
199 for my $mod (sort keys %final_req) {
200   my ($rtype, $ver) = @{$final_req{$mod}};
201   no strict 'refs';
202   $rtype->($mod, $ver);
203 }
204
205 # author-mode or not - this is where we show a list of missing deps
206 # IFF we are running interactively
207 auto_install();
208
209 WriteAll();