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 ECAAD1384B4 for ; Thu, 10 Dec 2015 08:18:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D83A821C071; Thu, 10 Dec 2015 08:18:02 +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 6786421C071 for ; Thu, 10 Dec 2015 08:18:02 +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 1F84733D3CE for ; Thu, 10 Dec 2015 08:18:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6EEFB5D for ; Thu, 10 Dec 2015 08:17:53 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1449735472.3e0c77ac812b88cb421ec994fb852b8d7d5581a4.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gst-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/gst-python/gst-python-1.2.1.ebuild dev-python/gst-python/gst-python-1.4.0.ebuild dev-python/gst-python/gst-python-1.6.0.ebuild dev-python/gst-python/gst-python-1.6.1.ebuild X-VCS-Directories: dev-python/gst-python/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3e0c77ac812b88cb421ec994fb852b8d7d5581a4 X-VCS-Branch: master Date: Thu, 10 Dec 2015 08:17:53 +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: 63d8c4b5-c310-4a0e-bb20-396f5f07b0dd X-Archives-Hash: fdec8d3c5da0b9f028c82d7908da20d8 commit: 3e0c77ac812b88cb421ec994fb852b8d7d5581a4 Author: Justin Lecher gentoo org> AuthorDate: Thu Dec 10 08:17:42 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 10 08:17:52 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e0c77ac dev-python/gst-python: Adopt to changes in general python handling Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=567902 Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/gst-python/gst-python-1.2.1.ebuild | 8 +++++++- dev-python/gst-python/gst-python-1.4.0.ebuild | 8 +++++++- dev-python/gst-python/gst-python-1.6.0.ebuild | 8 +++++++- dev-python/gst-python/gst-python-1.6.1.ebuild | 8 +++++++- 4 files changed, 28 insertions(+), 4 deletions(-) diff --git a/dev-python/gst-python/gst-python-1.2.1.ebuild b/dev-python/gst-python/gst-python-1.2.1.ebuild index b2da6fd..eeb014c 100644 --- a/dev-python/gst-python/gst-python-1.2.1.ebuild +++ b/dev-python/gst-python/gst-python-1.2.1.ebuild @@ -38,8 +38,14 @@ src_prepare() { python_foreach_impl prepare_gst } +myeconf() { + local flag + flag="$(${PYTHON} -c 'import sysconfig; print(sysconfig.get_config_var("ABIFLAGS") or "")')" + PYTHON="${EPYTHON}${flag}" econf +} + src_configure() { - ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir econf + ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir myeconf } src_compile() { diff --git a/dev-python/gst-python/gst-python-1.4.0.ebuild b/dev-python/gst-python/gst-python-1.4.0.ebuild index 03861fd..80b1de3 100644 --- a/dev-python/gst-python/gst-python-1.4.0.ebuild +++ b/dev-python/gst-python/gst-python-1.4.0.ebuild @@ -34,8 +34,14 @@ src_prepare() { python_foreach_impl prepare_gst } +myeconf() { + local flag + flag="$(${PYTHON} -c 'import sysconfig; print(sysconfig.get_config_var("ABIFLAGS") or "")')" + PYTHON="${EPYTHON}${flag}" econf +} + src_configure() { - ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir econf + ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir myeconf } src_compile() { diff --git a/dev-python/gst-python/gst-python-1.6.0.ebuild b/dev-python/gst-python/gst-python-1.6.0.ebuild index 53128bc..81d086d 100644 --- a/dev-python/gst-python/gst-python-1.6.0.ebuild +++ b/dev-python/gst-python/gst-python-1.6.0.ebuild @@ -34,8 +34,14 @@ src_prepare() { python_foreach_impl prepare_gst } +myeconf() { + local flag + flag="$(${PYTHON} -c 'import sysconfig; print(sysconfig.get_config_var("ABIFLAGS") or "")')" + PYTHON="${EPYTHON}${flag}" econf +} + src_configure() { - ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir econf + ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir myeconf } src_compile() { diff --git a/dev-python/gst-python/gst-python-1.6.1.ebuild b/dev-python/gst-python/gst-python-1.6.1.ebuild index d465961..95d223e 100644 --- a/dev-python/gst-python/gst-python-1.6.1.ebuild +++ b/dev-python/gst-python/gst-python-1.6.1.ebuild @@ -35,8 +35,14 @@ src_prepare() { python_foreach_impl prepare_gst } +myeconf() { + local flag + flag="$(${PYTHON} -c 'import sysconfig; print(sysconfig.get_config_var("ABIFLAGS") or "")')" + PYTHON="${EPYTHON}${flag}" econf +} + src_configure() { - ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir econf + ECONF_SOURCE="${S}" python_foreach_impl run_in_build_dir myeconf } src_compile() {