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-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,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 5CE8B1F8C2 for ; Mon, 8 Feb 2021 09:14:11 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] INSTALL: depend on Text::ParseWords Date: Mon, 8 Feb 2021 09:14:10 +0000 Message-Id: <20210208091410.25729-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: It's been distributed with Perl since 1994, and we use it for both -imapd and lei. It's split out as a separate package in CentOS 7.x, so we'll depend on it to avoid surprising users of RPM-based distros. --- INSTALL | 1 + Makefile.PL | 1 + 2 files changed, 2 insertions(+) diff --git a/INSTALL b/INSTALL index 45829a80..4da0227e 100644 --- a/INSTALL +++ b/INSTALL @@ -176,6 +176,7 @@ RPM-based distros split them out into separate packages: * Encode rpm: perl-Encode * IO::Compress rpm: perl-IO-Compress * Storable rpm: perl-Storable +* Text::ParseWords rpm: perl-Text-Parsewords Copyright --------- diff --git a/Makefile.PL b/Makefile.PL index ca8e45cf..6fb0d560 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -155,6 +155,7 @@ WriteMakefile( 'IO::Compress::Gzip' => 0, 'IO::Uncompress::Gunzip' => 0, 'Storable' => 0, # rpm: perl-Storable + 'Text::ParseWords' => 0, # rpm: perl-Text-ParseWords # Plack is needed for public-inbox-httpd and PublicInbox::WWW # 'Plack' => 0,