diff options
author | Russ Allbery <eagle@eyrie.org> | 2014-07-16 13:13:27 -0700 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2014-07-16 13:36:02 -0700 |
commit | db7f70dfc9b12b346c274d72a23808920d8a1112 (patch) | |
tree | 2f658cda7d14e474a2ba6536005cd7a5cc1ee66d | |
parent | ed2fc881ef853f27e1ac7e4a3a51fcd2b18af9bf (diff) |
Add more Perl dependencies, bump Perl version
Also set module_name (uselessly) to avoid warnings from
Module::Build.
Change-Id: I53426a096f4133f27aa3315b4be24385a3476793
Reviewed-on: https://gerrit.stanford.edu/1571
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
-rw-r--r-- | perl/Build.PL | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl/Build.PL b/perl/Build.PL index 3d3bcdc..968ae37 100644 --- a/perl/Build.PL +++ b/perl/Build.PL @@ -21,16 +21,19 @@ my $build = Module::Build->new( dist_name => 'Wallet', dist_version => '1.01', license => 'mit', + module_name => 'Wallet::Server', recursive_test_files => 1, # Other package relationships. configure_requires => { 'Module::Build' => 0.28 }, requires => { + 'Date::Parse' => 0, + DateTime => 0, 'DBIx::Class' => 0, DBI => 0, 'Digest::MD5' => 0, 'SQL::Translator' => 0, - perl => '5.006', + perl => '5.008', }, recommends => { 'Authen::SASL' => 0, |