Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cpputest/
Date: Thu, 15 Aug 2019 04:51:47
Message-Id: 1565844618.25800c921a039e2a825879c6a0cd992e777f6045.radhermit@gentoo
1 commit: 25800c921a039e2a825879c6a0cd992e777f6045
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 15 04:49:21 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 15 04:50:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25800c92
7
8 dev-util/cpputest: add missing conditional test RESTRICT
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 dev-util/cpputest/cpputest-3.8.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-util/cpputest/cpputest-3.8.ebuild b/dev-util/cpputest/cpputest-3.8.ebuild
16 index 4c3046bb40e..f76d8b2c919 100644
17 --- a/dev-util/cpputest/cpputest-3.8.ebuild
18 +++ b/dev-util/cpputest/cpputest-3.8.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2018 Gentoo Authors
21 +# Copyright 1999-2019 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 @@ -11,9 +11,8 @@ LICENSE="BSD"
26 SLOT="0"
27 KEYWORDS="amd64 ~arm x86"
28 IUSE="test"
29 +RESTRICT="!test? ( test )"
30
31 -DEPEND="
32 - test? ( >=dev-cpp/gtest-1.8.0 )
33 -"
34 +DEPEND="test? ( >=dev-cpp/gtest-1.8.0 )"
35
36 DOCS=( AUTHORS README.md README_CppUTest_for_C.txt )