Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gr-air-modes/
Date: Mon, 07 Jan 2019 23:01:39
Message-Id: 1546901993.e72292d0cf0ec3ab9cf54d563901a18dff2f1d35.asturm@gentoo
1 commit: e72292d0cf0ec3ab9cf54d563901a18dff2f1d35
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 1 00:02:59 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 7 22:59:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e72292d0
7
8 net-wireless/gr-air-modes: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-wireless/gr-air-modes/gr-air-modes-9999.ebuild | 40 +++++++++++++---------
14 1 file changed, 24 insertions(+), 16 deletions(-)
15
16 diff --git a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
17 index fe5fbccf440..2f1f6b27be3 100644
18 --- a/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
19 +++ b/net-wireless/gr-air-modes/gr-air-modes-9999.ebuild
20 @@ -1,33 +1,41 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 +EAPI=7
27 +
28 PYTHON_COMPAT=( python2_7 )
29 -inherit python-single-r1 cmake-utils git-r3
30 +
31 +if [[ ${PV} == 9999* ]]; then
32 + inherit git-r3
33 + EGIT_REPO_URI="https://github.com/bistromath/gr-air-modes.git"
34 + EGIT_BRANCH="master"
35 +else
36 + KEYWORDS=""
37 +fi
38 +inherit cmake-utils python-single-r1
39
40 DESCRIPTION="This module implements a complete Mode S and ADS-B receiver for Gnuradio"
41 HOMEPAGE="https://www.cgran.org/wiki/gr-air-modes"
42
43 -EGIT_REPO_URI="https://github.com/bistromath/gr-air-modes.git"
44 -EGIT_BRANCH="master"
45 -
46 -KEYWORDS=""
47 -
48 LICENSE="GPL-3"
49 SLOT="0"
50 -IUSE="rtlsdr fgfs uhd"
51 -DEPEND=">=net-wireless/gnuradio-3.7.0:=
52 - net-wireless/gr-osmosdr
53 +IUSE="fgfs rtlsdr uhd"
54 +
55 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
56 +
57 +DEPEND="${PYTHON_DEPS}
58 dev-python/pyzmq[${PYTHON_USEDEP}]
59 - fgfs? ( sci-libs/scipy
60 - games-simulation/flightgear )
61 + >=net-wireless/gnuradio-3.7.0:=
62 + net-wireless/gr-osmosdr
63 + fgfs? (
64 + games-simulation/flightgear
65 + sci-libs/scipy
66 + )
67 rtlsdr? ( net-wireless/rtl-sdr )
68 uhd? ( >=net-wireless/uhd-3.4.0 )
69 - ${PYTHON_DEPS}"
70 +"
71 RDEPEND="${DEPEND}"
72
73 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
74 -
75 src_compile() {
76 cmake-utils_src_compile -j1
77 }