From ec27aeca3dee48b864b39be67e9b67b86cc448b0 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Thu, 18 May 2017 15:09:27 +0200 Subject: dev-ml/ocaml-redis-sync: initial import Package-Manager: Portage-2.3.5, Repoman-2.3.2 --- dev-ml/ocaml-redis-sync/Manifest | 1 + dev-ml/ocaml-redis-sync/metadata.xml | 11 ++++++ .../ocaml-redis-sync/ocaml-redis-sync-0.3.5.ebuild | 42 ++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 dev-ml/ocaml-redis-sync/Manifest create mode 100644 dev-ml/ocaml-redis-sync/metadata.xml create mode 100644 dev-ml/ocaml-redis-sync/ocaml-redis-sync-0.3.5.ebuild (limited to 'dev-ml') diff --git a/dev-ml/ocaml-redis-sync/Manifest b/dev-ml/ocaml-redis-sync/Manifest new file mode 100644 index 000000000000..f11560ce6f9b --- /dev/null +++ b/dev-ml/ocaml-redis-sync/Manifest @@ -0,0 +1 @@ +DIST ocaml-redis-0.3.5.tar.gz 31217 SHA256 f43af830ab9d66619a685fbad471b97bdb5d40a4f2bdf923b76f25d139007d78 SHA512 dfd2779635fddc73ab76cd66943267c3de984edeb471728f8d6d9506cd37e9cf4b1875519c7547b90de80fd876abc7fbe6a4c9c0674fcb6a00bbe91afa6c625d WHIRLPOOL 68b02061b04a247d09fcc91fe4215ffe2bad7d8c3598c62df347da67fd698985a7a97edd3f48bcf9223b1db09cc4984c67910868a793df8cba114362f63044ad diff --git a/dev-ml/ocaml-redis-sync/metadata.xml b/dev-ml/ocaml-redis-sync/metadata.xml new file mode 100644 index 000000000000..20d1ed52023f --- /dev/null +++ b/dev-ml/ocaml-redis-sync/metadata.xml @@ -0,0 +1,11 @@ + + + + + ml@gentoo.org + Gentoo ML Project + + + 0xffea/ocaml-redis + + diff --git a/dev-ml/ocaml-redis-sync/ocaml-redis-sync-0.3.5.ebuild b/dev-ml/ocaml-redis-sync/ocaml-redis-sync-0.3.5.ebuild new file mode 100644 index 000000000000..54105358e9cd --- /dev/null +++ b/dev-ml/ocaml-redis-sync/ocaml-redis-sync-0.3.5.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit findlib + +DESCRIPTION="Synchronous redis bindings for OCaml" +HOMEPAGE="http://0xffea.github.io/ocaml-redis/ https://github.com/0xffea/ocaml-redis/" +SRC_URI="https://github.com/0xffea/ocaml-redis/archive/${PV}.tar.gz -> ocaml-redis-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND=" + dev-lang/ocaml:= + dev-ml/ocaml-redis:= +" +DEPEND="${RDEPEND} + dev-ml/jbuilder + dev-ml/opam + test? ( dev-ml/ounit )" + +S=${WORKDIR}/ocaml-redis-${PV} + +src_compile() { + jbuilder build -p redis-sync || die +} + +src_test() { + jbuilder runtest || die +} + +src_install() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + redis-sync.install || die +} -- cgit v1.2.3-65-gdbad