Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/hiredis/
Date: Sun, 17 Oct 2021 08:51:14
Message-Id: 1634460616.8ef0c2609079d62248407396b124f8b1b413d78e.sam@gentoo
1 commit: 8ef0c2609079d62248407396b124f8b1b413d78e
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 08:50:16 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 08:50:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef0c260
7
8 dev-ruby/hiredis: use := on hiredis in DEPEND
9
10 := isn't effective unless it's in DEPEND too.
11
12 pkgconfig should probably be in BDEPEND instead
13 of DEPEND but don't want to risk changing it
14 right now given I don't know if the ruby eclasses
15 have some special handling of BDEPEND.
16
17 Signed-off-by: Sam James <sam <AT> gentoo.org>
18
19 dev-ruby/hiredis/hiredis-0.6.3-r1.ebuild | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22 diff --git a/dev-ruby/hiredis/hiredis-0.6.3-r1.ebuild b/dev-ruby/hiredis/hiredis-0.6.3-r1.ebuild
23 index 96c59d55486..ec852faec26 100644
24 --- a/dev-ruby/hiredis/hiredis-0.6.3-r1.ebuild
25 +++ b/dev-ruby/hiredis/hiredis-0.6.3-r1.ebuild
26 @@ -25,7 +25,7 @@ KEYWORDS="~amd64"
27 IUSE=""
28
29 RDEPEND+=" =dev-libs/hiredis-0.14*:="
30 -DEPEND+=" dev-libs/hiredis test? ( dev-ruby/test-unit:2 )"
31 +DEPEND+=" dev-libs/hiredis:= test? ( dev-ruby/test-unit:2 )"
32 DEPEND+=" virtual/pkgconfig"
33
34 RUBY_S="${MY_P}"