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