From 3684a15530fa5118fbe4398f1b0b36e86674165d Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Mon, 11 Mar 2024 23:25:26 -0700 Subject: [PATCH] more deps --- .github/workflows/ci.yml | 1 + META.yml | 5 +++++ Makefile.PL | 4 +++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb97404c..b1d72075 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ jobs: matrix: os: ["ubuntu-latest"] perl: ["5.16", "5.32"] + fail-fast: false runs-on: ubuntu-latest services: redis: diff --git a/META.yml b/META.yml index 2fe82643..88e0d200 100644 --- a/META.yml +++ b/META.yml @@ -22,6 +22,7 @@ requires: Date::Parse: 0 File::Tail: 0 File::Temp: 0 + File::NFSLock: 0 IO::Socket::SSL: 0 MIME::Base64: 0 Mail::DKIM: 0 @@ -30,8 +31,12 @@ requires: Net::IP: 0 Time::HiRes: 0 Time::TAI64: 0 + Test::More: 0 + Test::Output: 0 Mail::SPF: 0 Geo::IP: 0 + GeoIP2: 0 Redis: 0 CDB_File: 0 + DB_File: 0 version: 1.00 diff --git a/Makefile.PL b/Makefile.PL index d533c0d4..3897a1f8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,7 @@ WriteMakefile( VERSION_FROM => 'lib/Qpsmtpd.pm', PREREQ_PM => { 'CDB_File' => 0, + 'DB_File' => 0, 'Data::Dumper' => 0, 'Date::Parse' => 0, 'File::Temp' => 0, @@ -26,7 +27,7 @@ WriteMakefile( 'Mail::DKIM' => 0.40, 'File::Tail' => 0, # log/summarize, log/watch 'Time::TAI64' => 0, # log2sql - 'Redis' => 0, + 'Redis' => 0, # 'DBI' => 0, # auth_vpopmail_sql and # 'DBD::mysql' => 0, # log2sql # 'DBIx::Simple' => 0, # log2sql @@ -35,6 +36,7 @@ WriteMakefile( 'Geo::IP' => 1, 'Math::Complex' => 0, # geodesic distance in Geo::IP 'PerlIO::gzip' => 0, # gunzip GeoIP databases + 'File::NFSLock' => 0, }, ABSTRACT => 'Flexible smtpd daemon written in Perl', AUTHOR => 'Ask Bjoern Hansen ',