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 D4F21158064 for ; Tue, 30 Apr 2024 10:05:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEBA9E2A30; Tue, 30 Apr 2024 10:05:44 +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 8ADB0E2A30 for ; Tue, 30 Apr 2024 10:05:44 +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 68F71335D64 for ; Tue, 30 Apr 2024 10:05:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78F7316C0 for ; Tue, 30 Apr 2024 10:05:41 +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: <1714471507.facf304132678fa20281007a18adfaa1847a6120.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: facf304132678fa20281007a18adfaa1847a6120 X-VCS-Branch: main Date: Tue, 30 Apr 2024 10:05:41 +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: 2861fc39-033e-476c-a400-6edaa538fd9b X-Archives-Hash: a11bf5458579ddcee3c668a9118584a3 commit: facf304132678fa20281007a18adfaa1847a6120 Author: Florian Schmaus gentoo org> AuthorDate: Tue Apr 30 10:04:59 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Apr 30 10:05:07 2024 +0000 URL: https://gitweb.gentoo.org/proj/tex-overlay.git/commit/?id=facf3041 avoid loop in man page installation Signed-off-by: Florian Schmaus gentoo.org> eclass/texlive-module.eclass | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index 11d869a..8035322 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -362,11 +362,8 @@ texlive-module_src_install() { if ver_test -ge 2023 && [[ ${CATEGORY} == dev-texlive ]]; then eshopts_push -s nullglob - local man_page - for man_page in texmf-dist/doc/man/man[1-8]/*.[1-8]; do - doman "${man_page}" - rm "${man_page}" || die - done + doman texmf-dist/doc/man/man[0-9n]/*.[0-9n] + rm texmf-dist/doc/man/man[0-9n]/*.[0-9n] || die eshopts_pop fi else