skip_author_deps should not require M::I::AT
[dbsrgits/DBIx-Class.git] / Makefile.PL
1 use inc::Module::Install 0.97;
2 use strict;
3 use warnings;
4 use POSIX ();
5
6 use 5.008001;
7
8 use FindBin;
9 use lib "$FindBin::Bin/lib";
10
11 # adjust ENV for $AUTHOR system() calls
12 use Config;
13 $ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
14
15 use Getopt::Long qw/:config gnu_getopt bundling_override no_ignore_case pass_through/;
16 my $args = {
17   skip_author_deps => undef,
18 };
19 GetOptions ($args, 'skip_author_deps');
20 if (@ARGV) {
21   warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
22 }
23
24 ###
25 ### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
26 ### All of them should go to DBIx::Class::Optional::Dependencies
27 ###
28
29 name     'DBIx-Class';
30 perl_version '5.008001';
31 all_from 'lib/DBIx/Class.pm';
32
33 my $build_requires = {
34   'DBD::SQLite'              => '1.25',
35 };
36
37 my $test_requires = {
38   'File::Temp'               => '0.22',
39   'Test::Builder'            => '0.33',
40   'Test::Exception'          => '0',
41   'Test::More'               => '0.92',
42   'Test::Warn'               => '0.21',
43 };
44
45 my $runtime_requires = {
46   'Carp::Clan'               => '6.0',
47   'Class::Accessor::Grouped' => '0.09003',
48   'Class::C3::Componentised' => '1.0005',
49   'Class::Inspector'         => '1.24',
50   'Data::Page'               => '2.00',
51   'DBI'                      => '1.609',
52   'File::Path'               => '2.07',
53   'MRO::Compat'              => '0.09',
54   'Module::Find'             => '0.06',
55   'Path::Class'              => '0.18',
56   'SQL::Abstract'            => '1.67',
57   'SQL::Abstract::Limit'     => '0.13',
58   'Sub::Name'                => '0.04',
59   'Data::Dumper::Concise'    => '1.000',
60   'Scope::Guard'             => '0.03',
61   'Context::Preserve'        => '0.01',
62   'Try::Tiny'                => '0.04',
63   'namespace::clean'         => '0.14',
64 };
65
66 # this is so we can order requires alphabetically
67 # copies are needed for author requires injection
68 my $reqs = {
69   build_requires => { %$build_requires },
70   requires => { %$runtime_requires },
71   test_requires => { %$test_requires },
72 };
73
74
75 # require extra modules for testing if we're in a checkout
76 my $optdep_msg;
77 if ($Module::Install::AUTHOR) {
78   if ($args->{skip_author_deps}) {
79     $optdep_msg = <<'EOW';
80
81 ******************************************************************************
82 ******************************************************************************
83 ***                                                                        ***
84 *** IGNORING AUTHOR MODE: no optional test dependencies will be forced.    ***
85 ***                                                                        ***
86 *** If you are using this checkout with the intention of submitting a DBIC ***
87 *** patch, you are *STRONGLY ENCOURAGED* to install all dependencies, so   ***
88 *** that every possible unit-test will run.                                ***
89 ***                                                                        ***
90 ******************************************************************************
91 ******************************************************************************
92
93 EOW
94   }
95   else {
96     $optdep_msg = <<'EOW';
97
98 ******************************************************************************
99 ******************************************************************************
100 ***                                                                        ***
101 *** AUTHOR MODE: all optional test dependencies converted to hard requires ***
102 ***      ( to disabled re-run Makefile.PL with --skip_author_deps )        ***
103 ***                                                                        ***
104 ******************************************************************************
105 ******************************************************************************
106
107 EOW
108
109     require DBIx::Class::Optional::Dependencies;
110     $reqs->{test_requires} = {
111       %{$reqs->{test_requires}},
112       map { %$_ } (values %{DBIx::Class::Optional::Dependencies->req_group_list}),
113     };
114   }
115 }
116
117 # compose final req list, for alphabetical ordering
118 my %final_req;
119 for my $rtype (keys %$reqs) {
120   for my $mod (keys %{$reqs->{$rtype}} ) {
121
122     # sanity check req duplications
123     if ($final_req{$mod}) {
124       die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
125     }
126
127     $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
128   }
129 }
130
131 # actual require
132 for my $mod (sort keys %final_req) {
133   my ($rtype, $ver) = @{$final_req{$mod}};
134   no strict 'refs';
135   $rtype->($mod, $ver);
136 }
137
138 # output twice since the deplist is > 70 lines
139 warn $optdep_msg if $Module::Install::AUTHOR;
140 auto_install();
141 warn $optdep_msg if $Module::Install::AUTHOR;
142
143 # re-create various autogenerated documentation bits
144 if ($Module::Install::AUTHOR) {
145
146   print "Regenerating README\n";
147   system('pod2text lib/DBIx/Class.pm > README');
148
149   if (-f 'MANIFEST') {
150     print "Removing MANIFEST\n";
151     unlink 'MANIFEST';
152   }
153
154   print "Regenerating Optional/Dependencies.pod\n";
155   require DBIx::Class::Optional::Dependencies;
156   DBIx::Class::Optional::Dependencies->_gen_pod;
157
158   # FIXME Disabled due to unsolved issues, ask theorbtwo
159   #  require Module::Install::Pod::Inherit;
160   #  PodInherit();
161 }
162
163
164 tests_recursive (qw|
165     t
166 |);
167
168 # temporary(?) until I get around to fix M::I wrt xt/
169 # needs Module::Install::AuthorTests
170 eval {
171   recursive_author_tests (qw/xt/);
172   1;
173 } || do {
174   unless ($args->{skip_author_deps}) {
175     my $err = $@;
176     eval { require Module::Install::AuthorTests }
177       || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL:\n\n$@\n";
178     die $@;
179   }
180 };
181
182
183 install_script (qw|
184     script/dbicadmin
185 |);
186
187
188 ### Mangle makefile - read the comments for more info
189 #
190 postamble <<"EOP";
191
192 # This will add an extra dep-spec for the distdir target,
193 # which `make` will fold together in a first-come first-serve
194 # fashion. What we do here is essentially adding extra
195 # commands to execute once the distdir is assembled (via
196 # create_distdir), but before control is returned to a higher
197 # calling rule.
198 distdir : dbicadmin_pod_inject
199
200 # The pod self-injection code is in fact a hidden option in
201 # dbicadmin itself
202 dbicadmin_pod_inject :
203 \tcd \$(DISTVNAME) && \$(ABSPERL) -Ilib script/dbicadmin --selfinject-pod
204
205 # Regenerate manifest before running create_distdir.
206 create_distdir : manifest
207
208 EOP
209
210 homepage 'http://www.dbix-class.org/';
211 resources 'IRC'         => 'irc://irc.perl.org/#dbix-class';
212 resources 'license'     => 'http://dev.perl.org/licenses/';
213 resources 'repository'  => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git';
214 resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
215
216 # Deprecated/internal modules need no exposure
217 no_index directory => $_ for (qw|
218   lib/DBIx/Class/Admin
219   lib/DBIx/Class/SQLAHacks
220   lib/DBIx/Class/PK/Auto
221   lib/DBIx/Class/CDBICompat
222 |);
223 no_index package => $_ for (qw/
224   DBIx::Class::SQLAHacks DBIx::Class::Storage::DBIHacks
225 /);
226
227
228 WriteAll();
229
230
231 # Re-write META.yml to _exclude_ all forced requires (we do not want to ship this)
232 if ($Module::Install::AUTHOR && ! $args->{skip_author_deps} ) {
233
234   # FIXME test_requires is not yet part of META
235   my %original_build_requires = ( %$build_requires, %$test_requires );
236
237   print "Regenerating META with author requires excluded\n";
238   Meta->{values}{build_requires} = [ grep
239     { exists $original_build_requires{$_->[0]} }
240    ( @{Meta->{values}{build_requires}} )
241   ];
242
243   Meta->write;
244 }