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,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 57C431F885 for ; Fri, 24 Jan 2020 22:09:34 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/5] website: omit technical/ and other subdirs Date: Fri, 24 Jan 2020 22:09:32 +0000 Message-Id: <20200124220933.11970-5-e@yhbt.net> In-Reply-To: <20200124220933.11970-1-e@yhbt.net> References: <20200124220933.11970-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We don't need to clutter the website with unnecessary technical information. Anybody who reads the technical/ directory should be looking at our source code, anyways; and we also have cgit and gitweb mirrors. --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index 46ef99f9..d626aef4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,7 +11,7 @@ my $t = {}; my @RELEASES = qw(v1.2.0 v1.1.0-pre1 v1.0.0); # do not sort $v->{news_deps} = [ map { "Documentation/RelNotes/$_.eml" } @RELEASES ]; $v->{txt} = [ qw(INSTALL README COPYING TODO HACKING) ]; -my @dtxt = grep(m!\ADocumentation/.*\.txt\z!, @manifest); +my @dtxt = grep(m!\ADocumentation/[^/]+\.txt\z!, @manifest); push @dtxt, 'Documentation/standards.txt'; push @dtxt, @{$v->{txt}}; for my $txt (@dtxt) {