]> Sergey Matveev's repositories - public-inbox.git/blobdiff - ci/deps.perl
No ext_urls
[public-inbox.git] / ci / deps.perl
index 93cc5d25623ad19cd169fb9ed5a221bf5f571a56..ae85986d622f87bd30563fc168f41fd128f3543d 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl -w
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2021 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,18 +14,14 @@ my @test_essential = qw(Test::Simple); # we actually use Test::More
 # package profiles
 my $profiles = {
        # the smallest possible profile for testing
-       # 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
-               URI::Escape
+               IO::Compress::Gzip
+               URI
                ), @test_essential ],
 
        # everything optional for normal use
@@ -34,13 +30,10 @@ 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
                Socket6
@@ -50,9 +43,10 @@ my $profiles = {
 
        # optional developer stuff
        devtest => [ qw(
-               XML::Feed
+               XML::TreePP
                curl
                w3m
+               Plack::Test::ExternalServer
                ) ],
 };
 
@@ -84,10 +78,6 @@ my $non_auto = {
                pkg => 'p5-TimeDate',
                rpm => 'perl-TimeDate',
        },
-       'Devel::Peek' => {
-               deb => 'perl', # libperl5.XX, but the XX varies
-               pkg => 'perl5',
-       },
        'Digest::SHA' => {
                deb => 'perl', # libperl5.XX, but the XX varies
                pkg => 'perl5',
@@ -113,7 +103,7 @@ my $non_auto = {
                pkg => 'p5-Plack',
                rpm => 'perl-Plack-Test',
        },
-       'URI::Escape' => {
+       'URI' => {
                deb => 'liburi-perl',
                pkg => 'p5-URI',
                rpm => 'perl-URI',