Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/biniou/
Date: Tue, 06 Sep 2022 22:36:42
Message-Id: 1662503794.86823fd4d3a6505ca09f334dce333546867028d6.xgqt@gentoo
1 commit: 86823fd4d3a6505ca09f334dce333546867028d6
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 22:36:17 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 22:36:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86823fd4
7
8 dev-ml/biniou: add missing camlp-streams dependency
9
10 Closes: https://bugs.gentoo.org/868786
11 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
12
13 dev-ml/biniou/{biniou-1.2.2.ebuild => biniou-1.2.2-r1.ebuild} | 9 ++++++---
14 1 file changed, 6 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-ml/biniou/biniou-1.2.2.ebuild b/dev-ml/biniou/biniou-1.2.2-r1.ebuild
17 similarity index 79%
18 rename from dev-ml/biniou/biniou-1.2.2.ebuild
19 rename to dev-ml/biniou/biniou-1.2.2-r1.ebuild
20 index 74bf4a9d195b..45538d1c0312 100644
21 --- a/dev-ml/biniou/biniou-1.2.2.ebuild
22 +++ b/dev-ml/biniou/biniou-1.2.2-r1.ebuild
23 @@ -1,20 +1,23 @@
24 # Copyright 1999-2022 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=7
28 +EAPI=8
29
30 inherit dune
31
32 DESCRIPTION="A binary data serialization format inspired by JSON for OCaml"
33 HOMEPAGE="https://github.com/ocaml-community/biniou/"
34 -SRC_URI="https://github.com/ocaml-community/biniou/archive/${PV}.tar.gz -> ${P}.tar.gz"
35 +SRC_URI="https://github.com/ocaml-community/biniou/archive/${PV}.tar.gz
36 + -> ${P}.tar.gz"
37
38 LICENSE="BSD"
39 SLOT="0/${PV}"
40 KEYWORDS="~amd64"
41 IUSE="+ocamlopt"
42
43 -RDEPEND=">=dev-lang/ocaml-4.02.3:=[ocamlopt?]
44 +RDEPEND="
45 + >=dev-lang/ocaml-4.02.3:=[ocamlopt?]
46 + dev-ml/camlp-streams:=[ocamlopt?]
47 dev-ml/easy-format:=[ocamlopt?]
48 "
49 DEPEND="${RDEPEND}"