summaryrefslogtreecommitdiff
blob: 5e13c28209b903c629ab9ef0b8a2844fb9c718bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit dune

DESCRIPTION="Async-aware bindings to ZMQ for OCaml"
HOMEPAGE="https://github.com/issuu/ocaml-zmq/"

if [[ ${PV} == *9999* ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/issuu/ocaml-zmq.git"
else
	SRC_URI="https://github.com/issuu/ocaml-zmq/archive/${PV}.tar.gz
		-> ocaml-zmq-${PN}.tar.gz"
	KEYWORDS="~amd64 ~x86"
fi
S="${WORKDIR}"/ocaml-zmq-${PV}

LICENSE="MIT"
SLOT="0/${PV}"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"

RDEPEND="
	dev-ml/async_kernel:=
	dev-ml/async_unix:=
	dev-ml/base:=
	net-libs/zeromq:=
"
DEPEND="${DEPEND}"
BDEPEND="
	dev-ml/dune-configurator
	test? ( dev-ml/ounit2 )
"

src_compile() {
	dune-compile ${DUNE_PKG_NAME}
}

src_test() {
	dune-test ${DUNE_PKG_NAME}
}