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 C00EB139694 for ; Mon, 20 Feb 2017 17:43:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 815F721C075; Mon, 20 Feb 2017 17:43:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F7C621C075 for ; Mon, 20 Feb 2017 17:43:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45934340C97 for ; Mon, 20 Feb 2017 17:43:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B0854EA1 for ; Mon, 20 Feb 2017 17:43:10 +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: <1487612583.5458c6d9da6bbb3b4009a4ff9d9ab17737d07849.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/gr-air-modes/gr-air-modes-9999.ebuild X-VCS-Directories: net-wireless/gr-air-modes/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5458c6d9da6bbb3b4009a4ff9d9ab17737d07849 X-VCS-Branch: master Date: Mon, 20 Feb 2017 17:43:10 +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: ca6207e5-67b3-4eb1-801d-89c363ad747b X-Archives-Hash: 597e6af9327f899ae4489d8db65dc73d commit: 5458c6d9da6bbb3b4009a4ff9d9ab17737d07849 Author: Michał Górny gentoo org> AuthorDate: Mon Feb 20 16:43:24 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Feb 20 17:43:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5458c6d9 net-wireless/gr-air-modes: python-single-r1 net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild index 130d60dfad..6b9482d54e 100644 --- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild +++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 -inherit python cmake-utils git-2 +inherit python-single-r1 cmake-utils git-2 DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio" HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes" @@ -18,18 +18,16 @@ SLOT="0" IUSE="rtlsdr fgfs +gui uhd" DEPEND=">=net-wireless/gnuradio-3.7.0:= net-wireless/gr-osmosdr - dev-python/pyzmq + dev-python/pyzmq[${PYTHON_USEDEP}] fgfs? ( sci-libs/scipy games-simulation/flightgear ) rtlsdr? ( net-wireless/rtl-sdr ) uhd? ( >=net-wireless/uhd-3.4.0 ) - gui? ( dev-python/pyqwt )" + gui? ( dev-python/pyqwt[${PYTHON_USEDEP}] ) + ${PYTHON_DEPS}" RDEPEND="${DEPEND}" -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} +REQUIRED_USE="${PYTHON_REQUIRED_USE}" src_compile() { cmake-utils_src_compile -j1 @@ -37,5 +35,5 @@ src_compile() { src_install() { cmake-utils_src_install - python_convert_shebangs 2 "${ED}"usr/bin/* + python_fix_shebang "${ED}"usr/bin }