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-ctypes/
Date: Mon, 30 Jan 2017 22:55:39
Message-Id: 1485814917.4cf640a8b699c46adb3900a858ae7fe517421a8f.aballier@gentoo
1 commit: 4cf640a8b699c46adb3900a858ae7fe517421a8f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 30 12:39:13 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 22:21:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf640a8
7
8 dev-ml/ocaml-ctypes: bump to 0.11.3
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/ocaml-ctypes/Manifest | 1 +
13 dev-ml/ocaml-ctypes/ocaml-ctypes-0.11.3.ebuild | 36 ++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-ml/ocaml-ctypes/Manifest b/dev-ml/ocaml-ctypes/Manifest
17 index 5d2d8d0..2ef96db 100644
18 --- a/dev-ml/ocaml-ctypes/Manifest
19 +++ b/dev-ml/ocaml-ctypes/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ocaml-ctypes-0.11.2.tar.gz 203564 SHA256 708e2c5501ba00b3ed6726a7da1c2b58f607859e8e1cc0381eefd222510488d6 SHA512 f3d75e9e596f68438733090fea8c675624c3b186a77c3adf1eca8f12cc2da336f0f5b1688c2ee788726e873bbb0c4dce1d237d53d1637d78e4ad6a8eae1f912a WHIRLPOOL cbf74628695e01dfe2e379a7c645313e36eaae98f733cda231a290960e52241c96bcc2fb8491daa28b964cf06c0d43a41282767a2d9fa1a4a6f395736eb08864
22 +DIST ocaml-ctypes-0.11.3.tar.gz 204959 SHA256 683b0215dca7bba797404869a80564cd4901a0a3f3c14bd65be7656c40b2329d SHA512 e7698954a6b683869a1482af8fe1bbeb5ccf693c2bb8583e2c19c5da92ed2730466e373c6f53d9ff9f09c2bdedf102da3f76b75511d7f9b7d266ac0765999f94 WHIRLPOOL ddeb6cf4b2b4c611bfe26f94974eaaa69415164825c5744d59b5afe388230cedad4d4c12b7d3753da31899af01f10c642f3478f9cc4270d49e70057023f61450
23 DIST ocaml-ctypes-0.4.1.tar.gz 162601 SHA256 74564e049de5d3c0e76ea284c225cb658ac1a2b483345be1efb9be4b3c1702f5 SHA512 8155ffe16a58d5714ceb602afa5531c93526defca39a16047328ac06d2c7c7f52b768b18170391f467e1f6919c69275734faf85d27315e11b8bbefcb1bc8afa9 WHIRLPOOL d8d0ef24e0b6c40f50fddf38fed7238cf95573909d2809cc2ab5c1b9b3dab333210e1ce99cf805804576a79d08d819e2ecdee7b4a6a9e13efb13e7b9f88ad802
24
25 diff --git a/dev-ml/ocaml-ctypes/ocaml-ctypes-0.11.3.ebuild b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.11.3.ebuild
26 new file mode 100644
27 index 00000000..b94a5aa
28 --- /dev/null
29 +++ b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.11.3.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +inherit findlib
38 +
39 +DESCRIPTION="Library for binding to C libraries using pure OCaml"
40 +HOMEPAGE="https://github.com/ocamllabs/ocaml-ctypes"
41 +SRC_URI="https://github.com/ocamllabs/ocaml-ctypes/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0/${PV}"
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +IUSE="test"
47 +
48 +RDEPEND="
49 + >=dev-lang/ocaml-4.02:=[ocamlopt]
50 + virtual/libffi
51 +"
52 +DEPEND="${RDEPEND}
53 + test? ( dev-ml/ounit )"
54 +
55 +src_compile() {
56 + emake -j1
57 +}
58 +
59 +src_test() {
60 + emake -j1 test
61 +}
62 +
63 +src_install() {
64 + findlib_src_install
65 + dodoc CHANGES.md README.md
66 +}