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/biniou/
Date: Mon, 11 Jul 2016 10:30:31
Message-Id: 1468233014.cd6a24c9a2bfc66f9a30e10742ff65f2bb272763.aballier@gentoo
1 commit: cd6a24c9a2bfc66f9a30e10742ff65f2bb272763
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 11 10:26:55 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 11 10:30:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd6a24c9
7
8 dev-ml/biniou: bump to 1.0.12; update homepage & src_uri
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/biniou/Manifest | 1 +
13 dev-ml/biniou/biniou-1.0.12.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-ml/biniou/Manifest b/dev-ml/biniou/Manifest
17 index 31c44be..a5ee8f4 100644
18 --- a/dev-ml/biniou/Manifest
19 +++ b/dev-ml/biniou/Manifest
20 @@ -1 +1,2 @@
21 +DIST biniou-1.0.12.tar.gz 24262 SHA256 b946e720d94d524b95bb0401d9e47a971e9234df808fe5f12601140ab09ec686 SHA512 df729e4064f6726efa409ceb5e6ff1987923d9cd28339d6e1c4c185a07c0738b027cafba33a139483eeb8f88e58f66fbb6a57d8e748e7355073a7622fb4d7a07 WHIRLPOOL ae337546d7737a733cedc78fd515bf55603edf9b49be3587ca97d45887ecaac82d072aa8391c72b8142aaadbe7b7d1e4394da1c28ee3d16eb8985c85d665f8fd
22 DIST biniou-1.0.9.tar.gz 23963 SHA256 eb47c48f61b169e652629e7f2ee582dfd5965e640ee51bf28fab63b960864392 SHA512 8bc640da28ad8f95952b7a0965f8b40c6128264fb4cd5b517cba2e65b432803a01dc75e42d9d339376dbb962285c7e4ad8290f2536f58d092fe7269b731fb332 WHIRLPOOL aa7cf2486886cd26513028065d654f7c1b768e4950f568147758d5fa61cb6fcdc11a2f3da5ed6b60b8eadee14e3b8885e5197d52e01c8a61b284712cea7e9aa9
23
24 diff --git a/dev-ml/biniou/biniou-1.0.12.ebuild b/dev-ml/biniou/biniou-1.0.12.ebuild
25 new file mode 100644
26 index 0000000..8f403bb
27 --- /dev/null
28 +++ b/dev-ml/biniou/biniou-1.0.12.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit findlib
37 +
38 +DESCRIPTION="A binary data serialization format inspired by JSON for OCaml"
39 +HOMEPAGE="https://github.com/mjambon/biniou"
40 +SRC_URI="https://github.com/mjambon/biniou/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +SLOT="0/${PV}"
43 +LICENSE="BSD"
44 +KEYWORDS="~amd64"
45 +IUSE="+ocamlopt"
46 +
47 +RDEPEND=">=dev-lang/ocaml-3.11:=[ocamlopt?]
48 + dev-ml/easy-format:=[ocamlopt?]
49 +"
50 +DEPEND="${RDEPEND}"
51 +
52 +src_compile() {
53 + emake all
54 + use ocamlopt && emake opt
55 +}
56 +
57 +src_install() {
58 + use ocamlopt && dodir /usr/bin
59 + findlib_src_install BINDIR="${ED}"/usr/bin
60 + dodoc README.md Changes
61 +}