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-baz/
Date: Mon, 07 Jan 2019 23:01:39
Message-Id: 1546901994.2407d56debd92e6e8ce7db1c8c1280949b5b2f70.asturm@gentoo
1 commit: 2407d56debd92e6e8ce7db1c8c1280949b5b2f70
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 1 00:08:47 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 7 22:59:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2407d56d
7
8 net-wireless/gr-baz: 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-baz/gr-baz-9999.ebuild | 26 ++++++++++++++++----------
14 1 file changed, 16 insertions(+), 10 deletions(-)
15
16 diff --git a/net-wireless/gr-baz/gr-baz-9999.ebuild b/net-wireless/gr-baz/gr-baz-9999.ebuild
17 index 96b816847e0..e43cd434a9a 100644
18 --- a/net-wireless/gr-baz/gr-baz-9999.ebuild
19 +++ b/net-wireless/gr-baz/gr-baz-9999.ebuild
20 @@ -1,35 +1,41 @@
21 -# Copyright 1999-2015 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
30 -inherit cmake-utils git-r3 python-single-r1
31 +if [[ ${PV} == 9999* ]]; then
32 + inherit git-r3
33 + EGIT_REPO_URI="https://github.com/balint256/gr-baz.git"
34 +else
35 + KEYWORDS=""
36 +fi
37 +inherit cmake-utils python-single-r1
38
39 DESCRIPTION="Gnuradio baz"
40 -HOMEPAGE="http://wiki.spench.net/wiki/Gr-baz"
41 -EGIT_REPO_URI="https://github.com/balint256/gr-baz.git"
42 +HOMEPAGE="https://wiki.spench.net/wiki/Gr-baz"
43
44 LICENSE="GPL-3"
45 SLOT="0"
46 -KEYWORDS=""
47 IUSE="armadillo doc rtlsdr uhd"
48
49 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50
51 -RDEPEND="dev-libs/boost[threads,${PYTHON_USEDEP}]
52 +RDEPEND="${PYTHON_DEPS}
53 + dev-libs/boost:=[threads,${PYTHON_USEDEP}]
54 >=net-wireless/gnuradio-3.7.0:=[${PYTHON_USEDEP}]
55 armadillo? ( sci-libs/armadillo )
56 rtlsdr? ( virtual/libusb:1 )
57 uhd? ( net-wireless/uhd[${PYTHON_USEDEP}] )
58 - ${PYTHON_DEPS}"
59 +"
60 DEPEND="${RDEPEND}
61 + virtual/pkgconfig
62 doc? ( app-doc/doxygen )
63 - virtual/pkgconfig"
64 +"
65
66 src_configure() {
67 - mycmakeargs=(
68 + local mycmakeargs=(
69 -DPYTHON_EXECUTABLE="${PYTHON}"
70 )
71 cmake-utils_src_configure