about summary refs log tree commit homepage
path: root/ci/deps.perl
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-09-08 13:09:05 +0000
committerEric Wong <e@80x24.org>2023-09-08 20:43:20 +0000
commit97f1ee0a38966eaeddf78577d1ba8d75afb951ab (patch)
treea7617456b1b9056009d40c4ed6604ff0410a0e45 /ci/deps.perl
parent7a0f5c42a8e22a01c076ef38204d3ee9fa8b3af2 (diff)
downloadpublic-inbox-97f1ee0a38966eaeddf78577d1ba8d75afb951ab.tar.gz
Since -cindex uses the xapian-delve(1) command for `--prune'
functionality, we'll rename our `xapian-compact' dependency to
the Debian package name (xapian-tools) since `xapian-delve' is
in the same package.
Diffstat (limited to 'ci/deps.perl')
-rwxr-xr-xci/deps.perl12
1 files changed, 6 insertions, 6 deletions
diff --git a/ci/deps.perl b/ci/deps.perl
index ae85986d..94266029 100755
--- a/ci/deps.perl
+++ b/ci/deps.perl
@@ -1,10 +1,10 @@
 #!/usr/bin/perl -w
-# Copyright (C) 2019-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 # Helper script for installing/uninstalling packages for CI use
 # Intended for use on non-production chroots or VMs since it
 # changes installed packages
-use strict;
+use v5.12;
 my $usage = "$0 PKG_FMT PROFILE [PROFILE_MOD]";
 my $pkg_fmt = shift;
 @ARGV or die $usage, "\n";
@@ -38,7 +38,7 @@ my $profiles = {
                 Search::Xapian
                 Socket6
                 highlight.pm
-                xapian-compact
+                xapian-tools
                 ) ],
 
         # optional developer stuff
@@ -119,9 +119,9 @@ my $non_auto = {
                 rpm => [],
         },
 
-        # we call xapian-compact(1) in public-inbox-compact(1)
-        'xapian-compact' => {
-                deb => 'xapian-tools',
+        # we call xapian-compact(1) in public-inbox-compact(1) and
+        # xapian-delve(1) in public-inbox-cindex(1)
+        'xapian-tools' => {
                 pkg => 'xapian-core',
                 rpm => 'xapian-core', # ???
         },