X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=ci%2Fdeps.perl;h=b960089f415366a8f6acaac95451701047f7ee2f;hb=a3cf35c675217ea60a461dd9be7cc5b55c2d5280;hp=330ba2f32fa43140bcde89733093afbb8bc1acfb;hpb=56643bfddba2f7bca60955e5c48435fe58cc8e1c;p=public-inbox.git diff --git a/ci/deps.perl b/ci/deps.perl index 330ba2f3..b960089f 100755 --- a/ci/deps.perl +++ b/ci/deps.perl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2019 all contributors +# Copyright (C) 2019-2020 all contributors # License: AGPL-3.0+ # Helper script for installing/uninstalling packages for CI use # Intended for use on non-production chroots or VMs since it @@ -9,13 +9,12 @@ my $usage = "$0 PKG_FMT PROFILE [PROFILE_MOD]"; my $pkg_fmt = shift; @ARGV or die $usage, "\n"; -my @test_essential = qw(Test::Simple Plack::Test); +my @test_essential = qw(Test::Simple); # we actually use Test::More # package profiles my $profiles = { # the smallest possible profile for testing - # TODO: trim this, Plack pulls in Filesys::Notify::Simple, - # and we don't need that for mda-only installs + # TODO: trim URI::Escape from this, maybe essential => [ qw( git perl @@ -26,8 +25,6 @@ my $profiles = { Email::MIME::ContentType Encode ExtUtils::MakeMaker - Filesys::Notify::Simple - Plack URI::Escape ), @test_essential ], @@ -37,9 +34,12 @@ my $profiles = { BSD::Resource DBD::SQLite DBI + Filesys::Notify::Simple IO::Compress::Gzip Inline::C Net::Server + Plack + Plack::Test Plack::Middleware::Deflater Plack::Middleware::ReverseProxy Search::Xapian @@ -50,7 +50,7 @@ my $profiles = { # optional developer stuff devtest => [ qw( - XML::Feed + XML::TreePP curl w3m ) ],