From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 968081384B4 for ; Wed, 11 Nov 2015 10:27:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9398321C049; Wed, 11 Nov 2015 10:27:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9547E21C040 for ; Wed, 11 Nov 2015 10:27:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4C23340545 for ; Wed, 11 Nov 2015 10:27:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 658852416 for ; Wed, 11 Nov 2015 10:27:42 +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: <1447237311.e9dd39803ff5de5e28185f3adf841aa8d552b45d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libpeas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libpeas/libpeas-1.12.1-r1.ebuild dev-libs/libpeas/libpeas-1.14.0-r1.ebuild dev-libs/libpeas/libpeas-1.14.0.ebuild X-VCS-Directories: dev-libs/libpeas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e9dd39803ff5de5e28185f3adf841aa8d552b45d X-VCS-Branch: master Date: Wed, 11 Nov 2015 10:27:42 +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-Archives-Salt: cc45d8a0-7bc0-4754-98cd-ead05ec5a279 X-Archives-Hash: 005fe32381d710fe533783be447aa622 commit: e9dd39803ff5de5e28185f3adf841aa8d552b45d Author: Michał Górny gentoo org> AuthorDate: Sun Nov 8 08:44:45 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 11 10:21:51 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9dd3980 dev-libs/libpeas: Obtain correct python-config path Use new python_get_PYTHON_CONFIG API to obtain the correct path to python-config executable. This forward-fixes compatibility with ABIFLAGS-enabled Python 3.* versions, and improves readability. dev-libs/libpeas/libpeas-1.12.1-r1.ebuild | 2 +- dev-libs/libpeas/libpeas-1.14.0-r1.ebuild | 2 +- dev-libs/libpeas/libpeas-1.14.0.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/libpeas/libpeas-1.12.1-r1.ebuild b/dev-libs/libpeas/libpeas-1.12.1-r1.ebuild index 0ed2fe5..96946d1 100644 --- a/dev-libs/libpeas/libpeas-1.12.1-r1.ebuild +++ b/dev-libs/libpeas/libpeas-1.12.1-r1.ebuild @@ -55,7 +55,7 @@ src_configure() { "--enable-python${v}" # it is just 'PYTHON' for py3 in the build system "PYTHON${v#3}=${PYTHON}" - "PYTHON${v}_CONFIG=${PYTHON}-config" + "PYTHON${v}_CONFIG=$(python_get_PYTHON_CONFIG)" ) } use python && python_foreach_impl python_configure diff --git a/dev-libs/libpeas/libpeas-1.14.0-r1.ebuild b/dev-libs/libpeas/libpeas-1.14.0-r1.ebuild index 3a1d0ad..35d2980 100644 --- a/dev-libs/libpeas/libpeas-1.14.0-r1.ebuild +++ b/dev-libs/libpeas/libpeas-1.14.0-r1.ebuild @@ -77,7 +77,7 @@ src_configure() { "--enable-python${v}" # it is just 'PYTHON' for py3 in the build system "PYTHON${v#3}=${PYTHON}" - "PYTHON${v}_CONFIG=${PYTHON}-config" + "PYTHON${v}_CONFIG=$(python_get_PYTHON_CONFIG)" ) } use python && python_foreach_impl python_configure diff --git a/dev-libs/libpeas/libpeas-1.14.0.ebuild b/dev-libs/libpeas/libpeas-1.14.0.ebuild index fb6958d..57c26f7 100644 --- a/dev-libs/libpeas/libpeas-1.14.0.ebuild +++ b/dev-libs/libpeas/libpeas-1.14.0.ebuild @@ -65,7 +65,7 @@ src_configure() { "--enable-python${v}" # it is just 'PYTHON' for py3 in the build system "PYTHON${v#3}=${PYTHON}" - "PYTHON${v}_CONFIG=${PYTHON}-config" + "PYTHON${v}_CONFIG=$(python_get_PYTHON_CONFIG)" ) } use python && python_foreach_impl python_configure