Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
Date: Mon, 11 Jul 2016 10:30:31
Message-Id: 1468233014.5d5f3983f1fd275faa5f9a7aa7b74698b9bd4b34.aballier@gentoo
1 commit: 5d5f3983f1fd275faa5f9a7aa7b74698b9bd4b34
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 11 10:24:04 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 11 10:30:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5f3983
7
8 dev-ml/ocaml-redis: bump to 0.3.0
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/ocaml-redis/Manifest | 1 +
13 dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild | 30 +++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
17 index 72ebe7e..ab016e2 100644
18 --- a/dev-ml/ocaml-redis/Manifest
19 +++ b/dev-ml/ocaml-redis/Manifest
20 @@ -1 +1,2 @@
21 DIST ocaml-redis-0.2.3.tar.gz 61333 SHA256 954b498944b0340b8ea83e7af3740a34e3212cd0fcce5b3c02ba253836fcd374 SHA512 8f1c582778fc3cc8dd1e46b7369b66dc33692d7e836703fe8649ce16070469a5d7adbae8e198087e820b2254056edbb815de5c43fbf5fd7cb66d02b2e303018c WHIRLPOOL a34df4e5726ffa8cc3228a9099fbc03063d422753b3a60c1fd2e48a048066e4fe4d94f66ac346fdba64e3c618fc03b1b6fe107fd94c0e9e29059722123979c99
22 +DIST ocaml-redis-0.3.0.tar.gz 69120 SHA256 8ff583321aea5398af98688eb84d3c3581aba0df1d2c34b437e2ba5e70585e3d SHA512 84e57763d23b309adc7d112ff5c3b79307f4d3077ed177166b57d09b249062466c48b269bddf647438af760981c909e26296669a80778198832bf79151b29e2b WHIRLPOOL 57cf2a1644ebd93d15b8b9432de040026a7c0cbf9542405198bdf0a6b180cbc469005ca44cd9da1a010682df88b9e608dbcb366315fd47a2b8f91b4306ec8e32
23
24 diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild
25 new file mode 100644
26 index 0000000..7f07088
27 --- /dev/null
28 +++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +OASIS_BUILD_TESTS=1
36 +OASIS_BUILD_DOCS=1
37 +
38 +inherit oasis
39 +
40 +DESCRIPTION="Redis bindings for OCaml"
41 +HOMEPAGE="http://0xffea.github.io/ocaml-redis/"
42 +SRC_URI="https://github.com/0xffea/ocaml-redis/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0/${PV}"
46 +KEYWORDS="~amd64"
47 +IUSE="+lwt"
48 +
49 +RDEPEND="
50 + dev-ml/ocaml-re:=
51 + dev-ml/uuidm:=
52 + lwt? ( dev-ml/lwt:= )
53 +"
54 +DEPEND="${RDEPEND}
55 + test? ( dev-ml/ounit )"
56 +
57 +src_configure() {
58 + oasis_configure_opts="$(use_enable lwt)" oasis_src_configure
59 +}