}
}
-homepage 'http://www.dbix-class.org/';
-resources 'x_IRC' => 'irc://irc.perl.org/#dbix-class';
-resources 'x_WebIRC' => 'https://chat.mibbit.com/#dbix-class@irc.perl.org';
-resources 'license' => 'http://dev.perl.org/licenses/';
-resources 'repository' => 'https://github.com/dbsrgits/DBIx-Class';
-resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
-resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class';
-
-name 'DBIx-Class';
+name 'DBIx-Class';
+version_from 'lib/DBIx/Class.pm';
perl_version '5.008001';
-all_from 'lib/DBIx/Class.pm';
-Meta->{values}{x_authority} = 'cpan:RIBASUSHI';
-
-# nothing determined at runtime, except for possibly SQLT dep, see
-# comment further down
-dynamic_config 0;
-
-tests_recursive (qw|
- t
-|);
-
-install_script (qw|
- script/dbicadmin
-|);
###
### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
}
}
+tests_recursive (qw|
+ t
+|);
+
+install_script (qw|
+ script/dbicadmin
+|);
+
# this is so we can order requires alphabetically
# copies are needed for potential author requires injection
my $reqs = {
exit 0;
+
+###
+### Nothing user-serviceable beyond this point
+### (none of this executes on regular install)
+###
+
+
# needs to be here to keep 5.8 string eval happy
# (the include of Makefile.PL.inc loop)
my $mm_proto;
+++ /dev/null
-print "Appending to the no_index META list\n";
-
-# Deprecated/internal modules need no exposure when building the meta
-no_index directory => $_ for (qw|
- lib/DBIx/Class/Admin
- lib/DBIx/Class/PK/Auto
- lib/DBIx/Class/CDBICompat
- maint
-|);
-no_index package => $_ for (qw/
- DBIx::Class::Storage::DBIHacks
- DBIx::Class::Storage::BlockRunner
- DBIx::Class::Carp
- DBIx::Class::_Util
- DBIx::Class::ResultSet::Pager
-/);
-
-# keep the Makefile.PL eval happy
-1;
--- /dev/null
+# authorshipz
+author 'mst: Matt S. Trout <mst@shadowcat.co.uk>';
+Meta->{values}{x_authority} = 'cpan:RIBASUSHI';
+
+# legalese
+license 'perl';
+resources 'license' => 'http://dev.perl.org/licenses/';
+
+# misc resources
+abstract_from 'lib/DBIx/Class.pm';
+resources 'homepage' => 'http://www.dbix-class.org/';
+resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
+resources 'repository' => 'https://github.com/dbsrgits/DBIx-Class';
+resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
+resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class';
+
+# nothing determined at runtime, except for possibly SQLT dep
+# (see the check around DBICTEST_SQLT_DEPLOY in Makefile.PL)
+dynamic_config 0;
+
+# Deprecated/internal modules need no exposure when building the meta
+no_index directory => $_ for (qw|
+ lib/DBIx/Class/Admin
+ lib/DBIx/Class/PK/Auto
+ lib/DBIx/Class/CDBICompat
+ maint
+|);
+no_index package => $_ for (qw/
+ DBIx::Class::Storage::DBIHacks
+ DBIx::Class::Storage::BlockRunner
+ DBIx::Class::Carp
+ DBIx::Class::_Util
+ DBIx::Class::ResultSet::Pager
+/);
+
+# keep the Makefile.PL eval happy
+1;