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/ocamlgraph/
Date: Sat, 27 Feb 2021 14:17:49
Message-Id: 1614435444.1cbd39c216c768505c36f8a25d11f67afb3cea38.tupone@gentoo
1 commit: 1cbd39c216c768505c36f8a25d11f67afb3cea38
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 27 14:17:24 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 14:17:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cbd39c2
7
8 dev-ml/ocamlgraph: remove gtk use flag
9
10 Bugs: https://bugs.gentoo.org/769320
11 Package-Manager: Portage-3.0.13, Repoman-3.0.2
12 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
13
14 dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild | 22 ++++++++++++++++++++++
15 1 file changed, 22 insertions(+)
16
17 diff --git a/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild b/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..6001ee9fb27
20 --- /dev/null
21 +++ b/dev-ml/ocamlgraph/ocamlgraph-2.0.0-r1.ebuild
22 @@ -0,0 +1,22 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +inherit dune
29 +
30 +DESCRIPTION="O'Caml Graph library"
31 +HOMEPAGE="http://ocamlgraph.lri.fr/index.en.html"
32 +SRC_URI="https://github.com/backtracking/${PN}/releases/download/${PV}/${P}.tbz"
33 +LICENSE="LGPL-2.1"
34 +SLOT="0/${PV}"
35 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
36 +RDEPEND="
37 + dev-ml/stdlib-shims:=[ocamlopt?]
38 + dev-ml/graphics:=[ocamlopt?]"
39 +DEPEND="${RDEPEND}"
40 +IUSE="+ocamlopt"
41 +
42 +src_compile() {
43 + dune build --only-packages ocamlgraph @install || die
44 +}