From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0193F138350 for ; Sat, 25 Apr 2020 13:22:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42FA0E0922; Sat, 25 Apr 2020 13:22:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E8D5E0922 for ; Sat, 25 Apr 2020 13:22:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0030934F07D for ; Sat, 25 Apr 2020 13:22:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B14101C5 for ; Sat, 25 Apr 2020 13:22:25 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1587820852.12117d73a2b8823a6cac73f36816280c914a73f7.nicolasbock@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/neomutt/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/neomutt/neomutt-20200417.ebuild X-VCS-Directories: mail-client/neomutt/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 12117d73a2b8823a6cac73f36816280c914a73f7 X-VCS-Branch: master Date: Sat, 25 Apr 2020 13:22:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c6cb8aeb-6f1b-4d24-9609-d6c028b67ada X-Archives-Hash: cfc01f5c174769cbaac2ebe1a0f57a07 commit: 12117d73a2b8823a6cac73f36816280c914a73f7 Author: Christian Hagau ibr cs tu-bs de> AuthorDate: Fri Apr 24 00:00:00 2020 +0000 Commit: Nicolas Bock gentoo org> CommitDate: Sat Apr 25 13:20:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12117d73 mail-client/neomutt: Fix documentation directory name NeoMutt has changed the name of the documentary directory from `doc` to `docs`, see release notes: https://github.com/neomutt/neomutt/releases/tag/20200417 Bug: https://bugs.gentoo.org/718650 Signed-off-by: Christian Hagau hagau.se> Package-Manager: Portage-2.3.99-r2 Signed-off-by: Nicolas Bock gentoo.org> mail-client/neomutt/neomutt-20200417.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mail-client/neomutt/neomutt-20200417.ebuild b/mail-client/neomutt/neomutt-20200417.ebuild index d195e95a243..169bb2a3aa6 100644 --- a/mail-client/neomutt/neomutt-20200417.ebuild +++ b/mail-client/neomutt/neomutt-20200417.ebuild @@ -105,14 +105,14 @@ src_install() { -e '/^\(CC_FOR_BUILD\|CFLAGS_FOR_BUILD\)\s*=/p' \ -e '/^\(EXTRA_CFLAGS_FOR_BUILD\|LDFLAGS_FOR_BUILD\)\s*=/p' \ -e '/^\(EXEEXT\|SRCDIR\)\s*=/p' \ - Makefile > doc/Makefile.fakedoc || die + Makefile > docs/Makefile.fakedoc || die sed -n \ -e '/^MAKEDOC_CPP\s*=/,/^\s*$/p' \ - -e '/^doc\/\(makedoc$(EXEEXT)\|neomutt\.1\|neomuttrc\.5\)\s*:/,/^\s*$/p' \ - doc/Makefile.autosetup >> doc/Makefile.fakedoc || die - emake -f doc/Makefile.fakedoc doc/neomutt.1 - emake -f doc/Makefile.fakedoc doc/neomuttrc.5 - doman doc/neomutt.1 doc/neomuttrc.5 + -e '/^docs\/\(makedoc$(EXEEXT)\|neomutt\.1\|neomuttrc\.5\)\s*:/,/^\s*$/p' \ + docs/Makefile.autosetup >> docs/Makefile.fakedoc || die + emake -f docs/Makefile.fakedoc docs/neomutt.1 + emake -f docs/Makefile.fakedoc docs/neomuttrc.5 + doman docs/neomutt.1 docs/neomuttrc.5 fi dodoc LICENSE* ChangeLog* README*