Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/llvm-ocaml/
Date: Sun, 29 Nov 2020 10:34:18
Message-Id: 1606646052.749559f73ca3f3e45f8b1f57c46758518379db1c.mgorny@gentoo
1 commit: 749559f73ca3f3e45f8b1f57c46758518379db1c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 10:33:54 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 10:34:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749559f7
7
8 dev-ml/llvm-ocaml: Fix missing conditions around deps
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-ml/llvm-ocaml/llvm-ocaml-11.0.0.9999.ebuild | 2 +-
13 dev-ml/llvm-ocaml/llvm-ocaml-12.0.0.9999.ebuild | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-11.0.0.9999.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-11.0.0.9999.ebuild
17 index dce57ce08f6..40fb0676b74 100644
18 --- a/dev-ml/llvm-ocaml/llvm-ocaml-11.0.0.9999.ebuild
19 +++ b/dev-ml/llvm-ocaml/llvm-ocaml-11.0.0.9999.ebuild
20 @@ -30,7 +30,7 @@ RDEPEND="
21 !sys-devel/llvm[ocaml(-)]"
22 for x in "${ALL_LLVM_TARGETS[@]}"; do
23 RDEPEND+="
24 - ~sys-devel/llvm-${PV}[${x}]"
25 + ${x}? ( ~sys-devel/llvm-${PV}[${x}] )"
26 done
27 unset x
28
29
30 diff --git a/dev-ml/llvm-ocaml/llvm-ocaml-12.0.0.9999.ebuild b/dev-ml/llvm-ocaml/llvm-ocaml-12.0.0.9999.ebuild
31 index 53bd69a34ce..7f6ae880e2c 100644
32 --- a/dev-ml/llvm-ocaml/llvm-ocaml-12.0.0.9999.ebuild
33 +++ b/dev-ml/llvm-ocaml/llvm-ocaml-12.0.0.9999.ebuild
34 @@ -30,7 +30,7 @@ RDEPEND="
35 !sys-devel/llvm[ocaml(-)]"
36 for x in "${ALL_LLVM_TARGETS[@]}"; do
37 RDEPEND+="
38 - ~sys-devel/llvm-${PV}[${x}]"
39 + ${x}? ( ~sys-devel/llvm-${PV}[${x}] )"
40 done
41 unset x