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: Wed, 05 Oct 2016 15:09:42
Message-Id: 1475680165.32f8757b05b01da9c29d45ce0ae8854f6695e6b8.aballier@gentoo
1 commit: 32f8757b05b01da9c29d45ce0ae8854f6695e6b8
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 5 15:02:53 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 5 15:09:25 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32f8757b
7
8 dev-ml/ocaml-ctypes: bump to 0.10.0
9
10 Package-Manager: portage-2.3.1
11
12 dev-ml/ocaml-ctypes/Manifest | 1 +
13 dev-ml/ocaml-ctypes/ocaml-ctypes-0.10.0.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 20304c7..975ba67 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.10.0.tar.gz 188240 SHA256 b5b729240d1803b1c9993c0dcbb2b12e4307f2942294e872807486702c2cff17 SHA512 6937440792ded4877feeabfbbeb5598ff93600d7ffb5aa7d4f99b86b9b2877c0bb89e44c7ec0b0e0032b6edc050038b001385bc57f78018d94de65cbc1c478e4 WHIRLPOOL 582074d73eb6c88f8d96768bda3fde88c477a9da8e9c3cf11b4a2120c1a275fc70f175f38dbd84b8ec13d8b50fcfb10a74f06d7e87e0107edd99fb284ae8f648
22 DIST ocaml-ctypes-0.4.1.tar.gz 162601 SHA256 74564e049de5d3c0e76ea284c225cb658ac1a2b483345be1efb9be4b3c1702f5 SHA512 8155ffe16a58d5714ceb602afa5531c93526defca39a16047328ac06d2c7c7f52b768b18170391f467e1f6919c69275734faf85d27315e11b8bbefcb1bc8afa9 WHIRLPOOL d8d0ef24e0b6c40f50fddf38fed7238cf95573909d2809cc2ab5c1b9b3dab333210e1ce99cf805804576a79d08d819e2ecdee7b4a6a9e13efb13e7b9f88ad802
23 DIST ocaml-ctypes-0.9.2.tar.gz 185666 SHA256 8e31e87e21ab776de150a43a5047449243ac7632d27d1c0e9da0ca611a664d11 SHA512 fdd37aa1e231f9e4300b405d0cf90a7bd2de801ebd96f30b7d33b2b2d651f6dbe8c8b409fe68619f11a457daafa934457255f8e349cbeaf36c23acf040c3a131 WHIRLPOOL 002ae6ce6041e45753852ab69524eda41c907dbbc9d2f474f633801e88e438aabc99a319f486f75e0d6f086b89eb64cfcb06f478c7bcb30b4bfea9cf9eb403e3
24
25 diff --git a/dev-ml/ocaml-ctypes/ocaml-ctypes-0.10.0.ebuild b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.10.0.ebuild
26 new file mode 100644
27 index 00000000..d563719
28 --- /dev/null
29 +++ b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.10.0.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2016 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 +}