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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B323B138350 for ; Wed, 4 Mar 2020 14:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36F95E0B3B; Wed, 4 Mar 2020 14:32:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED4C4E0B30 for ; Wed, 4 Mar 2020 14:32:58 +0000 (UTC) Received: from localhost.localdomain (c142-245.icpnet.pl [85.221.142.245]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: mgorny) by smtp.gentoo.org (Postfix) with ESMTPSA id 5E5BE34F64F; Wed, 4 Mar 2020 14:32:56 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: python@gentoo.org, =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH 5/9] python-any-r1.eclass: Report impl used by python_setup Date: Wed, 4 Mar 2020 15:32:19 +0100 Message-Id: <20200304143223.55830-6-mgorny@gentoo.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200304143223.55830-1-mgorny@gentoo.org> References: <20200304143223.55830-1-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: cb6bd829-b9e8-4311-a063-4e7f30982c7a X-Archives-Hash: f66f2c1099af9fbdff8b09cf3c851399 Signed-off-by: Michał Górny --- eclass/python-any-r1.eclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index 5d74c8acd3e4..66c6965c04ea 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -301,6 +301,7 @@ python_setup() { python_export "${impls[0]}" EPYTHON PYTHON python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi @@ -309,6 +310,7 @@ python_setup() { if _python_EPYTHON_supported "${EPYTHON}"; then python_export EPYTHON PYTHON python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi fi @@ -324,6 +326,7 @@ python_setup() { elif _python_EPYTHON_supported "${i}"; then python_export "${i}" EPYTHON PYTHON python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi done @@ -334,6 +337,7 @@ python_setup() { python_export "${_PYTHON_SUPPORTED_IMPLS[i]}" EPYTHON PYTHON if _python_EPYTHON_supported "${EPYTHON}"; then python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi done -- 2.25.1