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: Fri, 03 Jun 2016 09:21:25
Message-Id: 1464945665.d1cc1d2a2e33afbb01aba13c96c07855809de75f.aballier@gentoo
1 commit: d1cc1d2a2e33afbb01aba13c96c07855809de75f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 09:20:58 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 09:21:05 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1cc1d2a
7
8 dev-ml/ocaml-ctypes: bump to 0.6.0
9
10 Package-Manager: portage-2.3.0_rc1
11
12 dev-ml/ocaml-ctypes/Manifest | 1 +
13 dev-ml/ocaml-ctypes/ocaml-ctypes-0.6.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 fdd7d00..32089aa 100644
18 --- a/dev-ml/ocaml-ctypes/Manifest
19 +++ b/dev-ml/ocaml-ctypes/Manifest
20 @@ -2,3 +2,4 @@ DIST ocaml-ctypes-0.4.1.tar.gz 162601 SHA256 74564e049de5d3c0e76ea284c225cb658ac
21 DIST ocaml-ctypes-0.4.2.tar.gz 162968 SHA256 704efcbf3b99c180855ad4faed0dd7cec4f2384f9b8963b572329697be8cbae4 SHA512 78e51a4ea35efd6d854b81c65d3e224175927a3c87b9b665d173cefeb3f424e1ed8fc8dfbbb4ce33b4bc43163ecf647ba9b502e69c82eb05ddcde66b8d6c99e4 WHIRLPOOL 124c6f91ae1ae980994f8cca483a2090c60b62864abe8d4b9aac725b2131f331d385a6a1e5b7685e4f61ac4e3e53cb22ac0cad9b32ebefa444d2ef00e15f7caa
22 DIST ocaml-ctypes-0.5.0.tar.gz 168414 SHA256 d15df8a065b5b9850400727c0e5cb4eb8ad567c3504278b03065cc766b57bf3e SHA512 0d59b6aec0421e7eb79792bfd02a8f77311bca1787f7b17af0eca4fdaa82a55d27de24bc2c6fa937e3c2b86585cd496d929a7490165e27c49da360e6efd3d67d WHIRLPOOL a84b3d14437cf8a47d09d15a3af67b48ed57a147e09d12f93711102879b2962fbe7b4ea1c327e92da262334bed40d8175c9dd18902f8bc4a19f552b97406fd15
23 DIST ocaml-ctypes-0.5.1.tar.gz 168540 SHA256 51da7276abccb274fd09fda9d024a3469b819d534492afe9c8d549dd953114ec SHA512 03a67c6b995b87c229b04577d2f38a8d699223d5c44c4597e6ac5ff1d74bc22474aea248e9b54d913b83a99ac7ccc61c7c67ca288e4f41b71a63da683b085331 WHIRLPOOL 0eed3a97a7c0fdf568d97b07718171f140aed34d440fa55bb8d21380dddba2f52fa2c3bf61d044da24cd30479c0bdea23bd23b86997adbc14a99bd630fc1ee17
24 +DIST ocaml-ctypes-0.6.0.tar.gz 179019 SHA256 098980e68c4bd1cad1e859fa2bcea4d3dc8a4f9d04c00bc3ebcf28a7480a3fb7 SHA512 3939df612f4d1aba178737269da55ba85b92730112a5c8011ecd006b61c48d8742b8e5a214662879eb7dc72e5b8a990b587b25696e18b9dda71b5280e1ed1be2 WHIRLPOOL fd11ad1b2624a526c69bda89bb17e45d3a22e3cf4d730734b5a551836034ba9bc057156add0af32ce9f3278d60aadfc2610253c76e53cba7d3aff157d2157dba
25
26 diff --git a/dev-ml/ocaml-ctypes/ocaml-ctypes-0.6.0.ebuild b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.6.0.ebuild
27 new file mode 100644
28 index 0000000..d563719
29 --- /dev/null
30 +++ b/dev-ml/ocaml-ctypes/ocaml-ctypes-0.6.0.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +inherit findlib
39 +
40 +DESCRIPTION="Library for binding to C libraries using pure OCaml"
41 +HOMEPAGE="https://github.com/ocamllabs/ocaml-ctypes"
42 +SRC_URI="https://github.com/ocamllabs/ocaml-ctypes/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0/${PV}"
46 +KEYWORDS="~amd64 ~arm ~x86"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + >=dev-lang/ocaml-4.02:=[ocamlopt]
51 + virtual/libffi
52 +"
53 +DEPEND="${RDEPEND}
54 + test? ( dev-ml/ounit )"
55 +
56 +src_compile() {
57 + emake -j1
58 +}
59 +
60 +src_test() {
61 + emake -j1 test
62 +}
63 +
64 +src_install() {
65 + findlib_src_install
66 + dodoc CHANGES.md README.md
67 +}