Gentoo Archives: gentoo-commits

From: "Robin H. Johnson" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/redis/
Date: Thu, 18 Apr 2019 05:12:03
Message-Id: 1555564233.49f18ba9825592e2425b6e793a706c73d41599c7.robbat2@gentoo
1 commit: 49f18ba9825592e2425b6e793a706c73d41599c7
2 Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 18 04:16:28 2019 +0000
4 Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 18 05:10:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f18ba9
7
8 dev-db/redis: fix Tcl BDEPEND req
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Fixes: http://github.com/gentoo/gentoo/pull/11456#discussion_r268048208
12 Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
13
14 dev-db/redis/redis-4.0.14.ebuild | 9 +++++----
15 dev-db/redis/redis-5.0.4.ebuild | 9 +++++----
16 2 files changed, 10 insertions(+), 8 deletions(-)
17
18 diff --git a/dev-db/redis/redis-4.0.14.ebuild b/dev-db/redis/redis-4.0.14.ebuild
19 index 1f0ac4ef03d..5f2c18f61cb 100644
20 --- a/dev-db/redis/redis-4.0.14.ebuild
21 +++ b/dev-db/redis/redis-4.0.14.ebuild
22 @@ -23,13 +23,14 @@ RDEPEND="
23 tcmalloc? ( dev-util/google-perftools )
24 jemalloc? ( >=dev-libs/jemalloc-3.2 )"
25
26 -DEPEND="
27 - ${RDEPEND}
28 - test? ( dev-lang/tcl:0= )"
29 -
30 BDEPEND="
31 + ${RDEPEND}
32 virtual/pkgconfig"
33
34 +# Tcl is only needed in the CHOST test env
35 +DEPEND="${RDEPEND}
36 + test? ( dev-lang/tcl:0= )"
37 +
38 REQUIRED_USE="?? ( tcmalloc jemalloc )"
39
40 pkg_setup() {
41
42 diff --git a/dev-db/redis/redis-5.0.4.ebuild b/dev-db/redis/redis-5.0.4.ebuild
43 index ec8944b4940..519fc3837ca 100644
44 --- a/dev-db/redis/redis-5.0.4.ebuild
45 +++ b/dev-db/redis/redis-5.0.4.ebuild
46 @@ -23,13 +23,14 @@ RDEPEND="
47 tcmalloc? ( dev-util/google-perftools )
48 jemalloc? ( >=dev-libs/jemalloc-5.1:= )"
49
50 -DEPEND="
51 - ${RDEPEND}
52 - test? ( dev-lang/tcl:0= )"
53 -
54 BDEPEND="
55 + ${RDEPEND}
56 virtual/pkgconfig"
57
58 +# Tcl is only needed in the CHOST test env
59 +DEPEND="${RDEPEND}
60 + test? ( dev-lang/tcl:0= )"
61 +
62 REQUIRED_USE="?? ( tcmalloc jemalloc )"
63
64 pkg_setup() {