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 692E41384B4 for ; Tue, 10 Nov 2015 17:53:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4983E21C042; Tue, 10 Nov 2015 17:53:39 +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 CD42B21C041 for ; Tue, 10 Nov 2015 17:53:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1DB84340685 for ; Tue, 10 Nov 2015 17:53:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0091241B for ; Tue, 10 Nov 2015 17:53:30 +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: <1447177249.9ca6c68fdb188932ef530f6fadf92195196a37b6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:python-soabi-cleanup 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: 9ca6c68fdb188932ef530f6fadf92195196a37b6 X-VCS-Branch: python-soabi-cleanup Date: Tue, 10 Nov 2015 17:53:30 +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: 5a8eb987-5701-46dd-9e89-4ceb359f1136 X-Archives-Hash: 6e736eb442b6c6e2f72b15908676b165 commit: 9ca6c68fdb188932ef530f6fadf92195196a37b6 Author: Michał Górny gentoo org> AuthorDate: Sun Nov 8 08:44:45 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 10 17:40:49 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca6c68f 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