Gentoo Archives: gentoo-commits

From: Rick Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/uhd/
Date: Thu, 24 Feb 2022 16:04:50
Message-Id: 1645718665.893b162fd8000db534292f8860fe73497e714ed1.zerochaos@gentoo
1 commit: 893b162fd8000db534292f8860fe73497e714ed1
2 Author: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 15 18:53:21 2022 +0000
4 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 24 16:04:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=893b162f
7
8 net-wireless/uhd: fix phase order
9
10 Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo.org>
11
12 net-wireless/uhd/uhd-4.1.0.4.ebuild | 13 +++++++------
13 1 file changed, 7 insertions(+), 6 deletions(-)
14
15 diff --git a/net-wireless/uhd/uhd-4.1.0.4.ebuild b/net-wireless/uhd/uhd-4.1.0.4.ebuild
16 index d522d556fc21..ef4be3637e18 100644
17 --- a/net-wireless/uhd/uhd-4.1.0.4.ebuild
18 +++ b/net-wireless/uhd/uhd-4.1.0.4.ebuild
19 @@ -93,6 +93,13 @@ src_configure() {
20 )
21 cmake_src_configure
22 }
23 +
24 +src_test() {
25 + #we can disable the python tests
26 + #ctest -E 'py*'
27 + PYTHON_PATH=python/ cmake_src_test
28 +}
29 +
30 src_install() {
31 cmake_src_install
32 python_optimize
33 @@ -138,9 +145,3 @@ src_install() {
34 insinto /usr/share/${PN}
35 doins -r "${WORKDIR}/images"
36 }
37 -
38 -src_test() {
39 - #we can disable the python tests
40 - #ctest -E 'py*'
41 - PYTHON_PATH=python/ cmake_src_test
42 -}