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

commit:     f379f261451d9a6bef0ee96e48a32249c2fffdee
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Fri Oct 16 12:31:35 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 11:11:13 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f379f261

dev-ml/ocaml-cstruct: new ebuild

- needed as a transitive dependency of Libre S3 1.1 (net-misc/libres3)
- explicit support for MirageOS is not enabled

known issue: dev-ml/ocaml-cstruct-1.7.0 fails to build with USE=doc ( https://github.com/mirage/ocaml-cstruct/issues/73 )

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/metadata.xml               | 14 ++++++++
 dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild | 43 +++++++++++++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
new file mode 100644
index 0000000..d7a9c7a
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -0,0 +1 @@
+DIST ocaml-cstruct-1.7.0.tar.gz 245652 SHA256 db996700df500cff933eaaebfff9834ccaba466518bade575934bb133f62f322 SHA512 5a43ffa0ee867c917f171cd90186eaf44a258f1e4fb9db7947d23113fe7d8e9058acfce7030c0e31e211b5448a9e23b48ad748c61ffab6678aa79c6aeaac2f48 WHIRLPOOL 99d7650405df68d8e4d1cfc237eb9a791db5c54cfcdbbf2e9eb5c493881256eed7298588c6ad9ca91b493544df0bb24e9c87c2820c5b92c37d460a8cc6211c26

diff --git a/dev-ml/ocaml-cstruct/metadata.xml b/dev-ml/ocaml-cstruct/metadata.xml
new file mode 100644
index 0000000..4913ab2
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/metadata.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <herd>ml</herd>
+    <herd>proxy-maintainers</herd>
+    <maintainer>
+        <email>tomboy64@sina.cn</email>
+    </maintainer>
+    <use>
+        <flag name="async">Support for asynchronous execution</flag>
+        <flag name="camlp4">Enable support for camlp4</flag>
+        <flag name="lwt">Enable threads via lwt</flag>
+    </use>
+</pkgmetadata>

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild
new file mode 100644
index 0000000..b137031
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="async camlp4 lwt"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	camlp4? ( dev-ml/camlp4:= )
+	lwt? ( dev-ml/lwt:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable camlp4)
+		$(use_enable async)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2015-10-17 16:24 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2015-10-17 16:24 UTC (permalink / raw
  To: gentoo-commits

commit:     b376b40f51a698dd5844d1bc273dac6950212af8
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Sat Oct 17 14:41:05 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 15:17:04 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b376b40f

dev-ml/ocaml-cstruct: revbump

changed SLOT="0" to SLOT="0/${PV}" to make := actually useful

 .../{ocaml-cstruct-1.7.0.ebuild => ocaml-cstruct-1.7.0-r1.ebuild}       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r1.ebuild
similarity index 98%
rename from dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild
rename to dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r1.ebuild
index b137031..ee6b40d 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
 SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="ISC"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE="async camlp4 lwt"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2015-10-17 17:21 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2015-10-17 17:21 UTC (permalink / raw
  To: gentoo-commits

commit:     ccbb60c61d349ef79306c4976f288ca3d28dd06c
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Sat Oct 17 17:05:01 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 17:21:10 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbb60c6

dev-ml/ocaml-cstruct: revbump

sets +camlp4 since ocaml-pcap needs it

 .../{ocaml-cstruct-1.7.0-r1.ebuild => ocaml-cstruct-1.7.0-r2.ebuild}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r2.ebuild
similarity index 97%
rename from dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r1.ebuild
rename to dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r2.ebuild
index ee6b40d..9b44e6f 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r1.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="ISC"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="async camlp4 lwt"
+IUSE="async +camlp4 lwt"
 
 RDEPEND="
 	async? ( dev-ml/async:= )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2015-10-18 18:07 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2015-10-18 18:07 UTC (permalink / raw
  To: gentoo-commits

commit:     61c8ea4c8088049eef22a42389a09c2d8aa94622
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Sun Oct 18 10:09:29 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Oct 18 11:42:52 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c8ea4c

dev-ml/ocaml-cstruct: revbump: enable lwt per default

enable lwt support per default as it's required for Libre S3

 .../{ocaml-cstruct-1.7.0-r2.ebuild => ocaml-cstruct-1.7.0-r3.ebuild}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r2.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild
similarity index 96%
rename from dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r2.ebuild
rename to dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild
index 9b44e6f..647990b 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r2.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="ISC"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="async +camlp4 lwt"
+IUSE="async +camlp4 +lwt"
 
 RDEPEND="
 	async? ( dev-ml/async:= )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2015-12-19 15:01 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2015-12-19 15:01 UTC (permalink / raw
  To: gentoo-commits

commit:     2c627ae6066276bcba1ae7b678d315a66404a20d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 14:56:20 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 15:01:21 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c627ae6

dev-ml/ocaml-cstruct: bump to 1.7.1

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

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild | 43 +++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index d7a9c7a..e66ad89 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-1.7.0.tar.gz 245652 SHA256 db996700df500cff933eaaebfff9834ccaba466518bade575934bb133f62f322 SHA512 5a43ffa0ee867c917f171cd90186eaf44a258f1e4fb9db7947d23113fe7d8e9058acfce7030c0e31e211b5448a9e23b48ad748c61ffab6678aa79c6aeaac2f48 WHIRLPOOL 99d7650405df68d8e4d1cfc237eb9a791db5c54cfcdbbf2e9eb5c493881256eed7298588c6ad9ca91b493544df0bb24e9c87c2820c5b92c37d460a8cc6211c26
+DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b28b6c10f4174b7e2cfdfa46956eaaa5 SHA512 67dd276ab2f895ef80cc7ba5b48d51bcfcf52ac49aa29cd4b17aa00be109198347a50229b81fbe506d831ace753d72f3b4bb80f19e8e57fa29d9ba65da472f19 WHIRLPOOL 8145930a1dcadbcf48c1da0dcba10a45f3d52c8ae2565aee7e609bd3eeb5eead9cee9ef423332a580ab77ceabb2f301917226d1a73e1b7f6efc7a3096c4112d6

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild
new file mode 100644
index 0000000..647990b
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +camlp4 +lwt"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	camlp4? ( dev-ml/camlp4:= )
+	lwt? ( dev-ml/lwt:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable camlp4)
+		$(use_enable async)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2016-02-05 20:59 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2016-02-05 20:59 UTC (permalink / raw
  To: gentoo-commits

commit:     c2fa0d444fed0becc76288058070b49d0f34749f
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  5 20:54:58 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 20:59:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2fa0d44

dev-ml/ocaml-cstruct: remove old

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

 dev-ml/ocaml-cstruct/Manifest                      |  1 -
 dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild | 43 ----------------------
 2 files changed, 44 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index e66ad89..6094099 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1 @@
-DIST ocaml-cstruct-1.7.0.tar.gz 245652 SHA256 db996700df500cff933eaaebfff9834ccaba466518bade575934bb133f62f322 SHA512 5a43ffa0ee867c917f171cd90186eaf44a258f1e4fb9db7947d23113fe7d8e9058acfce7030c0e31e211b5448a9e23b48ad748c61ffab6678aa79c6aeaac2f48 WHIRLPOOL 99d7650405df68d8e4d1cfc237eb9a791db5c54cfcdbbf2e9eb5c493881256eed7298588c6ad9ca91b493544df0bb24e9c87c2820c5b92c37d460a8cc6211c26
 DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b28b6c10f4174b7e2cfdfa46956eaaa5 SHA512 67dd276ab2f895ef80cc7ba5b48d51bcfcf52ac49aa29cd4b17aa00be109198347a50229b81fbe506d831ace753d72f3b4bb80f19e8e57fa29d9ba65da472f19 WHIRLPOOL 8145930a1dcadbcf48c1da0dcba10a45f3d52c8ae2565aee7e609bd3eeb5eead9cee9ef423332a580ab77ceabb2f301917226d1a73e1b7f6efc7a3096c4112d6

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild
deleted file mode 100644
index 647990b..0000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.0-r3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +camlp4 +lwt"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	camlp4? ( dev-ml/camlp4:= )
-	lwt? ( dev-ml/lwt:= )
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable camlp4)
-		$(use_enable async)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2016-02-05 20:59 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2016-02-05 20:59 UTC (permalink / raw
  To: gentoo-commits

commit:     1484d9bb0a5b9e55c32581fb0e0430383d4fa082
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  5 20:55:46 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 20:59:02 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1484d9bb

dev-ml/ocaml-cstruct: restrict sexplib dep, based on opam dep

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

 dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild
index 647990b..118537c 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.7.1.ebuild
@@ -24,6 +24,7 @@ RDEPEND="
 	>=dev-lang/ocaml-4.01:=
 	dev-ml/ocplib-endian:=
 	dev-ml/sexplib:=
+	<dev-ml/sexplib-113.01.00
 	dev-ml/type-conv:=
 "
 DEPEND="


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

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

commit:     d9b58726feb7b26d14720111e79e8ec0d8c40f25
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 10:13:27 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 10:13:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b58726

dev-ml/ocaml-cstruct: bump to 1.8.0

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

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/metadata.xml               |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-1.8.0.ebuild | 45 +++++++++++++++++++++++++
 3 files changed, 47 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 6094099..38ea71f 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b28b6c10f4174b7e2cfdfa46956eaaa5 SHA512 67dd276ab2f895ef80cc7ba5b48d51bcfcf52ac49aa29cd4b17aa00be109198347a50229b81fbe506d831ace753d72f3b4bb80f19e8e57fa29d9ba65da472f19 WHIRLPOOL 8145930a1dcadbcf48c1da0dcba10a45f3d52c8ae2565aee7e609bd3eeb5eead9cee9ef423332a580ab77ceabb2f301917226d1a73e1b7f6efc7a3096c4112d6
+DIST ocaml-cstruct-1.8.0.tar.gz 250696 SHA256 e1635072283ae5db7889966ce92e916749bcd192012a0c46285827beba1263d7 SHA512 38ea6301b48603f8b63c73a7aa42312d25bbd16fb8524e1de2b69a54e45e9e1c1326201e19fcf2953d2719607139c903d76296a32fb7058998c079ac112adc9c WHIRLPOOL 6fdabfc1143331662757826de11c62c3947fb59155ba68e866a2f9939963deacd52d5832417997833deff9a9ff902675d266a98b41e0d2cf9f29c4d4c628601e

diff --git a/dev-ml/ocaml-cstruct/metadata.xml b/dev-ml/ocaml-cstruct/metadata.xml
index 2e93b18..fd614da 100644
--- a/dev-ml/ocaml-cstruct/metadata.xml
+++ b/dev-ml/ocaml-cstruct/metadata.xml
@@ -16,6 +16,7 @@
         <flag name="async">Support for asynchronous execution</flag>
         <flag name="camlp4">Enable support for camlp4</flag>
         <flag name="lwt">Enable threads via lwt</flag>
+		<flag name="ppx">Enable the ppx syntax extension</flag>
     </use>
     <upstream>
         <remote-id type="github">mirage/ocaml-cstruct</remote-id>

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.8.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.8.0.ebuild
new file mode 100644
index 0000000..0589e77
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.8.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +camlp4 +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	camlp4? ( dev-ml/camlp4:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable camlp4)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2016-02-10 10:32 Ian Delaney
  0 siblings, 0 replies; 37+ messages in thread
From: Ian Delaney @ 2016-02-10 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     a7a251c00fb479d0d31575244d8d517f110d49c8
Author:     Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Wed Feb 10 09:37:19 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 09:37:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a251c0

dev-ml/ocaml-cstruct: update metadata.xml to contain a name-tag for tomboy64 <AT> sina.cn

Package-Manager: portage-2.2.26
RepoMan-Options: --ignore-arches

 dev-ml/ocaml-cstruct/metadata.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/metadata.xml b/dev-ml/ocaml-cstruct/metadata.xml
index 2e93b18..233eea7 100644
--- a/dev-ml/ocaml-cstruct/metadata.xml
+++ b/dev-ml/ocaml-cstruct/metadata.xml
@@ -3,6 +3,8 @@
 <pkgmetadata>
     <maintainer type="person">
         <email>tomboy64@sina.cn</email>
+        <name>M.B.</name>
+        <description>Maintainer, assign bugs to him</description>
     </maintainer>
     <maintainer type="project">
         <email>ml@gentoo.org</email>


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

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

commit:     5d42443247ccf8b4990cebaaf22e6ac5f70cf68b
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 10:16:25 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 10:22:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d424432

dev-ml/ocaml-cstruct: bump to 1.9.0

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

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-1.9.0.ebuild | 45 +++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 38ea71f..104f53a 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1,3 @@
 DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b28b6c10f4174b7e2cfdfa46956eaaa5 SHA512 67dd276ab2f895ef80cc7ba5b48d51bcfcf52ac49aa29cd4b17aa00be109198347a50229b81fbe506d831ace753d72f3b4bb80f19e8e57fa29d9ba65da472f19 WHIRLPOOL 8145930a1dcadbcf48c1da0dcba10a45f3d52c8ae2565aee7e609bd3eeb5eead9cee9ef423332a580ab77ceabb2f301917226d1a73e1b7f6efc7a3096c4112d6
 DIST ocaml-cstruct-1.8.0.tar.gz 250696 SHA256 e1635072283ae5db7889966ce92e916749bcd192012a0c46285827beba1263d7 SHA512 38ea6301b48603f8b63c73a7aa42312d25bbd16fb8524e1de2b69a54e45e9e1c1326201e19fcf2953d2719607139c903d76296a32fb7058998c079ac112adc9c WHIRLPOOL 6fdabfc1143331662757826de11c62c3947fb59155ba68e866a2f9939963deacd52d5832417997833deff9a9ff902675d266a98b41e0d2cf9f29c4d4c628601e
+DIST ocaml-cstruct-1.9.0.tar.gz 254162 SHA256 2d175bf1e2cdc5ca43cb30bd3fa507beee2f18b2cbecae801ab6ffaecde16c9c SHA512 fad3788c0888599a3171d4062b9d9f4c539c0cbb1d8b6d4f6be2f3456ffe235444def4e619a94ca75336cf555b5133e6e60edc07a03dc0abdd772acf9371b666 WHIRLPOOL 99984c32625d9dbf452a7191f4103228bedbd7eee23bfb1eee7834022a023dee1582fca9704fcbe09ed37424ca7d684c482426d3b30b5f1dc66cc55b78769532

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-1.9.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.9.0.ebuild
new file mode 100644
index 0000000..0589e77
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-1.9.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +camlp4 +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	camlp4? ( dev-ml/camlp4:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable camlp4)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

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

commit:     83a1ddd9219bc2245b2c510607e13b0451f39f14
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun May  1 17:13:27 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May  3 09:13:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83a1ddd9

dev-ml/ocaml-cstruct: bump to 2.0.0

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

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild | 43 +++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 104f53a..c9d402c 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,3 +1,4 @@
 DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b28b6c10f4174b7e2cfdfa46956eaaa5 SHA512 67dd276ab2f895ef80cc7ba5b48d51bcfcf52ac49aa29cd4b17aa00be109198347a50229b81fbe506d831ace753d72f3b4bb80f19e8e57fa29d9ba65da472f19 WHIRLPOOL 8145930a1dcadbcf48c1da0dcba10a45f3d52c8ae2565aee7e609bd3eeb5eead9cee9ef423332a580ab77ceabb2f301917226d1a73e1b7f6efc7a3096c4112d6
 DIST ocaml-cstruct-1.8.0.tar.gz 250696 SHA256 e1635072283ae5db7889966ce92e916749bcd192012a0c46285827beba1263d7 SHA512 38ea6301b48603f8b63c73a7aa42312d25bbd16fb8524e1de2b69a54e45e9e1c1326201e19fcf2953d2719607139c903d76296a32fb7058998c079ac112adc9c WHIRLPOOL 6fdabfc1143331662757826de11c62c3947fb59155ba68e866a2f9939963deacd52d5832417997833deff9a9ff902675d266a98b41e0d2cf9f29c4d4c628601e
 DIST ocaml-cstruct-1.9.0.tar.gz 254162 SHA256 2d175bf1e2cdc5ca43cb30bd3fa507beee2f18b2cbecae801ab6ffaecde16c9c SHA512 fad3788c0888599a3171d4062b9d9f4c539c0cbb1d8b6d4f6be2f3456ffe235444def4e619a94ca75336cf555b5133e6e60edc07a03dc0abdd772acf9371b666 WHIRLPOOL 99984c32625d9dbf452a7191f4103228bedbd7eee23bfb1eee7834022a023dee1582fca9704fcbe09ed37424ca7d684c482426d3b30b5f1dc66cc55b78769532
+DIST ocaml-cstruct-2.0.0.tar.gz 250245 SHA256 285341c6b5bdfc456f2b63c072210771aeb7110d777bbdaec5087234a505acf5 SHA512 4fc1f09824bf943c45a2afe8908d80fb3d9857f5e9f426479520713c92c04eac588a38fbf036352a17e787165476a7a5647f34df9c89f6c93a195f80ae11c3dd WHIRLPOOL ef8c3770ed73323c292152b5b29b8b0737158b84f0f738ac0841257e07d787edf5e0c7c55c0d5630c7f44fcd878d00585e320b12d9ece22a98a906cc7e86c08c

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild
new file mode 100644
index 0000000..7c5d31d
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

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

commit:     7a65def575aea9ebe28beb37929eff4f6afba181
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri May  6 13:20:50 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri May  6 13:26:04 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a65def5

dev-ml/ocaml-cstruct: bump to 2.1.0

Package-Manager: portage-2.2.28

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild | 43 +++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index c9d402c..f41d8c4 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -2,3 +2,4 @@ DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b2
 DIST ocaml-cstruct-1.8.0.tar.gz 250696 SHA256 e1635072283ae5db7889966ce92e916749bcd192012a0c46285827beba1263d7 SHA512 38ea6301b48603f8b63c73a7aa42312d25bbd16fb8524e1de2b69a54e45e9e1c1326201e19fcf2953d2719607139c903d76296a32fb7058998c079ac112adc9c WHIRLPOOL 6fdabfc1143331662757826de11c62c3947fb59155ba68e866a2f9939963deacd52d5832417997833deff9a9ff902675d266a98b41e0d2cf9f29c4d4c628601e
 DIST ocaml-cstruct-1.9.0.tar.gz 254162 SHA256 2d175bf1e2cdc5ca43cb30bd3fa507beee2f18b2cbecae801ab6ffaecde16c9c SHA512 fad3788c0888599a3171d4062b9d9f4c539c0cbb1d8b6d4f6be2f3456ffe235444def4e619a94ca75336cf555b5133e6e60edc07a03dc0abdd772acf9371b666 WHIRLPOOL 99984c32625d9dbf452a7191f4103228bedbd7eee23bfb1eee7834022a023dee1582fca9704fcbe09ed37424ca7d684c482426d3b30b5f1dc66cc55b78769532
 DIST ocaml-cstruct-2.0.0.tar.gz 250245 SHA256 285341c6b5bdfc456f2b63c072210771aeb7110d777bbdaec5087234a505acf5 SHA512 4fc1f09824bf943c45a2afe8908d80fb3d9857f5e9f426479520713c92c04eac588a38fbf036352a17e787165476a7a5647f34df9c89f6c93a195f80ae11c3dd WHIRLPOOL ef8c3770ed73323c292152b5b29b8b0737158b84f0f738ac0841257e07d787edf5e0c7c55c0d5630c7f44fcd878d00585e320b12d9ece22a98a906cc7e86c08c
+DIST ocaml-cstruct-2.1.0.tar.gz 251162 SHA256 fab6525753af5f726810b321a97b8a0b226bf0318a3ed594e2ed93f2f293c9a1 SHA512 129650ec17d8c96d6e68fc6a814e2b44cecc6fc69dfd5327c48d842447caf172c36112ef4fe0fa85c7391172ba72e2f2d3c119f44075cf1240a89134830ec428 WHIRLPOOL 4daf175682710cc0b102858df5b66c8cc14caf0ab35d4d8430324ed65bcaab9d951f391bdb3c39c5b6edfca4fac50300f4c394a3adbae43269a31abf04955661

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild
new file mode 100644
index 0000000..7c5d31d
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

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

commit:     488c59ca271daeb86c84eaa6b6abcd1ea1d40afb
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  1 11:00:48 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Jul  1 13:22:45 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488c59ca

dev-ml/ocaml-cstruct: bump to 2.2.0

Package-Manager: portage-2.3.0

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild | 43 +++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 9c06844..b012b76 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-2.1.0.tar.gz 251162 SHA256 fab6525753af5f726810b321a97b8a0b226bf0318a3ed594e2ed93f2f293c9a1 SHA512 129650ec17d8c96d6e68fc6a814e2b44cecc6fc69dfd5327c48d842447caf172c36112ef4fe0fa85c7391172ba72e2f2d3c119f44075cf1240a89134830ec428 WHIRLPOOL 4daf175682710cc0b102858df5b66c8cc14caf0ab35d4d8430324ed65bcaab9d951f391bdb3c39c5b6edfca4fac50300f4c394a3adbae43269a31abf04955661
+DIST ocaml-cstruct-2.2.0.tar.gz 251257 SHA256 9d605469131a8a704d123dbedff7dc7f68ccb7e28e76ddafda745017e58217e1 SHA512 4aee07f2e0c6490eef564eff194fc3a9563b1e6020b2903bed3c18b46c6698f7593ab0e6f893d3f0781510a4a2e8a6bdac379db497d469d7d34b94b2047dfed8 WHIRLPOOL 4a2dd17d739509e7afd4871f788292d1abba19fcdfa1cec4f8a6d4675e9eeef4f2de0d6256d965ed988c27255e495570f3326b9b144ea132f376e83c60b679e0

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild
new file mode 100644
index 0000000..ec1f10a
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2016-08-18 11:02 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2016-08-18 11:02 UTC (permalink / raw
  To: gentoo-commits

commit:     265fe0042cff96226d486ccf3ed5c04f944c2840
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 11:02:39 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 11:02:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=265fe004

dev-ml/ocaml-cstruct: bump to 2.3.0

Package-Manager: portage-2.3.0

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild | 43 +++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index b012b76..57292dc 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1,3 @@
 DIST ocaml-cstruct-2.1.0.tar.gz 251162 SHA256 fab6525753af5f726810b321a97b8a0b226bf0318a3ed594e2ed93f2f293c9a1 SHA512 129650ec17d8c96d6e68fc6a814e2b44cecc6fc69dfd5327c48d842447caf172c36112ef4fe0fa85c7391172ba72e2f2d3c119f44075cf1240a89134830ec428 WHIRLPOOL 4daf175682710cc0b102858df5b66c8cc14caf0ab35d4d8430324ed65bcaab9d951f391bdb3c39c5b6edfca4fac50300f4c394a3adbae43269a31abf04955661
 DIST ocaml-cstruct-2.2.0.tar.gz 251257 SHA256 9d605469131a8a704d123dbedff7dc7f68ccb7e28e76ddafda745017e58217e1 SHA512 4aee07f2e0c6490eef564eff194fc3a9563b1e6020b2903bed3c18b46c6698f7593ab0e6f893d3f0781510a4a2e8a6bdac379db497d469d7d34b94b2047dfed8 WHIRLPOOL 4a2dd17d739509e7afd4871f788292d1abba19fcdfa1cec4f8a6d4675e9eeef4f2de0d6256d965ed988c27255e495570f3326b9b144ea132f376e83c60b679e0
+DIST ocaml-cstruct-2.3.0.tar.gz 253518 SHA256 8b802e70c85879cd3b9bd4211d8c01e63f4dd4ac30288bd92d7a24d6c88b62eb SHA512 dc1927f20f35c823960be1e3cc6214304d72f2bda6a50b5fbc4f321eb0ab99bc8d1569421e74c249a915d2829f9c8dda171d7426c0b5526189db724ea5e59f72 WHIRLPOOL 3380c660012aae58996f574aff7d31eb461e92b78b4b4ab72111fc40d8bbbf258d6d776431304854542f00dc9127845dd297ec9fbca293dfaf04b334a0d68627

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild
new file mode 100644
index 0000000..ec1f10a
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2016-12-13  8:16 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2016-12-13  8:16 UTC (permalink / raw
  To: gentoo-commits

commit:     5b2408a674c27546057849d9237469e8e24010a2
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 12 20:26:56 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Dec 13 08:15:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b2408a6

dev-ml/ocaml-cstruct: bump to 2.3.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild | 43 +++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index f0f4c80..8b43aae 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-2.3.0.tar.gz 253518 SHA256 8b802e70c85879cd3b9bd4211d8c01e63f4dd4ac30288bd92d7a24d6c88b62eb SHA512 dc1927f20f35c823960be1e3cc6214304d72f2bda6a50b5fbc4f321eb0ab99bc8d1569421e74c249a915d2829f9c8dda171d7426c0b5526189db724ea5e59f72 WHIRLPOOL 3380c660012aae58996f574aff7d31eb461e92b78b4b4ab72111fc40d8bbbf258d6d776431304854542f00dc9127845dd297ec9fbca293dfaf04b334a0d68627
+DIST ocaml-cstruct-2.3.1.tar.gz 259266 SHA256 89a4f363547026de195fd84d9e842844ed6bbf4c5ab57c2fc1500741106b1797 SHA512 7dfb080f4d6f1685719ed31edd69cb5f4e484d42b28e0340dace8dd9a4742342957b67de0b10f0c4f4ccab7a80b13ddc3a26d2401cffdd232dc9581dba1da2ff WHIRLPOOL 6c41df0677217f45f13a03686e4a025da8f9edadccb5a27659cc1349bbae2f324a07d68e056f7078e4f4336d357c5558f262d0c6f4813017db0325e2b304b06e

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild
new file mode 100644
index 00000000..ec1f10a
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2016-12-13  8:16 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2016-12-13  8:16 UTC (permalink / raw
  To: gentoo-commits

commit:     eb783a777944807d83d85ca53f13113c35fb6904
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 12 20:26:07 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Dec 13 08:15:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb783a77

dev-ml/ocaml-cstruct: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ml/ocaml-cstruct/Manifest                   |  2 --
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild | 43 -------------------------
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild | 43 -------------------------
 3 files changed, 88 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 57292dc..f0f4c80 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,3 +1 @@
-DIST ocaml-cstruct-2.1.0.tar.gz 251162 SHA256 fab6525753af5f726810b321a97b8a0b226bf0318a3ed594e2ed93f2f293c9a1 SHA512 129650ec17d8c96d6e68fc6a814e2b44cecc6fc69dfd5327c48d842447caf172c36112ef4fe0fa85c7391172ba72e2f2d3c119f44075cf1240a89134830ec428 WHIRLPOOL 4daf175682710cc0b102858df5b66c8cc14caf0ab35d4d8430324ed65bcaab9d951f391bdb3c39c5b6edfca4fac50300f4c394a3adbae43269a31abf04955661
-DIST ocaml-cstruct-2.2.0.tar.gz 251257 SHA256 9d605469131a8a704d123dbedff7dc7f68ccb7e28e76ddafda745017e58217e1 SHA512 4aee07f2e0c6490eef564eff194fc3a9563b1e6020b2903bed3c18b46c6698f7593ab0e6f893d3f0781510a4a2e8a6bdac379db497d469d7d34b94b2047dfed8 WHIRLPOOL 4a2dd17d739509e7afd4871f788292d1abba19fcdfa1cec4f8a6d4675e9eeef4f2de0d6256d965ed988c27255e495570f3326b9b144ea132f376e83c60b679e0
 DIST ocaml-cstruct-2.3.0.tar.gz 253518 SHA256 8b802e70c85879cd3b9bd4211d8c01e63f4dd4ac30288bd92d7a24d6c88b62eb SHA512 dc1927f20f35c823960be1e3cc6214304d72f2bda6a50b5fbc4f321eb0ab99bc8d1569421e74c249a915d2829f9c8dda171d7426c0b5526189db724ea5e59f72 WHIRLPOOL 3380c660012aae58996f574aff7d31eb461e92b78b4b4ab72111fc40d8bbbf258d6d776431304854542f00dc9127845dd297ec9fbca293dfaf04b334a0d68627

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild
deleted file mode 100644
index 7c5d31d..00000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? ( dev-ml/ppx_tools:= )
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild
deleted file mode 100644
index ec1f10a..00000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? ( dev-ml/ppx_tools:= )
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )


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

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

commit:     8331bb0b5b4756dffec11cd78daf59906b44e3aa
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 24 11:11:08 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jan 24 11:14:16 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8331bb0b

dev-ml/ocaml-cstruct: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ml/ocaml-cstruct/Manifest                   |  1 -
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild | 43 -------------------------
 2 files changed, 44 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 8b43aae..23fdfee 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1 @@
-DIST ocaml-cstruct-2.3.0.tar.gz 253518 SHA256 8b802e70c85879cd3b9bd4211d8c01e63f4dd4ac30288bd92d7a24d6c88b62eb SHA512 dc1927f20f35c823960be1e3cc6214304d72f2bda6a50b5fbc4f321eb0ab99bc8d1569421e74c249a915d2829f9c8dda171d7426c0b5526189db724ea5e59f72 WHIRLPOOL 3380c660012aae58996f574aff7d31eb461e92b78b4b4ab72111fc40d8bbbf258d6d776431304854542f00dc9127845dd297ec9fbca293dfaf04b334a0d68627
 DIST ocaml-cstruct-2.3.1.tar.gz 259266 SHA256 89a4f363547026de195fd84d9e842844ed6bbf4c5ab57c2fc1500741106b1797 SHA512 7dfb080f4d6f1685719ed31edd69cb5f4e484d42b28e0340dace8dd9a4742342957b67de0b10f0c4f4ccab7a80b13ddc3a26d2401cffdd232dc9581dba1da2ff WHIRLPOOL 6c41df0677217f45f13a03686e4a025da8f9edadccb5a27659cc1349bbae2f324a07d68e056f7078e4f4336d357c5558f262d0c6f4813017db0325e2b304b06e

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild
deleted file mode 100644
index ec1f10a..00000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? ( dev-ml/ppx_tools:= )
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )


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

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

commit:     181a9b62842dfbc289d66659f3c666edd09b115d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  6 07:12:58 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Mar  6 07:17:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181a9b62

dev-ml/ocaml-cstruct: Bump to 2.3.2

Package-Manager: Portage-2.3.4, Repoman-2.3.2

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

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 23fdfee646c..867b857168c 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-2.3.1.tar.gz 259266 SHA256 89a4f363547026de195fd84d9e842844ed6bbf4c5ab57c2fc1500741106b1797 SHA512 7dfb080f4d6f1685719ed31edd69cb5f4e484d42b28e0340dace8dd9a4742342957b67de0b10f0c4f4ccab7a80b13ddc3a26d2401cffdd232dc9581dba1da2ff WHIRLPOOL 6c41df0677217f45f13a03686e4a025da8f9edadccb5a27659cc1349bbae2f324a07d68e056f7078e4f4336d357c5558f262d0c6f4813017db0325e2b304b06e
+DIST ocaml-cstruct-2.3.2.tar.gz 259424 SHA256 16c619be7644c30227a617cea8be509460b36a6a4c8f2b45a56fec75113570e0 SHA512 7f88c37729869fbfe39c28be4c56c49ba225da7f7d4df2f962a730be2a9c70bb6099713f83e4aa53e77ac7752c415427e86d95a42abcb6c280a79ae9931cdeee WHIRLPOOL 68b1e8fd892e1c54383de00becfb6e4807e222b6a0f6e11af3bce0b2d74c988647b0a093bc827ce4a9e63a93375040f0d7366df942cf8168e193ab436eb2fdb2

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.ebuild
new file mode 100644
index 00000000000..250f63303d4
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? ( dev-ml/ppx_tools:= )
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

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

commit:     edc1bf6e856e653214a514fac4405bb6e4a03554
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  1 11:01:15 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Apr  1 12:24:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc1bf6e

dev-ml/ocaml-cstruct: Bump to 2.4.0

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild | 46 +++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 867b857168c..721f599d172 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1,3 @@
 DIST ocaml-cstruct-2.3.1.tar.gz 259266 SHA256 89a4f363547026de195fd84d9e842844ed6bbf4c5ab57c2fc1500741106b1797 SHA512 7dfb080f4d6f1685719ed31edd69cb5f4e484d42b28e0340dace8dd9a4742342957b67de0b10f0c4f4ccab7a80b13ddc3a26d2401cffdd232dc9581dba1da2ff WHIRLPOOL 6c41df0677217f45f13a03686e4a025da8f9edadccb5a27659cc1349bbae2f324a07d68e056f7078e4f4336d357c5558f262d0c6f4813017db0325e2b304b06e
 DIST ocaml-cstruct-2.3.2.tar.gz 259424 SHA256 16c619be7644c30227a617cea8be509460b36a6a4c8f2b45a56fec75113570e0 SHA512 7f88c37729869fbfe39c28be4c56c49ba225da7f7d4df2f962a730be2a9c70bb6099713f83e4aa53e77ac7752c415427e86d95a42abcb6c280a79ae9931cdeee WHIRLPOOL 68b1e8fd892e1c54383de00becfb6e4807e222b6a0f6e11af3bce0b2d74c988647b0a093bc827ce4a9e63a93375040f0d7366df942cf8168e193ab436eb2fdb2
+DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild
new file mode 100644
index 00000000000..36676e8a668
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		dev-ml/ppx_tools_versioned:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-04-27 10:54 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-04-27 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     034b48c1e3419a5646344da313cb14519ae0ae5c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 27 10:53:51 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Apr 27 10:53:58 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=034b48c1

dev-ml/ocaml-cstruct: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  2 --
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild | 42 -------------------------
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.ebuild | 42 -------------------------
 3 files changed, 86 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 721f599d172..234b05db7c1 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,3 +1 @@
-DIST ocaml-cstruct-2.3.1.tar.gz 259266 SHA256 89a4f363547026de195fd84d9e842844ed6bbf4c5ab57c2fc1500741106b1797 SHA512 7dfb080f4d6f1685719ed31edd69cb5f4e484d42b28e0340dace8dd9a4742342957b67de0b10f0c4f4ccab7a80b13ddc3a26d2401cffdd232dc9581dba1da2ff WHIRLPOOL 6c41df0677217f45f13a03686e4a025da8f9edadccb5a27659cc1349bbae2f324a07d68e056f7078e4f4336d357c5558f262d0c6f4813017db0325e2b304b06e
-DIST ocaml-cstruct-2.3.2.tar.gz 259424 SHA256 16c619be7644c30227a617cea8be509460b36a6a4c8f2b45a56fec75113570e0 SHA512 7f88c37729869fbfe39c28be4c56c49ba225da7f7d4df2f962a730be2a9c70bb6099713f83e4aa53e77ac7752c415427e86d95a42abcb6c280a79ae9931cdeee WHIRLPOOL 68b1e8fd892e1c54383de00becfb6e4807e222b6a0f6e11af3bce0b2d74c988647b0a093bc827ce4a9e63a93375040f0d7366df942cf8168e193ab436eb2fdb2
 DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild
deleted file mode 100644
index c7446c406e5..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? ( dev-ml/ppx_tools:= )
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.ebuild
deleted file mode 100644
index 250f63303d4..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.3.2.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
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? ( dev-ml/ppx_tools:= )
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )


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

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

commit:     5925fa84c3ec3cc95053b33db836d91357b5ba0c
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 18:03:41 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu May  4 09:12:38 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5925fa84

dev-ml/ocaml-cstruct: bump to 2.4.1

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild | 46 +++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 234b05db7c1..3bd8844ee87 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664
+DIST ocaml-cstruct-2.4.1.tar.gz 259399 SHA256 f3c1600e85eb93a58c052e2e9575b48d4dd02784d9b2615dadf861860afa1ee7 SHA512 30c541e50dc221d3d8df54f9a8dfa1f88b10f49b276779f7355a38effdfe048de0300bfcc7e361715f63b696d42bd11aa120df6b4058d3b24962777e91b1633e WHIRLPOOL 40d1fcf4674ee47595f14583f964850b4e2b8747f788efb947994ae5b59e12115c381afa7ccc269b408df2b0eed1e02967e83a6fa256aca8926401e6b3e0ed75

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild
new file mode 100644
index 00000000000..36676e8a668
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+OASIS_BUILD_DOCS=1
+OASIS_BUILD_TESTS=1
+
+inherit oasis
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		dev-ml/ppx_tools_versioned:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+src_configure() {
+	oasis_configure_opts="
+		$(use_enable lwt)
+		$(use_enable async)
+		$(use_enable ppx)
+		--enable-unix
+	" oasis_src_configure
+}
+
+DOCS=( CHANGES README.md TODO.md )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-06-08 17:53 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-06-08 17:53 UTC (permalink / raw
  To: gentoo-commits

commit:     aa40c7fc15262b01dd3bf72b81d27830aef304d2
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  8 16:25:41 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jun  8 16:49:50 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa40c7fc

dev-ml/ocaml-cstruct: bump to 3.0.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0.ebuild | 51 +++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 3bd8844ee87..7ba539a0744 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1,3 @@
 DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664
 DIST ocaml-cstruct-2.4.1.tar.gz 259399 SHA256 f3c1600e85eb93a58c052e2e9575b48d4dd02784d9b2615dadf861860afa1ee7 SHA512 30c541e50dc221d3d8df54f9a8dfa1f88b10f49b276779f7355a38effdfe048de0300bfcc7e361715f63b696d42bd11aa120df6b4058d3b24962777e91b1633e WHIRLPOOL 40d1fcf4674ee47595f14583f964850b4e2b8747f788efb947994ae5b59e12115c381afa7ccc269b408df2b0eed1e02967e83a6fa256aca8926401e6b3e0ed75
+DIST ocaml-cstruct-3.0.0.tar.gz 205057 SHA256 65c1b34a71029e52f440831daa8ab97bc4c1502714cf553fbd114726a18b8631 SHA512 7cb55ac6e876a6401463bbad452a1e58e959044b77b5e684bb340559817ebe1d5e632a7e95e16304e85b1db4032279a65e5d8da43a9d165a2e93ecaf2a6301d7 WHIRLPOOL 50756f9c777e7c62e2b8af450a1023a7fc0c5398d351eafe0e26a75a6159038190c2a6161b9fff7fcb4d82a17ab9ec9728ab4686ad146ee583693361208693f3

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0.ebuild
new file mode 100644
index 00000000000..706a1c75b2b
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx test"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		dev-ml/ppx_tools_versioned:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+oinstall() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		${1}.install || die
+}
+
+src_install() {
+	oinstall cstruct
+	oinstall cstruct-unix
+	use lwt && oinstall cstruct-lwt
+	use async && oinstall cstruct-async
+	use ppx && oinstall ppx_cstruct
+}


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

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

commit:     d874edd6e159e98d51b5d18b4971b9a01116ec25
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 10 10:20:11 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Jun 10 10:20:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d874edd6

dev-ml/ocaml-cstruct: fix manifest, bug #621380

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                                           | 2 +-
 .../{ocaml-cstruct-3.0.0.ebuild => ocaml-cstruct-3.0.0-r1.ebuild}       | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 7ba539a0744..2199b1622cd 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,3 +1,3 @@
 DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664
 DIST ocaml-cstruct-2.4.1.tar.gz 259399 SHA256 f3c1600e85eb93a58c052e2e9575b48d4dd02784d9b2615dadf861860afa1ee7 SHA512 30c541e50dc221d3d8df54f9a8dfa1f88b10f49b276779f7355a38effdfe048de0300bfcc7e361715f63b696d42bd11aa120df6b4058d3b24962777e91b1633e WHIRLPOOL 40d1fcf4674ee47595f14583f964850b4e2b8747f788efb947994ae5b59e12115c381afa7ccc269b408df2b0eed1e02967e83a6fa256aca8926401e6b3e0ed75
-DIST ocaml-cstruct-3.0.0.tar.gz 205057 SHA256 65c1b34a71029e52f440831daa8ab97bc4c1502714cf553fbd114726a18b8631 SHA512 7cb55ac6e876a6401463bbad452a1e58e959044b77b5e684bb340559817ebe1d5e632a7e95e16304e85b1db4032279a65e5d8da43a9d165a2e93ecaf2a6301d7 WHIRLPOOL 50756f9c777e7c62e2b8af450a1023a7fc0c5398d351eafe0e26a75a6159038190c2a6161b9fff7fcb4d82a17ab9ec9728ab4686ad146ee583693361208693f3
+DIST ocaml-cstruct-3.0.0.tar.gz 205070 SHA256 b420548a2e286dc9a8c8aed7fd142879b97177a76ad69c6e237df2bb5368a69b SHA512 9b080801e7d714412f4c4e417a90df5e412a69ed7a5c88e83f4212e287bf5687b0585a2f9f6849f254322a0c5d0ed98fba2ebe1b19a5c9d198435efe2a7f38a0 WHIRLPOOL 564332813d55284f6ca84b4d8bd1d93dc0484a21b052c4009162b3c4be5fc104c3c15b9e4f7ed467226cacfe8bbf70d5f827c335a165d6c68fd3946e073b91a7

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild
similarity index 100%
rename from dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0.ebuild
rename to dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild


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

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

commit:     7e0c1ce8393379da7d15c78614f61d41b2078b58
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 11 11:19:17 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Jun 11 11:19:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e0c1ce8

dev-ml/ocaml-cstruct: bump ppx_tools_verisoned min req. Bug #621412

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild
index 706a1c75b2b..1c5b40081f2 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild
@@ -20,7 +20,7 @@ RDEPEND="
 	ppx? (
 		dev-ml/ppx_tools:=
 		dev-ml/ocaml-migrate-parsetree:=
-		dev-ml/ppx_tools_versioned:=
+		>=dev-ml/ppx_tools_versioned-5.0.1:=
 	)
 	>=dev-lang/ocaml-4.01:=
 	dev-ml/ocplib-endian:=


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-06-12  5:46 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-06-12  5:46 UTC (permalink / raw
  To: gentoo-commits

commit:     3d64e6504d59d6e32d256deb5c2300a7b3e3c3d6
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 12 04:57:10 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jun 12 05:46:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d64e650

dev-ml/ocaml-cstruct: bump to 3.0.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild | 51 +++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 2199b1622cd..011727523f1 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,3 +1,4 @@
 DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664
 DIST ocaml-cstruct-2.4.1.tar.gz 259399 SHA256 f3c1600e85eb93a58c052e2e9575b48d4dd02784d9b2615dadf861860afa1ee7 SHA512 30c541e50dc221d3d8df54f9a8dfa1f88b10f49b276779f7355a38effdfe048de0300bfcc7e361715f63b696d42bd11aa120df6b4058d3b24962777e91b1633e WHIRLPOOL 40d1fcf4674ee47595f14583f964850b4e2b8747f788efb947994ae5b59e12115c381afa7ccc269b408df2b0eed1e02967e83a6fa256aca8926401e6b3e0ed75
 DIST ocaml-cstruct-3.0.0.tar.gz 205070 SHA256 b420548a2e286dc9a8c8aed7fd142879b97177a76ad69c6e237df2bb5368a69b SHA512 9b080801e7d714412f4c4e417a90df5e412a69ed7a5c88e83f4212e287bf5687b0585a2f9f6849f254322a0c5d0ed98fba2ebe1b19a5c9d198435efe2a7f38a0 WHIRLPOOL 564332813d55284f6ca84b4d8bd1d93dc0484a21b052c4009162b3c4be5fc104c3c15b9e4f7ed467226cacfe8bbf70d5f827c335a165d6c68fd3946e073b91a7
+DIST ocaml-cstruct-3.0.1.tar.gz 205663 SHA256 1e1c731c8970a82f5947ab0ee73ec2d160df3cd0f5e752a25c2689448e13a7e2 SHA512 355f97f1b3a6e7812b9210e348e4544e0ae6f01bef6536808cdcfe32153f9e3b711d1e869990cbd0205d433a51c7463c10f410b59aae33c32dab7f35f5413c27 WHIRLPOOL 54daaf26d0882fd7c782102c0fb84f683497a6acfee04649e19b9c5c330d24192e710fcbf8dede9b5128474fa314109a87894d99b6f44349dbbca52a68f7a10b

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild
new file mode 100644
index 00000000000..1c5b40081f2
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx test"
+
+RDEPEND="
+	async? ( dev-ml/async:= )
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		>=dev-ml/ppx_tools_versioned-5.0.1:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+oinstall() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		${1}.install || die
+}
+
+src_install() {
+	oinstall cstruct
+	oinstall cstruct-unix
+	use lwt && oinstall cstruct-lwt
+	use async && oinstall cstruct-async
+	use ppx && oinstall ppx_cstruct
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-06-15 21:56 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-06-15 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     6d4d849911148ee9a0b22877f29c6540ccaa2f60
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 15:51:51 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 21:56:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d4d8499

dev-ml/ocaml-cstruct: bump to 3.0.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild | 55 +++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 2e3a6081085..8476b9ebf6e 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-3.0.1.tar.gz 205663 SHA256 1e1c731c8970a82f5947ab0ee73ec2d160df3cd0f5e752a25c2689448e13a7e2 SHA512 355f97f1b3a6e7812b9210e348e4544e0ae6f01bef6536808cdcfe32153f9e3b711d1e869990cbd0205d433a51c7463c10f410b59aae33c32dab7f35f5413c27 WHIRLPOOL 54daaf26d0882fd7c782102c0fb84f683497a6acfee04649e19b9c5c330d24192e710fcbf8dede9b5128474fa314109a87894d99b6f44349dbbca52a68f7a10b
+DIST ocaml-cstruct-3.0.2.tar.gz 205713 SHA256 86dc71140eae007c540cec982211ef48ec776232f2b23dd0b639e0e82099d60b SHA512 041ff15c102036f1162a870534e4bf83477f988344cbf420d21cf589100ba8f2fa2ae5c7de7c16ef36e88a10d6bfac43f3a63c929b6d6d90ae12ad0027d1c76d WHIRLPOOL a249e394c868f916ec243e702bf3eed38fdb2a7f60649b3d1be46bbc1308b4c9a3ac9e5d58ca35726f5fa3320d1773952a8105c34725345854da6837c38c2ff2

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
new file mode 100644
index 00000000000..388db7e2542
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx test"
+
+RDEPEND="
+	async? (
+		dev-ml/async_kernel:=
+		dev-ml/async_unix:=
+		dev-ml/core_kernel:=
+	)
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		>=dev-ml/ppx_tools_versioned-5.0.1:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+oinstall() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		${1}.install || die
+}
+
+src_install() {
+	oinstall cstruct
+	oinstall cstruct-unix
+	use lwt && oinstall cstruct-lwt
+	use async && oinstall cstruct-async
+	use ppx && oinstall ppx_cstruct
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-06-15 21:56 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-06-15 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     a16f75c453130c9131d2d1f4ed13eb6763ded06d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 15 15:48:36 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jun 15 21:56:24 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a16f75c4

dev-ml/ocaml-cstruct: remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                      |  3 --
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild    | 46 -------------------
 dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild    | 46 -------------------
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild | 51 ----------------------
 4 files changed, 146 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 011727523f1..2e3a6081085 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,4 +1 @@
-DIST ocaml-cstruct-2.4.0.tar.gz 259372 SHA256 a3e19e6a57204a5172c9ed0abd5153d85925b2d32f5ae51a53868a287be647fb SHA512 c37d16605f929aeeda33166183dcbe6b8e367583a8b25fde1bb5a4f9141a11f93e6f5463a500907d8829cb285075a8d2ca7874618a92f817997f76258175cbb3 WHIRLPOOL 8812fff7e3cc2a715e8ba395ab852752c0cf28bf8828e61de3f01b52ffabbc61c13c05b03fc964d1f68e88f33ce08c18b44a070881d3b876283fb987b945c664
-DIST ocaml-cstruct-2.4.1.tar.gz 259399 SHA256 f3c1600e85eb93a58c052e2e9575b48d4dd02784d9b2615dadf861860afa1ee7 SHA512 30c541e50dc221d3d8df54f9a8dfa1f88b10f49b276779f7355a38effdfe048de0300bfcc7e361715f63b696d42bd11aa120df6b4058d3b24962777e91b1633e WHIRLPOOL 40d1fcf4674ee47595f14583f964850b4e2b8747f788efb947994ae5b59e12115c381afa7ccc269b408df2b0eed1e02967e83a6fa256aca8926401e6b3e0ed75
-DIST ocaml-cstruct-3.0.0.tar.gz 205070 SHA256 b420548a2e286dc9a8c8aed7fd142879b97177a76ad69c6e237df2bb5368a69b SHA512 9b080801e7d714412f4c4e417a90df5e412a69ed7a5c88e83f4212e287bf5687b0585a2f9f6849f254322a0c5d0ed98fba2ebe1b19a5c9d198435efe2a7f38a0 WHIRLPOOL 564332813d55284f6ca84b4d8bd1d93dc0484a21b052c4009162b3c4be5fc104c3c15b9e4f7ed467226cacfe8bbf70d5f827c335a165d6c68fd3946e073b91a7
 DIST ocaml-cstruct-3.0.1.tar.gz 205663 SHA256 1e1c731c8970a82f5947ab0ee73ec2d160df3cd0f5e752a25c2689448e13a7e2 SHA512 355f97f1b3a6e7812b9210e348e4544e0ae6f01bef6536808cdcfe32153f9e3b711d1e869990cbd0205d433a51c7463c10f410b59aae33c32dab7f35f5413c27 WHIRLPOOL 54daaf26d0882fd7c782102c0fb84f683497a6acfee04649e19b9c5c330d24192e710fcbf8dede9b5128474fa314109a87894d99b6f44349dbbca52a68f7a10b

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild
deleted file mode 100644
index 36676e8a668..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		dev-ml/ppx_tools_versioned:=
-	)
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild
deleted file mode 100644
index 36676e8a668..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.4.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-OASIS_BUILD_DOCS=1
-OASIS_BUILD_TESTS=1
-
-inherit oasis
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		dev-ml/ppx_tools_versioned:=
-	)
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-src_configure() {
-	oasis_configure_opts="
-		$(use_enable lwt)
-		$(use_enable async)
-		$(use_enable ppx)
-		--enable-unix
-	" oasis_src_configure
-}
-
-DOCS=( CHANGES README.md TODO.md )

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild
deleted file mode 100644
index 1c5b40081f2..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx test"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		>=dev-ml/ppx_tools_versioned-5.0.1:=
-	)
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	dev-ml/jbuilder
-	dev-ml/opam
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-oinstall() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		${1}.install || die
-}
-
-src_install() {
-	oinstall cstruct
-	oinstall cstruct-unix
-	use lwt && oinstall cstruct-lwt
-	use async && oinstall cstruct-async
-	use ppx && oinstall ppx_cstruct
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-07-04  6:59 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-07-04  6:59 UTC (permalink / raw
  To: gentoo-commits

commit:     71182f821273a894cb9c960a72b33658bc7dd56d
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  4 06:58:42 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jul  4 06:58:42 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71182f82

dev-ml/ocaml-cstruct: build only enabled targets, should fix bug #623742

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
index 388db7e2542..39b192f16a3 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
@@ -38,6 +38,22 @@ DEPEND="
 	${RDEPEND}
 "
 
+get_targets() {
+	local tgt="cstruct,cstruct-unix"
+	use lwt && tgt+=",cstruct-lwt"
+	use async && tgt+=",cstruct-async"
+	use ppx && tgt+=",ppx_cstruct"
+	echo "${tgt}"
+}
+
+src_compile() {
+	jbuilder build -p $(get_targets) || die
+}
+
+src_test() {
+	jbuilder runtest -p $(get_targets) || die
+}
+
 oinstall() {
 	opam-installer -i \
 		--prefix="${ED}/usr" \


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

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

commit:     10768b6889a776304c9d7a6be30338237ab85f16
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 13 21:58:46 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jul 13 22:09:34 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10768b68

dev-ml/ocaml-cstruct: bump to 3.1.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild | 71 +++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 8476b9ebf6e..f5504580082 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1,3 @@
 DIST ocaml-cstruct-3.0.1.tar.gz 205663 SHA256 1e1c731c8970a82f5947ab0ee73ec2d160df3cd0f5e752a25c2689448e13a7e2 SHA512 355f97f1b3a6e7812b9210e348e4544e0ae6f01bef6536808cdcfe32153f9e3b711d1e869990cbd0205d433a51c7463c10f410b59aae33c32dab7f35f5413c27 WHIRLPOOL 54daaf26d0882fd7c782102c0fb84f683497a6acfee04649e19b9c5c330d24192e710fcbf8dede9b5128474fa314109a87894d99b6f44349dbbca52a68f7a10b
 DIST ocaml-cstruct-3.0.2.tar.gz 205713 SHA256 86dc71140eae007c540cec982211ef48ec776232f2b23dd0b639e0e82099d60b SHA512 041ff15c102036f1162a870534e4bf83477f988344cbf420d21cf589100ba8f2fa2ae5c7de7c16ef36e88a10d6bfac43f3a63c929b6d6d90ae12ad0027d1c76d WHIRLPOOL a249e394c868f916ec243e702bf3eed38fdb2a7f60649b3d1be46bbc1308b4c9a3ac9e5d58ca35726f5fa3320d1773952a8105c34725345854da6837c38c2ff2
+DIST ocaml-cstruct-3.1.0.tar.gz 208552 SHA256 7392fd6e6f79229003511d004466fd4079970aa0f6963d94e9b21f2fe409f00b SHA512 90ce3b093e50e077b66ff15b8f2f756d66b278598c01dc46def5a660eeab38b54edf62e93d4dad6cfc801b264def77158c27c7a8582d68c9690956c517820cae WHIRLPOOL 0e6642a7ced461f89ade09ab83c8e097d554d92e661765ab631014bbeb16af7c49434ca1918d08223eb972922f638628be93851f7b08cd4cea96860c1e380b2a

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild
new file mode 100644
index 00000000000..39b192f16a3
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx test"
+
+RDEPEND="
+	async? (
+		dev-ml/async_kernel:=
+		dev-ml/async_unix:=
+		dev-ml/core_kernel:=
+	)
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		>=dev-ml/ppx_tools_versioned-5.0.1:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+get_targets() {
+	local tgt="cstruct,cstruct-unix"
+	use lwt && tgt+=",cstruct-lwt"
+	use async && tgt+=",cstruct-async"
+	use ppx && tgt+=",ppx_cstruct"
+	echo "${tgt}"
+}
+
+src_compile() {
+	jbuilder build -p $(get_targets) || die
+}
+
+src_test() {
+	jbuilder runtest -p $(get_targets) || die
+}
+
+oinstall() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		${1}.install || die
+}
+
+src_install() {
+	oinstall cstruct
+	oinstall cstruct-unix
+	use lwt && oinstall cstruct-lwt
+	use async && oinstall cstruct-async
+	use ppx && oinstall ppx_cstruct
+}


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

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

commit:     f49fe2883f93c81bd8a022db9c027c3e6cb1d4af
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 14 11:14:19 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Jul 14 12:08:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f49fe288

dev-ml/ocaml-cstruct: bump to 3.1.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild | 71 +++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index f5504580082..b05a1500691 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,3 +1,4 @@
 DIST ocaml-cstruct-3.0.1.tar.gz 205663 SHA256 1e1c731c8970a82f5947ab0ee73ec2d160df3cd0f5e752a25c2689448e13a7e2 SHA512 355f97f1b3a6e7812b9210e348e4544e0ae6f01bef6536808cdcfe32153f9e3b711d1e869990cbd0205d433a51c7463c10f410b59aae33c32dab7f35f5413c27 WHIRLPOOL 54daaf26d0882fd7c782102c0fb84f683497a6acfee04649e19b9c5c330d24192e710fcbf8dede9b5128474fa314109a87894d99b6f44349dbbca52a68f7a10b
 DIST ocaml-cstruct-3.0.2.tar.gz 205713 SHA256 86dc71140eae007c540cec982211ef48ec776232f2b23dd0b639e0e82099d60b SHA512 041ff15c102036f1162a870534e4bf83477f988344cbf420d21cf589100ba8f2fa2ae5c7de7c16ef36e88a10d6bfac43f3a63c929b6d6d90ae12ad0027d1c76d WHIRLPOOL a249e394c868f916ec243e702bf3eed38fdb2a7f60649b3d1be46bbc1308b4c9a3ac9e5d58ca35726f5fa3320d1773952a8105c34725345854da6837c38c2ff2
 DIST ocaml-cstruct-3.1.0.tar.gz 208552 SHA256 7392fd6e6f79229003511d004466fd4079970aa0f6963d94e9b21f2fe409f00b SHA512 90ce3b093e50e077b66ff15b8f2f756d66b278598c01dc46def5a660eeab38b54edf62e93d4dad6cfc801b264def77158c27c7a8582d68c9690956c517820cae WHIRLPOOL 0e6642a7ced461f89ade09ab83c8e097d554d92e661765ab631014bbeb16af7c49434ca1918d08223eb972922f638628be93851f7b08cd4cea96860c1e380b2a
+DIST ocaml-cstruct-3.1.1.tar.gz 208725 SHA256 0b4469b17daaf7e6423962f2ad3ea02f4d4e35a7b92acb404afa6738570be3d6 SHA512 22ec8fe027dbebee537ff950c2aa9a494d0c4c000d8c4df848eae157b1c9502b73c208bb92c21fa4c13ba0291b7750de31e4c96b3a0571397402f841c3e01c21 WHIRLPOOL 287df0058f4291e2cbeb716f9a26aa7475ddcbfce6d1373c3d7a82d9c49d6c4d167de13298525f94414a9bcff2abff5e6d909a5de25d5063711a5a70f504d2ea

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
new file mode 100644
index 00000000000..39b192f16a3
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="async +lwt +ppx test"
+
+RDEPEND="
+	async? (
+		dev-ml/async_kernel:=
+		dev-ml/async_unix:=
+		dev-ml/core_kernel:=
+	)
+	lwt? ( dev-ml/lwt:= )
+	ppx? (
+		dev-ml/ppx_tools:=
+		dev-ml/ocaml-migrate-parsetree:=
+		>=dev-ml/ppx_tools_versioned-5.0.1:=
+	)
+	>=dev-lang/ocaml-4.01:=
+	dev-ml/ocplib-endian:=
+	dev-ml/sexplib:=
+	dev-ml/type-conv:=
+"
+DEPEND="
+	dev-ml/jbuilder
+	dev-ml/opam
+	test? ( dev-ml/ounit )
+	${RDEPEND}
+"
+
+get_targets() {
+	local tgt="cstruct,cstruct-unix"
+	use lwt && tgt+=",cstruct-lwt"
+	use async && tgt+=",cstruct-async"
+	use ppx && tgt+=",ppx_cstruct"
+	echo "${tgt}"
+}
+
+src_compile() {
+	jbuilder build -p $(get_targets) || die
+}
+
+src_test() {
+	jbuilder runtest -p $(get_targets) || die
+}
+
+oinstall() {
+	opam-installer -i \
+		--prefix="${ED}/usr" \
+		--libdir="${D}/$(ocamlc -where)" \
+		--docdir="${ED}/usr/share/doc/${PF}" \
+		${1}.install || die
+}
+
+src_install() {
+	oinstall cstruct
+	oinstall cstruct-unix
+	use lwt && oinstall cstruct-lwt
+	use async && oinstall cstruct-async
+	use ppx && oinstall ppx_cstruct
+}


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

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

commit:     4bb82691aac1c9dbf966658f222bbe390e510bf3
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 18 17:36:39 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jul 18 17:36:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bb82691

dev-ml/ocaml-cstruct: Add missing test deps, bug #625532

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
index 39b192f16a3..0acf2607860 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
@@ -34,7 +34,10 @@ RDEPEND="
 DEPEND="
 	dev-ml/jbuilder
 	dev-ml/opam
-	test? ( dev-ml/ounit )
+	test? (
+		dev-ml/ounit
+		ppx? ( dev-ml/ppx_driver dev-ml/ppx_sexp_conv )
+	)
 	${RDEPEND}
 "
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-09-22  8:32 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-09-22  8:32 UTC (permalink / raw
  To: gentoo-commits

commit:     e6bc23e44afc92a703ffe2d8c315079aaa663aba
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 08:10:19 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 08:31:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6bc23e4

dev-ml/ocaml-cstruct: Remove old

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-ml/ocaml-cstruct/Manifest                   |  3 --
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild | 51 ------------------
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild | 71 -------------------------
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild | 71 -------------------------
 4 files changed, 196 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index b05a1500691..d3f3ce6ce6e 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,4 +1 @@
-DIST ocaml-cstruct-3.0.1.tar.gz 205663 SHA256 1e1c731c8970a82f5947ab0ee73ec2d160df3cd0f5e752a25c2689448e13a7e2 SHA512 355f97f1b3a6e7812b9210e348e4544e0ae6f01bef6536808cdcfe32153f9e3b711d1e869990cbd0205d433a51c7463c10f410b59aae33c32dab7f35f5413c27 WHIRLPOOL 54daaf26d0882fd7c782102c0fb84f683497a6acfee04649e19b9c5c330d24192e710fcbf8dede9b5128474fa314109a87894d99b6f44349dbbca52a68f7a10b
-DIST ocaml-cstruct-3.0.2.tar.gz 205713 SHA256 86dc71140eae007c540cec982211ef48ec776232f2b23dd0b639e0e82099d60b SHA512 041ff15c102036f1162a870534e4bf83477f988344cbf420d21cf589100ba8f2fa2ae5c7de7c16ef36e88a10d6bfac43f3a63c929b6d6d90ae12ad0027d1c76d WHIRLPOOL a249e394c868f916ec243e702bf3eed38fdb2a7f60649b3d1be46bbc1308b4c9a3ac9e5d58ca35726f5fa3320d1773952a8105c34725345854da6837c38c2ff2
-DIST ocaml-cstruct-3.1.0.tar.gz 208552 SHA256 7392fd6e6f79229003511d004466fd4079970aa0f6963d94e9b21f2fe409f00b SHA512 90ce3b093e50e077b66ff15b8f2f756d66b278598c01dc46def5a660eeab38b54edf62e93d4dad6cfc801b264def77158c27c7a8582d68c9690956c517820cae WHIRLPOOL 0e6642a7ced461f89ade09ab83c8e097d554d92e661765ab631014bbeb16af7c49434ca1918d08223eb972922f638628be93851f7b08cd4cea96860c1e380b2a
 DIST ocaml-cstruct-3.1.1.tar.gz 208725 SHA256 0b4469b17daaf7e6423962f2ad3ea02f4d4e35a7b92acb404afa6738570be3d6 SHA512 22ec8fe027dbebee537ff950c2aa9a494d0c4c000d8c4df848eae157b1c9502b73c208bb92c21fa4c13ba0291b7750de31e4c96b3a0571397402f841c3e01c21 WHIRLPOOL 287df0058f4291e2cbeb716f9a26aa7475ddcbfce6d1373c3d7a82d9c49d6c4d167de13298525f94414a9bcff2abff5e6d909a5de25d5063711a5a70f504d2ea

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild
deleted file mode 100644
index 1c5b40081f2..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx test"
-
-RDEPEND="
-	async? ( dev-ml/async:= )
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		>=dev-ml/ppx_tools_versioned-5.0.1:=
-	)
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	dev-ml/jbuilder
-	dev-ml/opam
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-oinstall() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		${1}.install || die
-}
-
-src_install() {
-	oinstall cstruct
-	oinstall cstruct-unix
-	use lwt && oinstall cstruct-lwt
-	use async && oinstall cstruct-async
-	use ppx && oinstall ppx_cstruct
-}

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
deleted file mode 100644
index 39b192f16a3..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.0.2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx test"
-
-RDEPEND="
-	async? (
-		dev-ml/async_kernel:=
-		dev-ml/async_unix:=
-		dev-ml/core_kernel:=
-	)
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		>=dev-ml/ppx_tools_versioned-5.0.1:=
-	)
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	dev-ml/jbuilder
-	dev-ml/opam
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-get_targets() {
-	local tgt="cstruct,cstruct-unix"
-	use lwt && tgt+=",cstruct-lwt"
-	use async && tgt+=",cstruct-async"
-	use ppx && tgt+=",ppx_cstruct"
-	echo "${tgt}"
-}
-
-src_compile() {
-	jbuilder build -p $(get_targets) || die
-}
-
-src_test() {
-	jbuilder runtest -p $(get_targets) || die
-}
-
-oinstall() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		${1}.install || die
-}
-
-src_install() {
-	oinstall cstruct
-	oinstall cstruct-unix
-	use lwt && oinstall cstruct-lwt
-	use async && oinstall cstruct-async
-	use ppx && oinstall ppx_cstruct
-}

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild
deleted file mode 100644
index 39b192f16a3..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.0.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx test"
-
-RDEPEND="
-	async? (
-		dev-ml/async_kernel:=
-		dev-ml/async_unix:=
-		dev-ml/core_kernel:=
-	)
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		>=dev-ml/ppx_tools_versioned-5.0.1:=
-	)
-	>=dev-lang/ocaml-4.01:=
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	dev-ml/jbuilder
-	dev-ml/opam
-	test? ( dev-ml/ounit )
-	${RDEPEND}
-"
-
-get_targets() {
-	local tgt="cstruct,cstruct-unix"
-	use lwt && tgt+=",cstruct-lwt"
-	use async && tgt+=",cstruct-async"
-	use ppx && tgt+=",ppx_cstruct"
-	echo "${tgt}"
-}
-
-src_compile() {
-	jbuilder build -p $(get_targets) || die
-}
-
-src_test() {
-	jbuilder runtest -p $(get_targets) || die
-}
-
-oinstall() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		${1}.install || die
-}
-
-src_install() {
-	oinstall cstruct
-	oinstall cstruct-unix
-	use lwt && oinstall cstruct-lwt
-	use async && oinstall cstruct-async
-	use ppx && oinstall ppx_cstruct
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2017-09-22  8:32 Alexis Ballier
  0 siblings, 0 replies; 37+ messages in thread
From: Alexis Ballier @ 2017-09-22  8:32 UTC (permalink / raw
  To: gentoo-commits

commit:     4558f4f84ffba0838860f5357043571a67c1cc06
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 08:12:11 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 08:31:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4558f4f8

dev-ml/ocaml-cstruct: use opam.eclass

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild | 22 ++++++----------------
 1 file changed, 6 insertions(+), 16 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
index 0acf2607860..1b42677acb6 100644
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-inherit findlib
+inherit findlib opam
 
 DESCRIPTION="Map OCaml arrays onto C-like structs"
 HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
@@ -26,14 +26,12 @@ RDEPEND="
 		dev-ml/ocaml-migrate-parsetree:=
 		>=dev-ml/ppx_tools_versioned-5.0.1:=
 	)
-	>=dev-lang/ocaml-4.01:=
 	dev-ml/ocplib-endian:=
 	dev-ml/sexplib:=
 	dev-ml/type-conv:=
 "
 DEPEND="
 	dev-ml/jbuilder
-	dev-ml/opam
 	test? (
 		dev-ml/ounit
 		ppx? ( dev-ml/ppx_driver dev-ml/ppx_sexp_conv )
@@ -57,18 +55,10 @@ src_test() {
 	jbuilder runtest -p $(get_targets) || die
 }
 
-oinstall() {
-	opam-installer -i \
-		--prefix="${ED}/usr" \
-		--libdir="${D}/$(ocamlc -where)" \
-		--docdir="${ED}/usr/share/doc/${PF}" \
-		${1}.install || die
-}
-
 src_install() {
-	oinstall cstruct
-	oinstall cstruct-unix
-	use lwt && oinstall cstruct-lwt
-	use async && oinstall cstruct-async
-	use ppx && oinstall ppx_cstruct
+	opam-install cstruct
+	opam-install cstruct-unix
+	use lwt && opam-install cstruct-lwt
+	use async && opam-install cstruct-async
+	use ppx && opam-install ppx_cstruct
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2021-03-04 19:44 Alfredo Tupone
  0 siblings, 0 replies; 37+ messages in thread
From: Alfredo Tupone @ 2021-03-04 19:44 UTC (permalink / raw
  To: gentoo-commits

commit:     4b9686cd7ee3d5d052986289a4ec8c2a7cffd544
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  4 19:43:32 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Mar  4 19:44:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b9686cd

dev-ml/ocaml-cstruct: version bump to 5.2.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-cstruct/Manifest                   |  1 +
 dev-ml/ocaml-cstruct/metadata.xml               |  5 ++++-
 dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild | 24 ++++++++++++++++++++++++
 3 files changed, 29 insertions(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 68f49f48f9e..7bc3d23248e 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1 +1,2 @@
 DIST ocaml-cstruct-3.1.1.tar.gz 208725 BLAKE2B 2818c5695c4ab3d102cfa08a288e80e80d7fa4372a5d97aac831429f0681e21cb6b03baac245c7c1171a8efa23b8d6bca661ee74db0efe8c2649727d9be56505 SHA512 22ec8fe027dbebee537ff950c2aa9a494d0c4c000d8c4df848eae157b1c9502b73c208bb92c21fa4c13ba0291b7750de31e4c96b3a0571397402f841c3e01c21
+DIST ocaml-cstruct-5.2.0.tar.gz 230278 BLAKE2B 13ac6f8a2abf98786da5fcd695cdebb7682e1059fb089b5c918af29456e1017961e88ff4bda6c69810f55bf343673048b51ff1a70f80a546649b53ec5669c658 SHA512 5b489662a4274c9b337aa8e25790ae558d6a62e561d671fd0d95dae246324b3e916f12ba24c5aecd924be4c38db40c969919ccf5b310ad931baa802c2a94857f

diff --git a/dev-ml/ocaml-cstruct/metadata.xml b/dev-ml/ocaml-cstruct/metadata.xml
index 498dfd3c0d3..8065e2ea2ca 100644
--- a/dev-ml/ocaml-cstruct/metadata.xml
+++ b/dev-ml/ocaml-cstruct/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-   <!-- maintainer-needed -->
+	<maintainer type="project">
+		<email>ml@gentoo.org</email>
+		<name>ML</name>
+	</maintainer>
    <use>
         <flag name="async">Support for asynchronous execution</flag>
         <flag name="lwt">Enable threads via lwt</flag>

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild
new file mode 100644
index 00000000000..c68cd34ffe8
--- /dev/null
+++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit dune
+
+DESCRIPTION="Map OCaml arrays onto C-like structs"
+HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt"
+
+RDEPEND="
+	dev-ml/async_unix:=
+	dev-ml/bigarray-compat:=
+	>=dev-ml/ppx_tools_versioned-5.4.0:=
+"
+DEPEND="
+	${RDEPEND}
+"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2021-03-04 19:51 Alfredo Tupone
  0 siblings, 0 replies; 37+ messages in thread
From: Alfredo Tupone @ 2021-03-04 19:51 UTC (permalink / raw
  To: gentoo-commits

commit:     41fdcba135bf163d637fef1508764e672b0c1c57
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  4 19:51:30 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Mar  4 19:51:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41fdcba1

dev-ml/ocaml-cstruct: remove version 5.2.0 not fully tested

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-cstruct/metadata.xml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/metadata.xml b/dev-ml/ocaml-cstruct/metadata.xml
index 8065e2ea2ca..ff9cc5cb910 100644
--- a/dev-ml/ocaml-cstruct/metadata.xml
+++ b/dev-ml/ocaml-cstruct/metadata.xml
@@ -5,12 +5,12 @@
 		<email>ml@gentoo.org</email>
 		<name>ML</name>
 	</maintainer>
-   <use>
-        <flag name="async">Support for asynchronous execution</flag>
-        <flag name="lwt">Enable threads via lwt</flag>
-        <flag name="ppx">Enable the ppx syntax extension</flag>
-    </use>
-    <upstream>
-        <remote-id type="github">mirage/ocaml-cstruct</remote-id>
-    </upstream>
+	<use>
+		<flag name="async">Support for asynchronous execution</flag>
+		<flag name="lwt">Enable threads via lwt</flag>
+		<flag name="ppx">Enable the ppx syntax extension</flag>
+	</use>
+	<upstream>
+		<remote-id type="github">mirage/ocaml-cstruct</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2021-03-04 19:53 Alfredo Tupone
  0 siblings, 0 replies; 37+ messages in thread
From: Alfredo Tupone @ 2021-03-04 19:53 UTC (permalink / raw
  To: gentoo-commits

commit:     1383d48ead9dfe60ba0beec045b8bbaedbc08066
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  4 19:53:38 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Mar  4 19:53:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1383d48e

dev-ml/ocaml-cstruct: rm 5.2.0

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/ocaml-cstruct/Manifest                   |  1 -
 dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild | 24 ------------------------
 2 files changed, 25 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
index 7bc3d23248e..68f49f48f9e 100644
--- a/dev-ml/ocaml-cstruct/Manifest
+++ b/dev-ml/ocaml-cstruct/Manifest
@@ -1,2 +1 @@
 DIST ocaml-cstruct-3.1.1.tar.gz 208725 BLAKE2B 2818c5695c4ab3d102cfa08a288e80e80d7fa4372a5d97aac831429f0681e21cb6b03baac245c7c1171a8efa23b8d6bca661ee74db0efe8c2649727d9be56505 SHA512 22ec8fe027dbebee537ff950c2aa9a494d0c4c000d8c4df848eae157b1c9502b73c208bb92c21fa4c13ba0291b7750de31e4c96b3a0571397402f841c3e01c21
-DIST ocaml-cstruct-5.2.0.tar.gz 230278 BLAKE2B 13ac6f8a2abf98786da5fcd695cdebb7682e1059fb089b5c918af29456e1017961e88ff4bda6c69810f55bf343673048b51ff1a70f80a546649b53ec5669c658 SHA512 5b489662a4274c9b337aa8e25790ae558d6a62e561d671fd0d95dae246324b3e916f12ba24c5aecd924be4c38db40c969919ccf5b310ad931baa802c2a94857f

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild
deleted file mode 100644
index c68cd34ffe8..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-5.2.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit dune
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="+ocamlopt"
-
-RDEPEND="
-	dev-ml/async_unix:=
-	dev-ml/bigarray-compat:=
-	>=dev-ml/ppx_tools_versioned-5.4.0:=
-"
-DEPEND="
-	${RDEPEND}
-"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
@ 2021-04-04  6:10 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2021-04-04  6:10 UTC (permalink / raw
  To: gentoo-commits

commit:     f3ee72e4db74ecf8657231b36cf57b46a6768d9f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 04:13:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr  4 06:09:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3ee72e4

dev-ml/ocaml-cstruct: treeclean

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/ocaml-cstruct/Manifest                   |  1 -
 dev-ml/ocaml-cstruct/metadata.xml               | 16 ------
 dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild | 65 -------------------------
 3 files changed, 82 deletions(-)

diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
deleted file mode 100644
index 68f49f48f9e..00000000000
--- a/dev-ml/ocaml-cstruct/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ocaml-cstruct-3.1.1.tar.gz 208725 BLAKE2B 2818c5695c4ab3d102cfa08a288e80e80d7fa4372a5d97aac831429f0681e21cb6b03baac245c7c1171a8efa23b8d6bca661ee74db0efe8c2649727d9be56505 SHA512 22ec8fe027dbebee537ff950c2aa9a494d0c4c000d8c4df848eae157b1c9502b73c208bb92c21fa4c13ba0291b7750de31e4c96b3a0571397402f841c3e01c21

diff --git a/dev-ml/ocaml-cstruct/metadata.xml b/dev-ml/ocaml-cstruct/metadata.xml
deleted file mode 100644
index ff9cc5cb910..00000000000
--- a/dev-ml/ocaml-cstruct/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?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>ML</name>
-	</maintainer>
-	<use>
-		<flag name="async">Support for asynchronous execution</flag>
-		<flag name="lwt">Enable threads via lwt</flag>
-		<flag name="ppx">Enable the ppx syntax extension</flag>
-	</use>
-	<upstream>
-		<remote-id type="github">mirage/ocaml-cstruct</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
deleted file mode 100644
index f766d6e0c4f..00000000000
--- a/dev-ml/ocaml-cstruct/ocaml-cstruct-3.1.1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit findlib opam
-
-DESCRIPTION="Map OCaml arrays onto C-like structs"
-HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
-SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="async +lwt +ppx test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	async? (
-		dev-ml/async_kernel:=
-		dev-ml/async_unix:=
-		dev-ml/core_kernel:=
-	)
-	lwt? ( dev-ml/lwt:= )
-	ppx? (
-		dev-ml/ppx_tools:=
-		dev-ml/ocaml-migrate-parsetree:=
-		>=dev-ml/ppx_tools_versioned-5.0.1:=
-	)
-	dev-ml/ocplib-endian:=
-	dev-ml/sexplib:=
-	dev-ml/type-conv:=
-"
-DEPEND="
-	dev-ml/jbuilder
-	test? (
-		dev-ml/ounit
-		ppx? ( dev-ml/ppx_driver dev-ml/ppx_sexp_conv )
-	)
-	${RDEPEND}
-"
-
-get_targets() {
-	local tgt="cstruct,cstruct-unix"
-	use lwt && tgt+=",cstruct-lwt"
-	use async && tgt+=",cstruct-async"
-	use ppx && tgt+=",ppx_cstruct"
-	echo "${tgt}"
-}
-
-src_compile() {
-	jbuilder build -p $(get_targets) || die
-}
-
-src_test() {
-	jbuilder runtest -p $(get_targets) || die
-}
-
-src_install() {
-	opam-install cstruct
-	opam-install cstruct-unix
-	use lwt && opam-install cstruct-lwt
-	use async && opam-install cstruct-async
-	use ppx && opam-install ppx_cstruct
-}


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

end of thread, other threads:[~2021-04-04  6:10 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-10 10:20 [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/ Alexis Ballier
  -- strict thread matches above, loose matches on Subject: below --
2021-04-04  6:10 Sam James
2021-03-04 19:53 Alfredo Tupone
2021-03-04 19:51 Alfredo Tupone
2021-03-04 19:44 Alfredo Tupone
2017-09-22  8:32 Alexis Ballier
2017-09-22  8:32 Alexis Ballier
2017-07-18 17:36 Alexis Ballier
2017-07-14 12:12 Alexis Ballier
2017-07-13 22:09 Alexis Ballier
2017-07-04  6:59 Alexis Ballier
2017-06-15 21:56 Alexis Ballier
2017-06-15 21:56 Alexis Ballier
2017-06-12  5:46 Alexis Ballier
2017-06-11 11:19 Alexis Ballier
2017-06-08 17:53 Alexis Ballier
2017-05-04  9:12 Alexis Ballier
2017-04-27 10:54 Alexis Ballier
2017-04-01 12:24 Alexis Ballier
2017-03-06  7:18 Alexis Ballier
2017-01-24 11:14 Alexis Ballier
2016-12-13  8:16 Alexis Ballier
2016-12-13  8:16 Alexis Ballier
2016-08-18 11:02 Alexis Ballier
2016-07-01 13:22 Alexis Ballier
2016-05-06 13:26 Alexis Ballier
2016-05-03  9:14 Alexis Ballier
2016-02-22 10:22 Alexis Ballier
2016-02-10 10:32 Ian Delaney
2016-02-10 10:13 Alexis Ballier
2016-02-05 20:59 Alexis Ballier
2016-02-05 20:59 Alexis Ballier
2015-12-19 15:01 Alexis Ballier
2015-10-18 18:07 Alexis Ballier
2015-10-17 17:21 Alexis Ballier
2015-10-17 16:24 Alexis Ballier
2015-10-17 12:10 Alexis Ballier

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