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 08F5A15808E for ; Tue, 26 Apr 2022 01:54:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B75A6E07D1; Tue, 26 Apr 2022 01:54:41 +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 758EDE07D1 for ; Tue, 26 Apr 2022 01:54:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 1942A341792 for ; Tue, 26 Apr 2022 01:54:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9025E318 for ; Tue, 26 Apr 2022 01:54:38 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1650938076.2338a84f3c87c8c94b8b615279ef3efb011ca61c.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/meson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/meson/meson-0.61.4-r2.ebuild dev-util/meson/meson-9999.ebuild X-VCS-Directories: dev-util/meson/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2338a84f3c87c8c94b8b615279ef3efb011ca61c X-VCS-Branch: master Date: Tue, 26 Apr 2022 01:54:38 +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: 50de74a4-29da-4ab3-abdc-112f9818daab X-Archives-Hash: caeb33357b34289a21c4c4e2bfe681a4 commit: 2338a84f3c87c8c94b8b615279ef3efb011ca61c Author: Mike Gilbert gentoo org> AuthorDate: Tue Apr 26 01:45:23 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Apr 26 01:54:36 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2338a84f dev-util/meson: make test_meson_uninstalled work again test_meson_uninstalled started failing. Calling python3 instead of EPYTHON seems to be an easy fix. I'm not sure it warrants additional investigation. Signed-off-by: Mike Gilbert gentoo.org> dev-util/meson/meson-0.61.4-r2.ebuild | 3 ++- dev-util/meson/meson-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-util/meson/meson-0.61.4-r2.ebuild b/dev-util/meson/meson-0.61.4-r2.ebuild index 107a474f40dd..2accbc1e9754 100644 --- a/dev-util/meson/meson-0.61.4-r2.ebuild +++ b/dev-util/meson/meson-0.61.4-r2.ebuild @@ -93,7 +93,8 @@ python_test() { # value in JAVA_HOME, and the tests should get skipped. export JAVA_HOME=$(java-config -O 2>/dev/null) - ${EPYTHON} -u run_tests.py + # Call python3 instead of EPYTHON to satisfy test_meson_uninstalled. + python3 run_tests.py ) || die "Testing failed with ${EPYTHON}" } diff --git a/dev-util/meson/meson-9999.ebuild b/dev-util/meson/meson-9999.ebuild index 2d8599c3973b..7eb1c4f33e6c 100644 --- a/dev-util/meson/meson-9999.ebuild +++ b/dev-util/meson/meson-9999.ebuild @@ -89,7 +89,8 @@ python_test() { # value in JAVA_HOME, and the tests should get skipped. export JAVA_HOME=$(java-config -O 2>/dev/null) - ${EPYTHON} -u run_tests.py + # Call python3 instead of EPYTHON to satisfy test_meson_uninstalled. + python3 run_tests.py ) || die "Testing failed with ${EPYTHON}" }