public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-02-09 10:51 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-02-09 10:51 UTC (permalink / raw
  To: gentoo-commits

commit:     8585458bed50c1a6547fe1a670365f3fddb357fd
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 10:51:37 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 10:51:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8585458b

dev-ml/ocaml-redis: initial import; ebuild by me

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/metadata.xml             | 11 +++++++++++
 dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild | 28 ++++++++++++++++++++++++++++
 3 files changed, 40 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
new file mode 100644
index 0000000..72ebe7e
--- /dev/null
+++ b/dev-ml/ocaml-redis/Manifest
@@ -0,0 +1 @@
+DIST ocaml-redis-0.2.3.tar.gz 61333 SHA256 954b498944b0340b8ea83e7af3740a34e3212cd0fcce5b3c02ba253836fcd374 SHA512 8f1c582778fc3cc8dd1e46b7369b66dc33692d7e836703fe8649ce16070469a5d7adbae8e198087e820b2254056edbb815de5c43fbf5fd7cb66d02b2e303018c WHIRLPOOL a34df4e5726ffa8cc3228a9099fbc03063d422753b3a60c1fd2e48a048066e4fe4d94f66ac346fdba64e3c618fc03b1b6fe107fd94c0e9e29059722123979c99

diff --git a/dev-ml/ocaml-redis/metadata.xml b/dev-ml/ocaml-redis/metadata.xml
new file mode 100644
index 0000000..f66dae1
--- /dev/null
+++ b/dev-ml/ocaml-redis/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+	<email>ml@gentoo.org</email>
+	<name>Gentoo ML Project</name>
+</maintainer>
+  <use>
+	<flag name="lwt">Enable lwt bindings for asynchronous processing.</flag>
+  </use>
+</pkgmetadata>

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
new file mode 100644
index 0000000..d3104f0
--- /dev/null
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_TESTS=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"
+
+DEPEND="
+	dev-ml/ocaml-re:=
+	dev-ml/uuidm:=
+	lwt? ( dev-ml/lwt:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	oasis_configure_opts="$(use_enable lwt)" oasis_src_configure
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-02-09 10:54 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-02-09 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     5521a6ec2e8d9026b8b83e53b84968300a3433ea
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  9 10:54:45 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb  9 10:54:51 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5521a6ec

dev-ml/ocaml-redis: add missing ounit dep for tests

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
index d3104f0..831da4e 100644
--- a/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
@@ -16,12 +16,13 @@ SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE="+lwt"
 
-DEPEND="
+RDEPEND="
 	dev-ml/ocaml-re:=
 	dev-ml/uuidm:=
 	lwt? ( dev-ml/lwt:= )
 "
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}
+	test? ( dev-ml/ounit )"
 
 src_configure() {
 	oasis_configure_opts="$(use_enable lwt)" oasis_src_configure


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-07-11 10:30 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-07-11 10:30 UTC (permalink / raw
  To: gentoo-commits

commit:     5d5f3983f1fd275faa5f9a7aa7b74698b9bd4b34
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 11 10:24:04 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 11 10:30:14 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5f3983

dev-ml/ocaml-redis: bump to 0.3.0

Package-Manager: portage-2.3.0

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild | 30 +++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index 72ebe7e..ab016e2 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1 +1,2 @@
 DIST ocaml-redis-0.2.3.tar.gz 61333 SHA256 954b498944b0340b8ea83e7af3740a34e3212cd0fcce5b3c02ba253836fcd374 SHA512 8f1c582778fc3cc8dd1e46b7369b66dc33692d7e836703fe8649ce16070469a5d7adbae8e198087e820b2254056edbb815de5c43fbf5fd7cb66d02b2e303018c WHIRLPOOL a34df4e5726ffa8cc3228a9099fbc03063d422753b3a60c1fd2e48a048066e4fe4d94f66ac346fdba64e3c618fc03b1b6fe107fd94c0e9e29059722123979c99
+DIST ocaml-redis-0.3.0.tar.gz 69120 SHA256 8ff583321aea5398af98688eb84d3c3581aba0df1d2c34b437e2ba5e70585e3d SHA512 84e57763d23b309adc7d112ff5c3b79307f4d3077ed177166b57d09b249062466c48b269bddf647438af760981c909e26296669a80778198832bf79151b29e2b WHIRLPOOL 57cf2a1644ebd93d15b8b9432de040026a7c0cbf9542405198bdf0a6b180cbc469005ca44cd9da1a010682df88b9e608dbcb366315fd47a2b8f91b4306ec8e32

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild
new file mode 100644
index 0000000..7f07088
--- /dev/null
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.0.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
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-07-18 13:20 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-07-18 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     d7b67e4599fe77bba99487e856272c8b89e13113
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 13:19:37 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 13:20:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b67e45

dev-ml/ocaml-redis: bump to 0.3.1

Package-Manager: portage-2.3.0

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild | 30 +++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index 470dcaa..4a68311 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 0000000..7f07088
--- /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
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-07-18 13:20 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-07-18 13:20 UTC (permalink / raw
  To: gentoo-commits

commit:     0e5a1adee4d228a4c4daf21b8a206f987049488a
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 13:18:26 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 13:20:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e5a1ade

dev-ml/ocaml-redis: remove old

Package-Manager: portage-2.3.0

 dev-ml/ocaml-redis/Manifest                 |  1 -
 dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild | 29 -----------------------------
 2 files changed, 30 deletions(-)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index ab016e2..470dcaa 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1,2 +1 @@
-DIST ocaml-redis-0.2.3.tar.gz 61333 SHA256 954b498944b0340b8ea83e7af3740a34e3212cd0fcce5b3c02ba253836fcd374 SHA512 8f1c582778fc3cc8dd1e46b7369b66dc33692d7e836703fe8649ce16070469a5d7adbae8e198087e820b2254056edbb815de5c43fbf5fd7cb66d02b2e303018c WHIRLPOOL a34df4e5726ffa8cc3228a9099fbc03063d422753b3a60c1fd2e48a048066e4fe4d94f66ac346fdba64e3c618fc03b1b6fe107fd94c0e9e29059722123979c99
 DIST ocaml-redis-0.3.0.tar.gz 69120 SHA256 8ff583321aea5398af98688eb84d3c3581aba0df1d2c34b437e2ba5e70585e3d SHA512 84e57763d23b309adc7d112ff5c3b79307f4d3077ed177166b57d09b249062466c48b269bddf647438af760981c909e26296669a80778198832bf79151b29e2b WHIRLPOOL 57cf2a1644ebd93d15b8b9432de040026a7c0cbf9542405198bdf0a6b180cbc469005ca44cd9da1a010682df88b9e608dbcb366315fd47a2b8f91b4306ec8e32

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
deleted file mode 100644
index 831da4e..0000000
--- a/dev-ml/ocaml-redis/ocaml-redis-0.2.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-OASIS_BUILD_TESTS=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
-}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-08-26 16:59 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-08-26 16:59 UTC (permalink / raw
  To: gentoo-commits

commit:     bccd86322a23c27820c4a676604662c16809ee5c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 26 15:04:11 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Aug 26 16:59:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bccd8632

dev-ml/ocaml-redis: bump to 0.3.2

Package-Manager: portage-2.3.0

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild | 30 +++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index 4a68311..cbc660e 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1,2 +1,3 @@
 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
+DIST ocaml-redis-0.3.2.tar.gz 71229 SHA256 c6ef7acc2a383d3a7422e74f162b2dcdc39a8e631503f58a0c4f6133e4de30e1 SHA512 e834574c2892551516c6709b241e393a3ad990f50ae8105a39b3e54bf3e44fe69a48da13cbd15019b298491af4bede6178fce6a580e8d9323dac926380127618 WHIRLPOOL 3aeceda3fc018d01e6fd1456f6b9479b8cba1526cc44acba79177a50abcc5401fd1f1d0fc7eaa6a2757771804b1b8e20118e64cf415eb9a7e373ea4f079f0601

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild
new file mode 100644
index 00000000..7f07088
--- /dev/null
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.2.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
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2016-09-23  8:23 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2016-09-23  8:23 UTC (permalink / raw
  To: gentoo-commits

commit:     dc96b32c07e402d20ce421f0cf39ac58412eb5fc
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 23 08:21:40 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Sep 23 08:22:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc96b32c

dev-ml/ocaml-redis: bump to 0.3.3

Package-Manager: portage-2.3.1

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild | 30 +++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index cbc660e..b7ac230 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1,3 +1,4 @@
 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
 DIST ocaml-redis-0.3.2.tar.gz 71229 SHA256 c6ef7acc2a383d3a7422e74f162b2dcdc39a8e631503f58a0c4f6133e4de30e1 SHA512 e834574c2892551516c6709b241e393a3ad990f50ae8105a39b3e54bf3e44fe69a48da13cbd15019b298491af4bede6178fce6a580e8d9323dac926380127618 WHIRLPOOL 3aeceda3fc018d01e6fd1456f6b9479b8cba1526cc44acba79177a50abcc5401fd1f1d0fc7eaa6a2757771804b1b8e20118e64cf415eb9a7e373ea4f079f0601
+DIST ocaml-redis-0.3.3.tar.gz 71336 SHA256 18b481846d20494f7e7b68b6ac18036dcf50910b1d91d88dd16df3d7b5a9eea2 SHA512 35f9647ecc17d2cd1770b3867ee350f83ac132918b1e368fa560d54f0ad11fa987aed0a14103327e79030a169d5b381e473b82f7039d77324a67ab9d75aa6749 WHIRLPOOL c5b20b4a92ffd437d02e0b1cdebf20b48e83b1664ea66d9b3cf85463626ea9f90d129951c5d2cb64b8bb3f296d67a7989c7ee1069344da5a83d71afe6aa5c6d3

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild
new file mode 100644
index 00000000..7f07088
--- /dev/null
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.3.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
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-01-24 11:23 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-01-24 11:23 UTC (permalink / raw
  To: gentoo-commits

commit:     e6776b1c94830efb59124e484cffe029f1fe5b7a
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 24 11:19:23 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jan 24 11:19:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6776b1c

dev-ml/ocaml-redis: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ml/ocaml-redis/Manifest                 |  3 ---
 dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild | 30 -----------------------------
 dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild | 30 -----------------------------
 dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild | 30 -----------------------------
 4 files changed, 93 deletions(-)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index b7ac230..48e065f 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1,4 +1 @@
-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
-DIST ocaml-redis-0.3.2.tar.gz 71229 SHA256 c6ef7acc2a383d3a7422e74f162b2dcdc39a8e631503f58a0c4f6133e4de30e1 SHA512 e834574c2892551516c6709b241e393a3ad990f50ae8105a39b3e54bf3e44fe69a48da13cbd15019b298491af4bede6178fce6a580e8d9323dac926380127618 WHIRLPOOL 3aeceda3fc018d01e6fd1456f6b9479b8cba1526cc44acba79177a50abcc5401fd1f1d0fc7eaa6a2757771804b1b8e20118e64cf415eb9a7e373ea4f079f0601
 DIST ocaml-redis-0.3.3.tar.gz 71336 SHA256 18b481846d20494f7e7b68b6ac18036dcf50910b1d91d88dd16df3d7b5a9eea2 SHA512 35f9647ecc17d2cd1770b3867ee350f83ac132918b1e368fa560d54f0ad11fa987aed0a14103327e79030a169d5b381e473b82f7039d77324a67ab9d75aa6749 WHIRLPOOL c5b20b4a92ffd437d02e0b1cdebf20b48e83b1664ea66d9b3cf85463626ea9f90d129951c5d2cb64b8bb3f296d67a7989c7ee1069344da5a83d71afe6aa5c6d3

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild
deleted file mode 100644
index 7f07088..00000000
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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
-}

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild
deleted file mode 100644
index 7f07088..00000000
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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
-}

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild
deleted file mode 100644
index 7f07088..00000000
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-05-08 10:18 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-05-08 10:18 UTC (permalink / raw
  To: gentoo-commits

commit:     f7bcc2a90f85f5b7617a2082b0b9bbb42b3dbb44
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon May  8 09:54:21 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon May  8 10:18:46 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7bcc2a9

dev-ml/ocaml-redis: Bump to 0.3.4

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild | 42 +++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index 48e065f2216..c05e72366b9 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1 +1,2 @@
 DIST ocaml-redis-0.3.3.tar.gz 71336 SHA256 18b481846d20494f7e7b68b6ac18036dcf50910b1d91d88dd16df3d7b5a9eea2 SHA512 35f9647ecc17d2cd1770b3867ee350f83ac132918b1e368fa560d54f0ad11fa987aed0a14103327e79030a169d5b381e473b82f7039d77324a67ab9d75aa6749 WHIRLPOOL c5b20b4a92ffd437d02e0b1cdebf20b48e83b1664ea66d9b3cf85463626ea9f90d129951c5d2cb64b8bb3f296d67a7989c7ee1069344da5a83d71afe6aa5c6d3
+DIST ocaml-redis-0.3.4.tar.gz 26422 SHA256 da2b9d8f4be0b7699715c38b4eb68a925bc5ee3db74d4aead95dc37f2e9f524f SHA512 b1d77b7eb69b6c795d505eb58c38cf558bcff6a054937f29a959a353c0c0107cdd78eb6329ea003f31ba7ae9d71cc9f7786495babbf1ffc8262356d468094699 WHIRLPOOL 033bc54a23319a0db56557e57f6159f811082a54ef845603304db9de97a16f732bb309972ecc93213f9b8ee9cad10635a046daecac97de23079de6d51f8ccb06

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild
new file mode 100644
index 00000000000..f69ee04b772
--- /dev/null
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.4.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="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="test"
+
+RDEPEND="
+	dev-lang/ocaml:=
+	dev-ml/ocaml-re:=
+	dev-ml/uuidm:=
+	dev-ml/lwt:=
+"
+DEPEND="${RDEPEND}
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )"
+
+src_compile() {
+	jbuilder build -p redis || 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.install || die
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-05-18 13:37 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-05-18 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     adc587f404aa0b710827aca9dcb7adbf1cae4c7e
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu May 18 13:06:31 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu May 18 13:36:59 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc587f4

dev-ml/ocaml-redis: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-redis/Manifest                 |  2 --
 dev-ml/ocaml-redis/metadata.xml             |  3 ---
 dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild | 29 --------------------
 dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild | 42 -----------------------------
 4 files changed, 76 deletions(-)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index ce65c625945..f11560ce6f9 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1,3 +1 @@
-DIST ocaml-redis-0.3.3.tar.gz 71336 SHA256 18b481846d20494f7e7b68b6ac18036dcf50910b1d91d88dd16df3d7b5a9eea2 SHA512 35f9647ecc17d2cd1770b3867ee350f83ac132918b1e368fa560d54f0ad11fa987aed0a14103327e79030a169d5b381e473b82f7039d77324a67ab9d75aa6749 WHIRLPOOL c5b20b4a92ffd437d02e0b1cdebf20b48e83b1664ea66d9b3cf85463626ea9f90d129951c5d2cb64b8bb3f296d67a7989c7ee1069344da5a83d71afe6aa5c6d3
-DIST ocaml-redis-0.3.4.tar.gz 26422 SHA256 da2b9d8f4be0b7699715c38b4eb68a925bc5ee3db74d4aead95dc37f2e9f524f SHA512 b1d77b7eb69b6c795d505eb58c38cf558bcff6a054937f29a959a353c0c0107cdd78eb6329ea003f31ba7ae9d71cc9f7786495babbf1ffc8262356d468094699 WHIRLPOOL 033bc54a23319a0db56557e57f6159f811082a54ef845603304db9de97a16f732bb309972ecc93213f9b8ee9cad10635a046daecac97de23079de6d51f8ccb06
 DIST ocaml-redis-0.3.5.tar.gz 31217 SHA256 f43af830ab9d66619a685fbad471b97bdb5d40a4f2bdf923b76f25d139007d78 SHA512 dfd2779635fddc73ab76cd66943267c3de984edeb471728f8d6d9506cd37e9cf4b1875519c7547b90de80fd876abc7fbe6a4c9c0674fcb6a00bbe91afa6c625d WHIRLPOOL 68b02061b04a247d09fcc91fe4215ffe2bad7d8c3598c62df347da67fd698985a7a97edd3f48bcf9223b1db09cc4984c67910868a793df8cba114362f63044ad

diff --git a/dev-ml/ocaml-redis/metadata.xml b/dev-ml/ocaml-redis/metadata.xml
index 55ff5b02e2a..20d1ed52023 100644
--- a/dev-ml/ocaml-redis/metadata.xml
+++ b/dev-ml/ocaml-redis/metadata.xml
@@ -5,9 +5,6 @@
 		<email>ml@gentoo.org</email>
 		<name>Gentoo ML Project</name>
 	</maintainer>
-	<use>
-		<flag name="lwt">Enable lwt bindings for asynchronous processing.</flag>
-	</use>
 	<upstream>
 		<remote-id type="github">0xffea/ocaml-redis</remote-id>
 	</upstream>

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild
deleted file mode 100644
index f2607ef8cb2..00000000000
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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
-}

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild
deleted file mode 100644
index f69ee04b772..00000000000
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.4.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-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="test"
-
-RDEPEND="
-	dev-lang/ocaml:=
-	dev-ml/ocaml-re:=
-	dev-ml/uuidm:=
-	dev-ml/lwt:=
-"
-DEPEND="${RDEPEND}
-	dev-ml/jbuilder
-	dev-ml/opam
-	test? ( dev-ml/ounit )"
-
-src_compile() {
-	jbuilder build -p redis || 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.install || die
-}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-05-18 13:37 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-05-18 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     28f82eb7ae43407c2bed020bf48c2456f1c8d390
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu May 18 13:06:04 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu May 18 13:36:59 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f82eb7

dev-ml/ocaml-redis: bump to 0.3.5

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-redis/Manifest                 |  1 +
 dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild | 41 +++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/dev-ml/ocaml-redis/Manifest b/dev-ml/ocaml-redis/Manifest
index c05e72366b9..ce65c625945 100644
--- a/dev-ml/ocaml-redis/Manifest
+++ b/dev-ml/ocaml-redis/Manifest
@@ -1,2 +1,3 @@
 DIST ocaml-redis-0.3.3.tar.gz 71336 SHA256 18b481846d20494f7e7b68b6ac18036dcf50910b1d91d88dd16df3d7b5a9eea2 SHA512 35f9647ecc17d2cd1770b3867ee350f83ac132918b1e368fa560d54f0ad11fa987aed0a14103327e79030a169d5b381e473b82f7039d77324a67ab9d75aa6749 WHIRLPOOL c5b20b4a92ffd437d02e0b1cdebf20b48e83b1664ea66d9b3cf85463626ea9f90d129951c5d2cb64b8bb3f296d67a7989c7ee1069344da5a83d71afe6aa5c6d3
 DIST ocaml-redis-0.3.4.tar.gz 26422 SHA256 da2b9d8f4be0b7699715c38b4eb68a925bc5ee3db74d4aead95dc37f2e9f524f SHA512 b1d77b7eb69b6c795d505eb58c38cf558bcff6a054937f29a959a353c0c0107cdd78eb6329ea003f31ba7ae9d71cc9f7786495babbf1ffc8262356d468094699 WHIRLPOOL 033bc54a23319a0db56557e57f6159f811082a54ef845603304db9de97a16f732bb309972ecc93213f9b8ee9cad10635a046daecac97de23079de6d51f8ccb06
+DIST ocaml-redis-0.3.5.tar.gz 31217 SHA256 f43af830ab9d66619a685fbad471b97bdb5d40a4f2bdf923b76f25d139007d78 SHA512 dfd2779635fddc73ab76cd66943267c3de984edeb471728f8d6d9506cd37e9cf4b1875519c7547b90de80fd876abc7fbe6a4c9c0674fcb6a00bbe91afa6c625d WHIRLPOOL 68b02061b04a247d09fcc91fe4215ffe2bad7d8c3598c62df347da67fd698985a7a97edd3f48bcf9223b1db09cc4984c67910868a793df8cba114362f63044ad

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
new file mode 100644
index 00000000000..bea5cf2ad61
--- /dev/null
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="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 -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+	dev-lang/ocaml:=
+	dev-ml/ocaml-re:=
+	dev-ml/uuidm:=
+"
+DEPEND="${RDEPEND}
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )"
+
+src_compile() {
+	jbuilder build -p redis || 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.install || die
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-07-09 17:16 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-07-09 17:16 UTC (permalink / raw
  To: gentoo-commits

commit:     9cd6d2df99288cb6cb385c4bbcaf9ebf82f71c7d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  9 17:15:59 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jul  9 17:16:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd6d2df

dev-ml/ocaml-redis: start a local redis server in src_test, bug #623988

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
index bea5cf2ad61..5133ae440d4 100644
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
@@ -22,14 +22,21 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	dev-ml/jbuilder
 	dev-ml/opam
-	test? ( dev-ml/ounit )"
+	test? ( dev-ml/ounit dev-db/redis )"
 
 src_compile() {
 	jbuilder build -p redis || die
 }
 
 src_test() {
-	jbuilder runtest || die
+	einfo "Starting test redis server"
+	local port=4567
+	/usr/sbin/redis-server --port ${port} &
+	local rpid=$!
+	export OCAML_REDIS_TEST_PORT=${port}
+	sleep 1
+	jbuilder runtest || { kill ${rpid}; die; }
+	kill ${rpid} || die
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-07-19 17:43 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-07-19 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     9e7e22aa543b3b7f30c9b54c1e726c9721f39228
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 19 17:42:49 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Jul 19 17:43:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e7e22aa

dev-ml/ocaml-redis: add missing lwt test dep, bug #625570

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
index 5133ae440d4..80c9ad7b4ef 100644
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	dev-ml/jbuilder
 	dev-ml/opam
-	test? ( dev-ml/ounit dev-db/redis )"
+	test? ( dev-ml/ounit dev-db/redis dev-ml/lwt )"
 
 src_compile() {
 	jbuilder build -p redis || die


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/
@ 2017-10-06 13:11 Alexis Ballier
  0 siblings, 0 replies; 14+ messages in thread
From: Alexis Ballier @ 2017-10-06 13:11 UTC (permalink / raw
  To: gentoo-commits

commit:     2ac43a680ad96f2ebfb1fea9a04531531abdbd9d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  6 13:08:24 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Oct  6 13:11:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ac43a68

dev-ml/ocaml-redis: convert to opam.eclass

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
index 80c9ad7b4ef..97c63e8a8de 100644
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit findlib
+inherit findlib opam
 
 DESCRIPTION="Redis bindings for OCaml"
 HOMEPAGE="http://0xffea.github.io/ocaml-redis/ https://github.com/0xffea/ocaml-redis/"
@@ -21,7 +21,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
 	dev-ml/jbuilder
-	dev-ml/opam
 	test? ( dev-ml/ounit dev-db/redis dev-ml/lwt )"
 
 src_compile() {
@@ -40,9 +39,5 @@ src_test() {
 }
 
 src_install() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		redis.install || die
+	opam_src_install redis
 }


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2017-10-06 13:11 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 10:30 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/ Alexis Ballier
  -- strict thread matches above, loose matches on Subject: below --
2017-10-06 13:11 Alexis Ballier
2017-07-19 17:43 Alexis Ballier
2017-07-09 17:16 Alexis Ballier
2017-05-18 13:37 Alexis Ballier
2017-05-18 13:37 Alexis Ballier
2017-05-08 10:18 Alexis Ballier
2017-01-24 11:23 Alexis Ballier
2016-09-23  8:23 Alexis Ballier
2016-08-26 16:59 Alexis Ballier
2016-07-18 13:20 Alexis Ballier
2016-07-18 13:20 Alexis Ballier
2016-02-09 10:54 Alexis Ballier
2016-02-09 10:51 Alexis Ballier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox