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 364A1158016 for ; Wed, 27 Dec 2023 13:32:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACC132BC038; Wed, 27 Dec 2023 13:32:04 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 843F72BC038 for ; Wed, 27 Dec 2023 13:32:04 +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 4CED4340BEF for ; Wed, 27 Dec 2023 13:32:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A10A41441 for ; Wed, 27 Dec 2023 13:32:01 +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: <1703683861.84f86f16e6a7026c5e55c9dc395015488d17a3db.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/meson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/meson/meson-1.3.1.ebuild X-VCS-Directories: dev-util/meson/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 84f86f16e6a7026c5e55c9dc395015488d17a3db X-VCS-Branch: master Date: Wed, 27 Dec 2023 13:32:01 +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: 691d5639-4c40-4b85-9242-c7bfb2ef66ac X-Archives-Hash: b5836ae5f9b238583f77669c9d423e3c commit: 84f86f16e6a7026c5e55c9dc395015488d17a3db Author: Eli Schwartz gmail com> AuthorDate: Wed Dec 27 06:12:37 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Dec 27 13:31:01 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f86f16 dev-util/meson: drop no longer needed test workaround Running python3 directly instead of EPYTHON was introduced in commit 2338a84f3c87c8c94b8b615279ef3efb011ca61c. I cannot reproduce this test failure anymore. I think this was probably fixed when I tweaked the tests way back when: https://github.com/mesonbuild/meson/commit/908a78dbc249b8f9db5d5404ccd08809ea1964ef Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-util/meson/meson-1.3.1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-util/meson/meson-1.3.1.ebuild b/dev-util/meson/meson-1.3.1.ebuild index 03ce81fbfb01..3e41566b7b9c 100644 --- a/dev-util/meson/meson-1.3.1.ebuild +++ b/dev-util/meson/meson-1.3.1.ebuild @@ -117,8 +117,7 @@ python_test() { # value in JAVA_HOME, and the tests should get skipped. export JAVA_HOME=$(java-config -O 2>/dev/null) - # Call python3 instead of EPYTHON to satisfy test_meson_uninstalled. - python3 run_tests.py + ${EPYTHON} -u run_tests.py ) || die "Testing failed with ${EPYTHON}" }