diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-07-18 15:19:37 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-07-18 15:20:44 +0200 |
commit | d7b67e4599fe77bba99487e856272c8b89e13113 (patch) | |
tree | 9bb938ae1a1e7be7c6b38a2bb48691da150908cc /dev-ml/ocaml-redis | |
parent | dev-ml/ocaml-redis: remove old (diff) | |
download | gentoo-d7b67e4599fe77bba99487e856272c8b89e13113.tar.gz gentoo-d7b67e4599fe77bba99487e856272c8b89e13113.tar.bz2 gentoo-d7b67e4599fe77bba99487e856272c8b89e13113.zip |
dev-ml/ocaml-redis: bump to 0.3.1
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-ml/ocaml-redis')
-rw-r--r-- | dev-ml/ocaml-redis/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest index 470dcaa1641e..4a683112beb2 100644 --- a/dev-ml/ocaml-redis/Manifest +++ b/dev-ml/ocaml-redis/Manifest @@ -1 +1,2 @@ DIST ocaml-redis-0.3.0.tar.gz 69120 SHA256 8ff583321aea5398af98688eb84d3c3581aba0df1d2c34b437e2ba5e70585e3d SHA512 84e57763d23b309adc7d112ff5c3b79307f4d3077ed177166b57d09b249062466c48b269bddf647438af760981c909e26296669a80778198832bf79151b29e2b WHIRLPOOL 57cf2a1644ebd93d15b8b9432de040026a7c0cbf9542405198bdf0a6b180cbc469005ca44cd9da1a010682df88b9e608dbcb366315fd47a2b8f91b4306ec8e32 +DIST ocaml-redis-0.3.1.tar.gz 69758 SHA256 5004f1d2c19ba1a8aae8b3096d04fbbbcab4bc3f6c50171cd8d1202c2d2a01e7 SHA512 a3cfa270dacda997330583a685dfc4c5748623e782bf54bf109736b8f95b0c3d6ce0d3fcbfaa73f92e5f03a547700b29cfdc6fb85864972cc55da951a84b28a2 WHIRLPOOL 0e033a7df950e7d6979c40de451170563015aa80331ecf36c0bf8340a9ed69a0618770889fc290681be8e6acd1c38b174385a5c8839293bd55194af92ad70059 diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild new file mode 100644 index 000000000000..7f07088fca6a --- /dev/null +++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +OASIS_BUILD_TESTS=1 +OASIS_BUILD_DOCS=1 + +inherit oasis + +DESCRIPTION="Redis bindings for OCaml" +HOMEPAGE="http://0xffea.github.io/ocaml-redis/" +SRC_URI="https://github.com/0xffea/ocaml-redis/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="+lwt" + +RDEPEND=" + dev-ml/ocaml-re:= + dev-ml/uuidm:= + lwt? ( dev-ml/lwt:= ) +" +DEPEND="${RDEPEND} + test? ( dev-ml/ounit )" + +src_configure() { + oasis_configure_opts="$(use_enable lwt)" oasis_src_configure +} |