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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4D41A158064 for ; Tue, 30 Apr 2024 17:45:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BD76E29E9; Tue, 30 Apr 2024 17:45:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59A18E29E9 for ; Tue, 30 Apr 2024 17:45:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 559A733BEA5 for ; Tue, 30 Apr 2024 17:45:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A87D61764 for ; Tue, 30 Apr 2024 17:45:47 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1714499141.40d8b1156d94b469d2ffc00d2f5c6f0ce628bec3.flow@gentoo> Subject: [gentoo-commits] proj/tex-overlay:main commit in: eclass/ X-VCS-Repository: proj/tex-overlay X-VCS-Files: eclass/texlive-module.eclass X-VCS-Directories: eclass/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 40d8b1156d94b469d2ffc00d2f5c6f0ce628bec3 X-VCS-Branch: main Date: Tue, 30 Apr 2024 17:45:47 +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: a7cc6402-09e5-4de5-81e1-1ad9890b59c3 X-Archives-Hash: 75edd4ee2e3c683f3ea21d80770d7b97 commit: 40d8b1156d94b469d2ffc00d2f5c6f0ce628bec3 Author: Florian Schmaus gentoo org> AuthorDate: Tue Apr 30 17:45:41 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Apr 30 17:45:41 2024 +0000 URL: https://gitweb.gentoo.org/proj/tex-overlay.git/commit/?id=40d8b115 texlive-module.eclass: use ebegin and eend Signed-off-by: Florian Schmaus gentoo.org> eclass/texlive-module.eclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index 1ed039d..b02b2b8 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -531,10 +531,12 @@ texlive-module_src_install() { grep_expressions+=(-e "/${f//./\\.}$") done + ebegin "Installing man pages" find texmf-dist/doc/man -type f -name '*.[0-9n]' -print | grep -v "${grep_expressions[@]}" | xargs -d '\n' --no-run-if-empty doman - assert "error installing man pages" + nonfatal assert -n + eend $? || die "error installing man pages" # Delete all man pages under texmf-dist/doc/man find texmf-dist/doc/man -type f -name '*.[0-9n]' -delete ||