]> Sergey Matveev's repositories - public-inbox.git/blobdiff - ci/deps.perl
ci: require IO::KQueue on FreeBSD, for now
[public-inbox.git] / ci / deps.perl
index 62870c1f99647992b2bbbf52e572c98b7feb58fe..ad2c11d28f6bc1a4e48799d4d6d8447ec3ad6d67 100755 (executable)
@@ -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);
+       @precious = qw(perl curl Socket6 IO::Compress::Gzip IO::KQueue);
 } elsif ($pkg_fmt eq 'rpm') {
        @precious = qw(perl curl);
 }
@@ -149,9 +149,6 @@ 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