Gentoo Archives: gentoo-commits

From: Andrey Utkin <andrey_utkin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/profanity/
Date: Mon, 14 Sep 2020 07:06:41
Message-Id: 1600067190.8c7a7b74d88e5ed0af4c3ad024a34765da8874d4.andrey_utkin@gentoo
1 commit: 8c7a7b74d88e5ed0af4c3ad024a34765da8874d4
2 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 14 07:02:43 2020 +0000
4 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 07:06:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c7a7b74
7
8 net-im/profanity: fix repoman warning
9
10 RDEPEND.suspect 1
11 net-im/profanity/profanity-0.9.5.ebuild: 'test?' USE conditional in RDEPEND
12
13 The problem was RDEPEND was set to the contents of DEPEND, which now had
14
15 test? ( dev-util/cmocka )
16
17 clause in it, which doesn't make sense for RDEPEND.
18
19 Package-Manager: Portage-3.0.4, Repoman-3.0.1
20 Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
21
22 net-im/profanity/profanity-0.9.5.ebuild | 8 +++++---
23 1 file changed, 5 insertions(+), 3 deletions(-)
24
25 diff --git a/net-im/profanity/profanity-0.9.5.ebuild b/net-im/profanity/profanity-0.9.5.ebuild
26 index 4de859fde22..691c34a8249 100644
27 --- a/net-im/profanity/profanity-0.9.5.ebuild
28 +++ b/net-im/profanity/profanity-0.9.5.ebuild
29 @@ -14,7 +14,7 @@ KEYWORDS="~amd64"
30 IUSE="libnotify omemo otr gpg test xscreensaver"
31 RESTRICT="!test? ( test )"
32
33 -DEPEND="
34 +COMMON_DEPEND="
35 dev-db/sqlite
36 dev-libs/expat
37 dev-libs/glib
38 @@ -30,12 +30,14 @@ DEPEND="
39 dev-libs/libgcrypt
40 )
41 otr? ( net-libs/libotr )
42 - test? ( dev-util/cmocka )
43 xscreensaver? (
44 x11-libs/libXScrnSaver
45 x11-libs/libX11 )
46 "
47 -RDEPEND="${DEPEND}"
48 +DEPEND="${COMMON_DEPEND}
49 + test? ( dev-util/cmocka )
50 +"
51 +RDEPEND="${COMMON_DEPEND}"
52
53 src_configure() {
54 econf \