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-containers/
Date: Fri, 30 Dec 2016 16:33:08
Message-Id: 1483105644.ad1dbb66da4dd9f3093a0767bec747fb8d9ba8d4.aballier@gentoo
1 commit: ad1dbb66da4dd9f3093a0767bec747fb8d9ba8d4
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 30 13:47:24 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 30 13:47:24 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1dbb66
7
8 dev-ml/ocaml-containers: bump to 0.22.1
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/ocaml-containers/Manifest | 1 +
13 .../ocaml-containers-0.22.1.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-ml/ocaml-containers/Manifest b/dev-ml/ocaml-containers/Manifest
17 index 5834b28..77b4f9f 100644
18 --- a/dev-ml/ocaml-containers/Manifest
19 +++ b/dev-ml/ocaml-containers/Manifest
20 @@ -1 +1,2 @@
21 +DIST ocaml-containers-0.22.1.tar.gz 429672 SHA256 2ef64e8ed93211dfd4f8cd594943db3cde81ee0400b17703d8a7993128634622 SHA512 9294d43485cd17998f9d0c758ee0ffdc187ea78f1f456c0b06a57a9401c6de529e9e68bad12908b2b0da5f22fca64835acb90f3dfd6ee3403bb7c3c301cd6821 WHIRLPOOL 67844578447b321439223b5f560258cb5d5417135dfdbfdaf2fa10e104beb764e9ca6ae0ab774864c974d928e75aa5aedc7e90ea5659d910f33349a7ec4b568b
22 DIST ocaml-containers-0.22.tar.gz 429678 SHA256 883e64a6b2275355086521a67d5fe0e436bbf79f54c8fb068a05ab3cf3408e98 SHA512 1454f8bcd11d02a9efd2fe223e2db591d2e1d66df6877af920b4d8a2cc3a2c6b34b0979069015565618700dfb4a74d6a8f2d8cd8f9fc6fa7888331320ea41c46 WHIRLPOOL f5993d629fe2a803b1284cd5794f3345060215cf16bb97347dd2173b7015735ddcd43b98c3b5ccf365d372ffedf77892e862fbc276b24468699a95492dc784e7
23
24 diff --git a/dev-ml/ocaml-containers/ocaml-containers-0.22.1.ebuild b/dev-ml/ocaml-containers/ocaml-containers-0.22.1.ebuild
25 new file mode 100644
26 index 00000000..ad9387a
27 --- /dev/null
28 +++ b/dev-ml/ocaml-containers/ocaml-containers-0.22.1.ebuild
29 @@ -0,0 +1,33 @@
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 +OASIS_BUILD_TESTS=1
37 +OASIS_BUILD_DOCS=1
38 +
39 +inherit oasis
40 +
41 +DESCRIPTION="A modular standard library focused on data structures"
42 +HOMEPAGE="https://github.com/c-cube/ocaml-containers"
43 +SRC_URI="https://github.com/c-cube/ocaml-containers/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="BSD-2"
46 +SLOT="0/${PV}"
47 +KEYWORDS="~amd64"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + dev-ml/result:=
52 + >=dev-ml/sequence-0.9:=
53 +"
54 +DEPEND="${RDEPEND} dev-ml/cppo
55 + test? ( dev-ml/iTeML )"
56 +
57 +src_configure() {
58 + oasis_configure_opts="
59 + --enable-unix
60 + --disable-bench
61 + " oasis_src_configure
62 +}