about summary refs log tree commit homepage
path: root/ci/deps.perl
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-24 02:52:57 +0000
committerEric Wong <e@80x24.org>2019-06-24 05:26:39 +0000
commit19382e401c5fe158200ba43c204875e368158374 (patch)
tree0d70e44ce993420af08301081317d026b15d656b /ci/deps.perl
parent4f868db3675eeee5994edc4fe79a9a2583623747 (diff)
downloadpublic-inbox-19382e401c5fe158200ba43c204875e368158374.tar.gz
Now that we support IO::Poll once again, we can remove
the IO::KQueue requirement.
Diffstat (limited to 'ci/deps.perl')
-rwxr-xr-xci/deps.perl5
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/deps.perl b/ci/deps.perl
index ad2c11d2..62870c1f 100755
--- a/ci/deps.perl
+++ b/ci/deps.perl
@@ -60,7 +60,7 @@ my $profiles = {
 # account for granularity differences between package systems and OSes
 my @precious;
 if ($^O eq 'freebsd') {
-        @precious = qw(perl curl Socket6 IO::Compress::Gzip IO::KQueue);
+        @precious = qw(perl curl Socket6 IO::Compress::Gzip);
 } elsif ($pkg_fmt eq 'rpm') {
         @precious = qw(perl curl);
 }
@@ -149,6 +149,9 @@ my (@pkg_install, @pkg_remove, %all);
 for my $ary (values %$profiles) {
         $all{$_} = \@pkg_remove for @$ary;
 }
+if ($^O eq 'freebsd') {
+        $all{'IO::KQueue'} = \@pkg_remove;
+}
 $profiles->{all} = [ keys %all ]; # pseudo-profile for all packages
 
 # parse the profile list from the command-line