]> Sergey Matveev's repositories - public-inbox.git/blobdiff - ci/deps.perl
watchmaildir: ensure I:/W:/E: prefixes in warnings
[public-inbox.git] / ci / deps.perl
index 08722e1c41902275704a85b97f99be258192831d..77d95fc8e749071237ea03dec9ff438950393f00 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2020 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
@@ -14,19 +14,15 @@ 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
                Devel::Peek
                Digest::SHA
-               Email::Simple
-               Email::MIME
-               Email::MIME::ContentType
                Encode
                ExtUtils::MakeMaker
-               Filesys::Notify::Simple
+               IO::Compress::Gzip
                URI::Escape
                ), @test_essential ],
 
@@ -36,12 +32,10 @@ my $profiles = {
                BSD::Resource
                DBD::SQLite
                DBI
-               IO::Compress::Gzip
                Inline::C
                Net::Server
                Plack
                Plack::Test
-               Plack::Middleware::Deflater
                Plack::Middleware::ReverseProxy
                Search::Xapian
                Socket6
@@ -51,7 +45,7 @@ my $profiles = {
 
        # optional developer stuff
        devtest => [ qw(
-               XML::Feed
+               XML::TreePP
                curl
                w3m
                ) ],