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 5698A158010 for ; Tue, 7 Feb 2023 21:49:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F3CCE0824; Tue, 7 Feb 2023 21:49:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6AC98E07EF for ; Tue, 7 Feb 2023 21:49:31 +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 7A020335D49 for ; Tue, 7 Feb 2023 21:49:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 048EF8A0 for ; Tue, 7 Feb 2023 21:49:29 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1675806558.f7e0dba3ff7432b8dba244d9e085c1c24229ce76.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/fuzion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/fuzion/fuzion-0.080.ebuild X-VCS-Directories: dev-lang/fuzion/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: f7e0dba3ff7432b8dba244d9e085c1c24229ce76 X-VCS-Branch: master Date: Tue, 7 Feb 2023 21:49:29 +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: 8566c8a6-6c49-4a15-8223-428a747ce38b X-Archives-Hash: 3272f49240090e5d291534355a28e62c commit: f7e0dba3ff7432b8dba244d9e085c1c24229ce76 Author: Maciej Barć gentoo org> AuthorDate: Tue Feb 7 10:51:59 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue Feb 7 21:49:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e0dba3 dev-lang/fuzion: remove run_tests.results Closes: https://bugs.gentoo.org/893450 Signed-off-by: Maciej Barć gentoo.org> dev-lang/fuzion/fuzion-0.080.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-lang/fuzion/fuzion-0.080.ebuild b/dev-lang/fuzion/fuzion-0.080.ebuild index 85dd0ea40aab..fc6bd6f75d82 100644 --- a/dev-lang/fuzion/fuzion-0.080.ebuild +++ b/dev-lang/fuzion/fuzion-0.080.ebuild @@ -31,7 +31,14 @@ src_test() { } src_install() { - rm -r "${S}"/build/tests || die + # Remove unnecessary files from build directory. bug #893450 + local torm torm_path + for torm in tests run_tests.{failures,results} ; do + torm_path="${S}"/build/${torm} + if [[ -e "${torm_path}" ]] ; then + rm -r "${torm_path}" || die "failed to remove ${toremove_path}" + fi + done insinto /usr/share/${PN} doins -r build/.