silence warnings from 40overwrite_modifications.t
[dbsrgits/DBIx-Class-Schema-Loader.git] / Makefile.PL
CommitLineData
0662c9b3 1use inc::Module::Install 0.91;
3fe9c5d9 2
3name 'DBIx-Class-Schema-Loader';
4all_from 'lib/DBIx/Class/Schema/Loader.pm';
5
9cb983b3 6test_requires 'Test::Exception';
d27f2b7b 7test_requires 'Test::More' => '0.94';
390bbe3f 8test_requires 'DBI' => '1.56';
9test_requires 'DBD::SQLite' => '1.12';
9cb983b3 10test_requires 'File::Copy';
11test_requires 'File::Temp' => '0.16';
502b65d4 12test_requires 'File::Path' => '2.07';
ff746964 13test_requires 'IPC::Open3' => 0;
3fe9c5d9 14
15requires 'File::Spec' => 0;
16requires 'Scalar::Util' => 0;
17requires 'Data::Dump' => '1.06';
3fe9c5d9 18requires 'Lingua::EN::Inflect::Number' => '1.1';
19requires 'Text::Balanced' => 0;
20requires 'Digest::MD5' => '2.36';
c16e6d28 21requires 'Class::Accessor::Grouped' => '0.09002';
3fe9c5d9 22requires 'Class::C3' => '0.18';
ee1c392c 23requires 'Class::C3::Componentised' => '1.0005';
3fe9c5d9 24requires 'Carp::Clan' => 0;
25requires 'Class::Inspector' => 0;
309e2aa1 26requires 'DBIx::Class' => '0.08114';
af31090c 27requires 'Class::Unload' => 0;
3fe9c5d9 28
ff746964 29install_script 'script/dbicdump';
30
01012543 31tests_recursive;
32
7507c8ce 33# This is my manual hack for better feature control
34# If you want to change the default answer for a feature,
35# set the appropriate environment variable, like
36# DBIC_FEATURE_MYSQL. If you want the defaults to
37# apply automatically without asking any questions,
38# set DBIC_FEATURE_NOQUESTIONS. Hopefully this will
39# save someone some pain when trying to automate
40# the installation of this software.
41
42# Maintainer shouldn't set these, as they would affect
43# the META.yml shipped to CPAN.
44
45my $_features = [
46 SQLITE => {
47 label => 'SQLite Support',
48 def => $ENV{DBIC_FEATURE_SQLITE} || 0,
49 deps => [
50 'DBI' => '1.56',
51 'DBD::SQLite' => '1.12',
52 ],
53 },
54 MYSQL => {
55 label => 'MySQL Support',
56 def => $ENV{DBIC_FEATURE_MYSQL} || 0,
57 deps => [
58 'DBI' => '1.56',
59 'DBD::mysql' => '4.004',
60 ],
61 },
62 PG => {
63 label => 'PostgreSQL Support',
64 def => $ENV{DBIC_FEATURE_PG} || 0,
65 deps => [
66 'DBI' => '1.56',
67 'DBD::Pg' => '1.49', # Soon to be 1.50
68 ],
69 },
70 DB2 => {
71 label => 'DB2 Support',
72 def => $ENV{DBIC_FEATURE_DB2} || 0,
73 deps => [
74 'DBI' => '1.56',
75 'DBD::DB2' => '1.0',
76 ],
77 },
78 ORACLE => {
79 label => 'Oracle Support (experimental)',
80 def => $ENV{DBIC_FEATURE_ORACLE} || 0,
81 deps => [
82 'DBI' => '1.56',
83 'DBD::Oracle' => '0.19',
84 ],
85 },
3ea1f8cc 86 SYBASE => {
87 label => 'Sybase Support (experimental)',
88 def => $ENV{DBIC_FEATURE_SYBASE} || 0,
89 deps => [
90 'DBI' => '1.56',
91 'DBD::Sybase' => '1.09',
92 ],
93 },
94 MSSQL => {
95 label => 'Microsoft SQL Server Support via DBD::Sybase (experimental)',
96 def => $ENV{DBIC_FEATURE_MSSQL} || 0,
97 deps => [
98 'DBI' => '1.56',
99 'DBD::Sybase' => '1.09',
100 ],
101 },
102 MSSQL_ODBC => {
103 label => 'Microsoft SQL Server Support via DBD::ODBC (experimental)',
104 def => $ENV{DBIC_FEATURE_MSSQL} || 0,
105 deps => [
106 'DBI' => '1.56',
107 'DBD::ODBC' => '1.22',
108 ],
109 },
7507c8ce 110];
111
112for(my $i = 0; $i <= $#$_features - 1; $i += 2) {
113 my $name = $_features->[$i];
114 my $attrs = $_features->[$i+1];
115
116 if($ENV{DBIC_FEATURE_NOQUESTIONS}) {
117 if($attrs->{def}) {
118 requires @{$attrs->{deps}};
119 }
120 }
121 else {
122 feature $attrs->{label} =>
123 -default => $attrs->{def},
124 @{$attrs->{deps}};
125 }
126}
3fe9c5d9 127
128# Rebuild README for maintainers
fdd8ff16 129if ($Module::Install::AUTHOR) {
3fe9c5d9 130 system("pod2text lib/DBIx/Class/Schema/Loader.pm > README");
131}
132
fdd8ff16 133realclean_files 'README';
134
64b844d0 135resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
136resources 'license' => 'http://dev.perl.org/licenses/';
137resources 'repository' => 'http://dev.catalyst.perl.org/repos/bast/branches/DBIx-Class-Schema-Loader/current/';
138resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
139
3fe9c5d9 140auto_provides;
141auto_install;
142WriteAll;