From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 109ED1F4A3 for ; Thu, 9 May 2019 07:51:04 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/9] INSTALL: depend on Encode instead of Encode::MIME::Header Date: Thu, 9 May 2019 07:50:56 +0000 Message-Id: <20190509075103.27132-3-e@80x24.org> In-Reply-To: <20190509075103.27132-1-e@80x24.org> References: <20190509075103.27132-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Email::MIME uses Encode::MIME::Header and depends on that appropriately; however we depend on other parts of the Encode distribution, but that's bundled with Perl by upstream, anyways; and should place no additional burden on users. --- INSTALL | 9 +++++---- Makefile.PL | 5 +++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/INSTALL b/INSTALL index 99836c1..4574311 100644 --- a/INSTALL +++ b/INSTALL @@ -45,10 +45,6 @@ Beyond that, there is a long list of Perl modules required, starting with: pkg: p5-Email-MIME rpm: perl-Email-MIME -* Encode::MIME::Header deb: libencode-perl - pkg: perl5 - rpm: perl-Encode - * Plack deb: libplack-perl pkg: p5-Plack rpm: perl-Plack, perl-Plack-Test, @@ -114,6 +110,11 @@ above, so there is no need to explicitly install them: rpm: perl-Email-Simple (pulled in by Email::MIME) +* Encode deb: libperl5.$MINOR (or libencode-perl) + pkg: perl5 + rpm: perl-Encode + (likely installed with Perl) + - DBI deb: libdbi-perl pkg: p5-DBI rpm: perl-DBI diff --git a/Makefile.PL b/Makefile.PL index b857667..eda7319 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,8 +34,9 @@ WriteMakefile( 'Email::MIME::ContentType' => 0, 'Email::Simple' => 0, - # "libencode-perl" on Debian, `perl5' on FreeBSD - 'Encode::MIME::Header' => 0, + # libperl$PERL_VERSION or libencode-perl on Debian, + # `perl5' on FreeBSD + 'Encode' => 0, # libperl$PERL_VERSION on Debian, `perl5' on FreeBSD, # but Fedora seems to need this separately -- EW