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 2954B1F488 for ; Wed, 8 May 2019 19:18:56 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/4] build: do not manify DS and Syscall pods Date: Wed, 8 May 2019 19:18:53 +0000 Message-Id: <20190508191856.20485-2-e@80x24.org> In-Reply-To: <20190508191856.20485-1-e@80x24.org> References: <20190505005219.31772-1-e@80x24.org> <20190508191856.20485-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We don't need to increase our install footprint with documentation from our internals (which will surely change). --- Makefile.PL | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile.PL b/Makefile.PL index e00c015..3bb0072 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -8,6 +8,15 @@ chomp(my @manifest = (<$m>)); my @EXE_FILES = grep(m!^script/!, @manifest); my $PM_FILES = join(' ', grep(m!^lib/.*\.pm$!, @manifest)); +# Don't waste user's disk space by installing some pods from +# imported code or internal use only +my %man3 = map {; # semi-colon tells Perl this is a BLOCK (and not EXPR) + my $base = $_; + my $mod = $base; + $mod =~ s/\.\w+\z//; + "lib/PublicInbox/$_" => "blib/man3/PublicInbox::$mod.3" +} qw(Git.pm Import.pm WWW.pod); + WriteMakefile( NAME => 'PublicInbox', VERSION => '1.1.0-pre1', @@ -31,6 +40,7 @@ WriteMakefile( # We have more test dependencies, but do not force # users to install them. See INSTALL }, + MAN3PODS => \%man3, ); sub MY::postamble { -- EW