Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/merlin/
Date: Wed, 29 Sep 2021 07:13:08
Message-Id: 1632899566.c0fa0b80d5b8802c51d01f44d7f288e4019b6d5e.tupone@gentoo
1 commit: c0fa0b80d5b8802c51d01f44d7f288e4019b6d5e
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 29 07:12:46 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 29 07:12:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0fa0b80
7
8 dev-ml/merlin: fix test dep
9
10 Closes: https://bugs.gentoo.org/815310
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
13
14 dev-ml/merlin/merlin-4.1-r2.ebuild | 6 ++++--
15 1 file changed, 4 insertions(+), 2 deletions(-)
16
17 diff --git a/dev-ml/merlin/merlin-4.1-r2.ebuild b/dev-ml/merlin/merlin-4.1-r2.ebuild
18 index 1da4c679bcf..20b1824bea5 100644
19 --- a/dev-ml/merlin/merlin-4.1-r2.ebuild
20 +++ b/dev-ml/merlin/merlin-4.1-r2.ebuild
21 @@ -13,7 +13,8 @@ SRC_URI="https://github.com/ocaml/merlin/archive/v${PV}.tar.gz -> ${P}.tar.gz"
22 LICENSE="MIT"
23 SLOT="0/${PV}"
24 KEYWORDS="~amd64"
25 -IUSE="emacs +ocamlopt"
26 +IUSE="emacs +ocamlopt test"
27 +RESTRICT="!test? ( test )"
28
29 RDEPEND="
30 dev-ml/csexp:=
31 @@ -26,7 +27,8 @@ RDEPEND="
32 app-emacs/company-mode
33 )
34 "
35 -DEPEND="${RDEPEND}"
36 +DEPEND="${RDEPEND}
37 + test? ( app-misc/jq )"
38
39 SITEFILE="50${PN}-gentoo.el"