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 3769B15801B for ; Sun, 20 Aug 2023 08:50:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CDF12BC020; Sun, 20 Aug 2023 08:50:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 05AB92BC020 for ; Sun, 20 Aug 2023 08:50:37 +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 3C1C9340D92 for ; Sun, 20 Aug 2023 08:50:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98DB71040 for ; Sun, 20 Aug 2023 08:50:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1692521430.508f0a9a33c235687a6a48e576d1864a61ef74e6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/scons/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/scons/scons-4.5.2.ebuild X-VCS-Directories: dev-util/scons/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 508f0a9a33c235687a6a48e576d1864a61ef74e6 X-VCS-Branch: master Date: Sun, 20 Aug 2023 08:50:35 +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: 8128f279-c2ba-4ea3-9821-4eb4cbb3f6cd X-Archives-Hash: f645af56879e1c4f5a492b0bca8a1313 commit: 508f0a9a33c235687a6a48e576d1864a61ef74e6 Author: Michał Górny gentoo org> AuthorDate: Sun Aug 20 08:49:12 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 20 08:50:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=508f0a9a dev-util/scons: Fix install after testing Signed-off-by: Michał Górny gentoo.org> dev-util/scons/scons-4.5.2.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-util/scons/scons-4.5.2.ebuild b/dev-util/scons/scons-4.5.2.ebuild index c623868baecd..a754d7e1be90 100644 --- a/dev-util/scons/scons-4.5.2.ebuild +++ b/dev-util/scons/scons-4.5.2.ebuild @@ -139,6 +139,9 @@ python_test() { # and returns "2" if there are any tests with "no result" # (i.e. in case if some tools are not installed or it's Windows specific tests) [[ ${?} == [02] ]] || die "Tests fail with ${EPYTHON}" + + # sigh + rm "${BUILD_DIR}/install/usr/bin/.sconsign" || die } python_install_all() {