X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=ci%2Fdeps.perl;h=ae6083b99cd27a2b3bc6b2b5f78d9962082e4703;hb=53a35a1c53a5a01e5cadc2a70a437d390f7edd4b;hp=ad2c11d28f6bc1a4e48799d4d6d8447ec3ad6d67;hpb=2b18e497086cb92d86d41e842c75feb1a28e9053;p=public-inbox.git diff --git a/ci/deps.perl b/ci/deps.perl index ad2c11d2..ae6083b9 100755 --- a/ci/deps.perl +++ b/ci/deps.perl @@ -50,7 +50,6 @@ my $profiles = { # optional developer stuff devtest => [ qw( - IPC::Run XML::Feed curl w3m @@ -60,7 +59,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 +148,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