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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD6B51581F0 for ; Sat, 14 Dec 2024 16:01:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B72CE09BA; Sat, 14 Dec 2024 16:01:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D5D48E09B7 for ; Sat, 14 Dec 2024 16:01:29 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F628335C0F for ; Sat, 14 Dec 2024 16:01:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92E00159E for ; Sat, 14 Dec 2024 16:01:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1734192061.737aea9fbaf7f8215ea2935359c4a10db6b7469a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/rime-data/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/rime-data/rime-data-1.0.20241201-r1.ebuild app-i18n/rime-data/rime-data-1.0.20241201.ebuild X-VCS-Directories: app-i18n/rime-data/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 737aea9fbaf7f8215ea2935359c4a10db6b7469a X-VCS-Branch: master Date: Sat, 14 Dec 2024 16:01:27 +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: 206d4a8b-8d47-4e9e-af7c-9776bdf44565 X-Archives-Hash: e21dac57e8b8cce6a67b879486fe06f1 commit: 737aea9fbaf7f8215ea2935359c4a10db6b7469a Author: Yongxiang Liang gmail com> AuthorDate: Sat Dec 14 15:52:13 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Dec 14 16:01:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=737aea9f app-i18n/rime-data: fix rime-cantonese missing author files. We should need to check if the documentation file exists before installing it Closes: https://bugs.gentoo.org/946467 Signed-off-by: Yongxiang Liang gmail.com> Closes: https://github.com/gentoo/gentoo/pull/39712 Signed-off-by: Sam James gentoo.org> ...rime-data-1.0.20241201.ebuild => rime-data-1.0.20241201-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-i18n/rime-data/rime-data-1.0.20241201.ebuild b/app-i18n/rime-data/rime-data-1.0.20241201-r1.ebuild similarity index 95% rename from app-i18n/rime-data/rime-data-1.0.20241201.ebuild rename to app-i18n/rime-data/rime-data-1.0.20241201-r1.ebuild index e8f8259c376b..ee504a28cee6 100644 --- a/app-i18n/rime-data/rime-data-1.0.20241201.ebuild +++ b/app-i18n/rime-data/rime-data-1.0.20241201-r1.ebuild @@ -72,7 +72,9 @@ src_install() { for pkg in "${!LIST[@]}"; do doins "${pkg}-${LIST[$pkg]}"/*[!AUTHORS\|LICENSE\|README.md\|check.py] for f in AUTHORS LICENSE README.md; do - newdoc "${pkg}-${LIST[$pkg]}/${f}" "${pkg}_${f}" + if [ -f "${pkg}-${LIST[$pkg]}/${f}" ]; then + newdoc "${pkg}-${LIST[$pkg]}/${f}" "${pkg}_${f}" + fi done done }