Commit | Line | Data |
47a4aa51 |
1 | use inc::Module::Install 1.00; |
fe650234 |
2 | use strict; |
3 | use warnings; |
4 | |
55087b99 |
5 | use 5.008001; |
ce4c07df |
6 | |
8057ed01 |
7 | use FindBin; |
8 | use lib "$FindBin::Bin/lib"; |
2f5a6e87 |
9 | use DBIx::Class::Optional::Dependencies; |
93c50889 |
10 | |
97f9f16e |
11 | # adjust ENV for $AUTHOR system() calls |
12 | use Config; |
13 | $ENV{PERL5LIB} = join ($Config{path_sep}, @INC); |
14 | |
347275d1 |
15 | use Getopt::Long (); |
16 | |
17 | my $getopt = Getopt::Long::Parser->new( |
18 | config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/] |
19 | ); |
0424d17a |
20 | my $args = { |
21 | skip_author_deps => undef, |
22 | }; |
347275d1 |
23 | $getopt->getoptions($args, 'skip_author_deps'); |
0424d17a |
24 | if (@ARGV) { |
25 | warn "\nIgnoring unrecognized option(s): @ARGV\n\n"; |
26 | } |
97f9f16e |
27 | |
d1dc7a98 |
28 | # get cpanX --installdeps . to behave in a checkout (most users do not need |
29 | # the deps for a full test suite run, and if they do - there's MI::AutoInstall |
30 | # for that) |
31 | ## |
32 | ## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad) |
33 | ## |
34 | $Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) ); |
35 | |
4b5544ad |
36 | ### |
37 | ### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends() |
38 | ### All of them should go to DBIx::Class::Optional::Dependencies |
39 | ### |
40 | |
ce4c07df |
41 | name 'DBIx-Class'; |
b50d0dd3 |
42 | perl_version '5.008001'; |
8e0f16f1 |
43 | all_from 'lib/DBIx/Class.pm'; |
ce4c07df |
44 | |
8057ed01 |
45 | my $build_requires = { |
79680fc0 |
46 | # needed for testing only, not for operation |
b9df8e39 |
47 | 'DBD::SQLite' => '1.29', |
8057ed01 |
48 | }; |
49 | |
50 | my $test_requires = { |
30da8374 |
51 | 'File::Temp' => '0.22', |
52 | 'Test::Builder' => '0.33', |
0007aedf |
53 | 'Test::Exception' => '0.31', |
30da8374 |
54 | 'Test::More' => '0.92', |
55 | 'Test::Warn' => '0.21', |
90cfe42b |
56 | |
57 | # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t |
58 | # remove and do a manual glob-collection if n::c is no longer a dep |
59 | 'Package::Stash' => '0.28', |
8057ed01 |
60 | }; |
61 | |
62 | my $runtime_requires = { |
b8d22f13 |
63 | 'Class::Accessor::Grouped' => '0.10002', |
9c1700e3 |
64 | 'Class::C3::Componentised' => '1.0009', |
8057ed01 |
65 | 'Class::Inspector' => '1.24', |
79680fc0 |
66 | 'Config::Any' => '0.20', |
67 | 'Context::Preserve' => '0.01', |
2b8cc2f2 |
68 | 'Data::Dumper::Concise' => '2.020', |
8057ed01 |
69 | 'Data::Page' => '2.00', |
b8d22f13 |
70 | 'Hash::Merge' => '0.12', |
8057ed01 |
71 | 'MRO::Compat' => '0.09', |
72 | 'Module::Find' => '0.06', |
f4d7449c |
73 | 'Path::Class' => '0.18', |
b7b18f32 |
74 | 'Scope::Guard' => '0.03', |
bf51641f |
75 | 'SQL::Abstract' => '1.72', |
20674fcd |
76 | 'Try::Tiny' => '0.04', |
79680fc0 |
77 | |
78 | # XS (or XS-dependent) libs |
79 | 'DBI' => '1.609', |
4549ba49 |
80 | 'namespace::clean' => '0.20', |
79680fc0 |
81 | 'Sub::Name' => '0.04', |
82 | 'Variable::Magic' => '0.44', |
83 | |
c7d50a7d |
84 | # dual-life corelibs needing a specific bugfixed version |
79680fc0 |
85 | 'File::Path' => '2.07', |
8057ed01 |
86 | }; |
87 | |
88 | # this is so we can order requires alphabetically |
89 | # copies are needed for author requires injection |
90 | my $reqs = { |
91 | build_requires => { %$build_requires }, |
92 | requires => { %$runtime_requires }, |
93 | test_requires => { %$test_requires }, |
94 | }; |
3a4251e2 |
95 | |
be68095d |
96 | my %reqs_for_group = %{DBIx::Class::Optional::Dependencies->req_group_list}; |
97 | |
98 | # exclude the rdbms_* groups which are for DBIC users |
2f5a6e87 |
99 | my $opt_testdeps = { |
be68095d |
100 | map { %{$reqs_for_group{$_}} } grep { !/^rdbms_/ } keys %reqs_for_group |
2f5a6e87 |
101 | }; |
8057ed01 |
102 | |
92f8f62a |
103 | # require extra modules for testing if we're in a checkout |
0424d17a |
104 | my $optdep_msg; |
92f8f62a |
105 | if ($Module::Install::AUTHOR) { |
0424d17a |
106 | if ($args->{skip_author_deps}) { |
107 | $optdep_msg = <<'EOW'; |
108 | |
109 | ****************************************************************************** |
110 | ****************************************************************************** |
111 | *** *** |
112 | *** IGNORING AUTHOR MODE: no optional test dependencies will be forced. *** |
113 | *** *** |
114 | *** If you are using this checkout with the intention of submitting a DBIC *** |
115 | *** patch, you are *STRONGLY ENCOURAGED* to install all dependencies, so *** |
116 | *** that every possible unit-test will run. *** |
117 | *** *** |
118 | ****************************************************************************** |
119 | ****************************************************************************** |
120 | |
121 | EOW |
122 | } |
123 | else { |
124 | $optdep_msg = <<'EOW'; |
125 | |
8057ed01 |
126 | ****************************************************************************** |
127 | ****************************************************************************** |
128 | *** *** |
129 | *** AUTHOR MODE: all optional test dependencies converted to hard requires *** |
7adae31a |
130 | *** ( to disable re-run Makefile.PL with --skip_author_deps ) *** |
8057ed01 |
131 | *** *** |
132 | ****************************************************************************** |
133 | ****************************************************************************** |
134 | |
135 | EOW |
136 | |
0424d17a |
137 | $reqs->{test_requires} = { |
138 | %{$reqs->{test_requires}}, |
2f5a6e87 |
139 | %$opt_testdeps |
0424d17a |
140 | }; |
141 | } |
8057ed01 |
142 | } |
143 | |
144 | # compose final req list, for alphabetical ordering |
145 | my %final_req; |
146 | for my $rtype (keys %$reqs) { |
147 | for my $mod (keys %{$reqs->{$rtype}} ) { |
148 | |
149 | # sanity check req duplications |
150 | if ($final_req{$mod}) { |
b718fd0a |
151 | die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n"; |
8057ed01 |
152 | } |
153 | |
154 | $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ], |
155 | } |
156 | } |
157 | |
158 | # actual require |
159 | for my $mod (sort keys %final_req) { |
160 | my ($rtype, $ver) = @{$final_req{$mod}}; |
161 | no strict 'refs'; |
162 | $rtype->($mod, $ver); |
163 | } |
a410299d |
164 | |
0424d17a |
165 | # output twice since the deplist is > 70 lines |
f90896ae |
166 | warn $optdep_msg if $Module::Install::AUTHOR; |
92f8f62a |
167 | auto_install(); |
f90896ae |
168 | warn $optdep_msg if $Module::Install::AUTHOR; |
92f8f62a |
169 | |
4557be61 |
170 | |
92f8f62a |
171 | # re-create various autogenerated documentation bits |
172 | if ($Module::Install::AUTHOR) { |
173 | |
174 | print "Regenerating README\n"; |
175 | system('pod2text lib/DBIx/Class.pm > README'); |
176 | |
177 | if (-f 'MANIFEST') { |
178 | print "Removing MANIFEST\n"; |
179 | unlink 'MANIFEST'; |
180 | } |
181 | |
92f8f62a |
182 | print "Regenerating Optional/Dependencies.pod\n"; |
183 | require DBIx::Class::Optional::Dependencies; |
ccebe1f1 |
184 | DBIx::Class::Optional::Dependencies->_gen_pod (Meta->version); |
92f8f62a |
185 | |
186 | # FIXME Disabled due to unsolved issues, ask theorbtwo |
187 | # require Module::Install::Pod::Inherit; |
188 | # PodInherit(); |
189 | } |
190 | |
f90896ae |
191 | |
7eaae8db |
192 | tests_recursive (qw| |
193 | t |
194 | |); |
195 | |
f90896ae |
196 | # temporary(?) until I get around to fix M::I wrt xt/ |
197 | # needs Module::Install::AuthorTests |
c1fdb460 |
198 | eval { |
c5e9d46d |
199 | # this should not be necessary since the autoloader is supposed |
200 | # to work, but there were reports of it failing |
201 | require Module::Install::AuthorTests; |
7f2c37b8 |
202 | recursive_author_tests (qw/xt/); |
203 | 1; |
204 | } || do { |
d1dc7a98 |
205 | if ($Module::Install::AUTHOR && ! $args->{skip_author_deps}) { |
22a2062e |
206 | my $err = $@; |
c5e9d46d |
207 | |
208 | # better error message in case of missing dep |
22a2062e |
209 | eval { require Module::Install::AuthorTests } |
eeaf8701 |
210 | || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL in author mode (or supply --skip_author_deps):\n\n$@\n"; |
c5e9d46d |
211 | |
212 | die $err; |
22a2062e |
213 | } |
7f2c37b8 |
214 | }; |
f90896ae |
215 | |
216 | |
a410299d |
217 | install_script (qw| |
218 | script/dbicadmin |
219 | |); |
220 | |
7eaae8db |
221 | |
222 | ### Mangle makefile - read the comments for more info |
223 | # |
224 | postamble <<"EOP"; |
225 | |
226 | # This will add an extra dep-spec for the distdir target, |
227 | # which `make` will fold together in a first-come first-serve |
228 | # fashion. What we do here is essentially adding extra |
229 | # commands to execute once the distdir is assembled (via |
230 | # create_distdir), but before control is returned to a higher |
231 | # calling rule. |
232 | distdir : dbicadmin_pod_inject |
233 | |
234 | # The pod self-injection code is in fact a hidden option in |
235 | # dbicadmin itself |
236 | dbicadmin_pod_inject : |
237 | \tcd \$(DISTVNAME) && \$(ABSPERL) -Ilib script/dbicadmin --selfinject-pod |
238 | |
239 | # Regenerate manifest before running create_distdir. |
240 | create_distdir : manifest |
241 | |
242 | EOP |
243 | |
f90896ae |
244 | homepage 'http://www.dbix-class.org/'; |
a410299d |
245 | resources 'IRC' => 'irc://irc.perl.org/#dbix-class'; |
246 | resources 'license' => 'http://dev.perl.org/licenses/'; |
aeb669b8 |
247 | resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git'; |
a410299d |
248 | resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class'; |
70fbb0b8 |
249 | resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class'; |
a410299d |
250 | |
974fe5e8 |
251 | # Deprecated/internal modules need no exposure |
252 | no_index directory => $_ for (qw| |
bc6f129c |
253 | lib/DBIx/Class/Admin |
281738a4 |
254 | lib/DBIx/Class/PK/Auto |
bc6f129c |
255 | lib/DBIx/Class/CDBICompat |
974fe5e8 |
256 | |); |
257 | no_index package => $_ for (qw/ |
d5dedbd6 |
258 | DBIx::Class::Storage::DBIHacks |
70c28808 |
259 | DBIx::Class::Carp |
974fe5e8 |
260 | /); |
a410299d |
261 | |
713cc98e |
262 | WriteAll(); |
09d46657 |
263 | |
2f5a6e87 |
264 | # Re-write META.yml to _exclude_ all forced build-requires (we do not want to ship |
265 | # this) We are also not using M::I::AuthorRequires as this will be an extra dep, |
266 | # and deps in Makefile.PL still suck |
267 | # Also always test the result so we stop shipping borked dependency lists to CPAN |
713cc98e |
268 | |
2f5a6e87 |
269 | # FIXME test_requires is not yet part of META |
270 | my %original_build_requires = ( %$build_requires, %$test_requires ); |
271 | my @all_build_requires = @{delete Meta->{values}{build_requires}}; |
272 | my %removed_build_requires; |
8057ed01 |
273 | |
2f5a6e87 |
274 | for (@all_build_requires) { |
275 | if ($original_build_requires{$_->[0]}) { |
276 | push @{Meta->{values}{build_requires}}, $_; |
277 | } |
278 | else { |
279 | $removed_build_requires{$_->[0]} = $_->[1] |
280 | unless $_->[0] eq 'ExtUtils::MakeMaker'; |
1278e5f0 |
281 | } |
2f5a6e87 |
282 | } |
713cc98e |
283 | |
2f5a6e87 |
284 | # Rewrite only in author mode, the original META should not contain anything anyway |
285 | # if we executed as non-author |
286 | if ($Module::Install::AUTHOR && keys %removed_build_requires) { |
1278e5f0 |
287 | print "Regenerating META with author requires excluded\n"; |
713cc98e |
288 | Meta->write; |
2f5a6e87 |
289 | } |
1278e5f0 |
290 | |
2f5a6e87 |
291 | # test that we really took things away (just in case, happened twice somehow) |
b8d22f13 |
292 | if (! -f 'META.yml') { |
293 | warn "No META.yml generated?! aborting...\n"; |
294 | exit 1; |
295 | } |
2f5a6e87 |
296 | my $meta = do { local @ARGV = 'META.yml'; local $/; <> }; |
297 | |
298 | # this is safe as there is a fatal check earlier to make sure $opt_testdeps does |
299 | # not contain any real dependencies |
300 | my @illegal_leftovers = grep |
301 | { $meta =~ /^ \s+ \Q$_\E \: \s+ /mx } |
302 | ( sort keys %$opt_testdeps ) |
303 | ; |
304 | |
305 | if (@illegal_leftovers) { |
306 | die join ("\n", |
307 | "\n\nFATAL FAIL! It looks like some author dependencies made it to the META.yml:\n", |
308 | map { "\t$_" } @illegal_leftovers |
309 | ) . "\n\n"; |
09d46657 |
310 | } |