Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-cstruct/
Date: Tue, 03 May 2016 09:14:27
Message-Id: 1462266832.83a1ddd9219bc2245b2c510607e13b0451f39f14.aballier@gentoo
1 commit: 83a1ddd9219bc2245b2c510607e13b0451f39f14
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 17:13:27 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 09:13:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83a1ddd9
7
8 dev-ml/ocaml-cstruct: bump to 2.0.0
9
10 Package-Manager: portage-2.2.28
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/ocaml-cstruct/Manifest | 1 +
14 dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild | 43 +++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/dev-ml/ocaml-cstruct/Manifest b/dev-ml/ocaml-cstruct/Manifest
18 index 104f53a..c9d402c 100644
19 --- a/dev-ml/ocaml-cstruct/Manifest
20 +++ b/dev-ml/ocaml-cstruct/Manifest
21 @@ -1,3 +1,4 @@
22 DIST ocaml-cstruct-1.7.1.tar.gz 245894 SHA256 7869d096fe7c6231bbceefe3b2205417b28b6c10f4174b7e2cfdfa46956eaaa5 SHA512 67dd276ab2f895ef80cc7ba5b48d51bcfcf52ac49aa29cd4b17aa00be109198347a50229b81fbe506d831ace753d72f3b4bb80f19e8e57fa29d9ba65da472f19 WHIRLPOOL 8145930a1dcadbcf48c1da0dcba10a45f3d52c8ae2565aee7e609bd3eeb5eead9cee9ef423332a580ab77ceabb2f301917226d1a73e1b7f6efc7a3096c4112d6
23 DIST ocaml-cstruct-1.8.0.tar.gz 250696 SHA256 e1635072283ae5db7889966ce92e916749bcd192012a0c46285827beba1263d7 SHA512 38ea6301b48603f8b63c73a7aa42312d25bbd16fb8524e1de2b69a54e45e9e1c1326201e19fcf2953d2719607139c903d76296a32fb7058998c079ac112adc9c WHIRLPOOL 6fdabfc1143331662757826de11c62c3947fb59155ba68e866a2f9939963deacd52d5832417997833deff9a9ff902675d266a98b41e0d2cf9f29c4d4c628601e
24 DIST ocaml-cstruct-1.9.0.tar.gz 254162 SHA256 2d175bf1e2cdc5ca43cb30bd3fa507beee2f18b2cbecae801ab6ffaecde16c9c SHA512 fad3788c0888599a3171d4062b9d9f4c539c0cbb1d8b6d4f6be2f3456ffe235444def4e619a94ca75336cf555b5133e6e60edc07a03dc0abdd772acf9371b666 WHIRLPOOL 99984c32625d9dbf452a7191f4103228bedbd7eee23bfb1eee7834022a023dee1582fca9704fcbe09ed37424ca7d684c482426d3b30b5f1dc66cc55b78769532
25 +DIST ocaml-cstruct-2.0.0.tar.gz 250245 SHA256 285341c6b5bdfc456f2b63c072210771aeb7110d777bbdaec5087234a505acf5 SHA512 4fc1f09824bf943c45a2afe8908d80fb3d9857f5e9f426479520713c92c04eac588a38fbf036352a17e787165476a7a5647f34df9c89f6c93a195f80ae11c3dd WHIRLPOOL ef8c3770ed73323c292152b5b29b8b0737158b84f0f738ac0841257e07d787edf5e0c7c55c0d5630c7f44fcd878d00585e320b12d9ece22a98a906cc7e86c08c
26
27 diff --git a/dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild
28 new file mode 100644
29 index 0000000..7c5d31d
30 --- /dev/null
31 +++ b/dev-ml/ocaml-cstruct/ocaml-cstruct-2.0.0.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +OASIS_BUILD_DOCS=1
39 +OASIS_BUILD_TESTS=1
40 +
41 +inherit oasis
42 +
43 +DESCRIPTION="Map OCaml arrays onto C-like structs"
44 +HOMEPAGE="https://github.com/mirage/ocaml-cstruct https://mirage.io"
45 +SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="ISC"
48 +SLOT="0/${PV}"
49 +KEYWORDS="~amd64"
50 +IUSE="async +lwt +ppx"
51 +
52 +RDEPEND="
53 + async? ( dev-ml/async:= )
54 + lwt? ( dev-ml/lwt:= )
55 + ppx? ( dev-ml/ppx_tools:= )
56 + >=dev-lang/ocaml-4.01:=
57 + dev-ml/ocplib-endian:=
58 + dev-ml/sexplib:=
59 + dev-ml/type-conv:=
60 +"
61 +DEPEND="
62 + test? ( dev-ml/ounit )
63 + ${RDEPEND}
64 +"
65 +
66 +src_configure() {
67 + oasis_configure_opts="
68 + $(use_enable lwt)
69 + $(use_enable async)
70 + $(use_enable ppx)
71 + --enable-unix
72 + " oasis_src_configure
73 +}
74 +
75 +DOCS=( CHANGES README.md TODO.md )