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: Tue, 01 Aug 2017 12:01:44
Message-Id: 1501588889.13fcf3a99f24ee29abd58a3bb6cc5448141251f0.aballier@gentoo
1 commit: 13fcf3a99f24ee29abd58a3bb6cc5448141251f0
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 08:30:35 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 12:01:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13fcf3a9
7
8 dev-ml/ocaml-containers: bump to 1.3
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-ml/ocaml-containers/Manifest | 1 +
13 .../ocaml-containers/ocaml-containers-1.3.ebuild | 32 ++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-ml/ocaml-containers/Manifest b/dev-ml/ocaml-containers/Manifest
17 index b407c11aa26..738af0197e3 100644
18 --- a/dev-ml/ocaml-containers/Manifest
19 +++ b/dev-ml/ocaml-containers/Manifest
20 @@ -1 +1,2 @@
21 DIST ocaml-containers-1.2.tar.gz 293774 SHA256 1c7825fbefaf90c3f9f9367ce0abda95f1dda242b1db560ed51c75ef0c6b5b15 SHA512 c5d94760a51a94aca1482ce3720450bce4448090609737a5be50f99c8884441df4676da953b31bdb8f10dd2fca3235b6e9e8d1580bd3fa917b03408a9a14b28d WHIRLPOOL a365c6992d926d2c4045da0a39052c7eba71eb3c937eca126a186e393fefdf199fe1e40f5cde21539df914e235ce8e3dcd7712da86160a2ef1631cf223c3be65
22 +DIST ocaml-containers-1.3.tar.gz 299928 SHA256 839495aaca4f7bf681b8af931a5de7d51a5076e5c30a5fbf83f4b1de8216aa57 SHA512 d4402be1d11fee883bdf2b4fcc339df6ef175ac2d6532ee865c36656473c4882290e45f2efd9b90af7298fc3ffa0ce27fb83d8c7166edeafff798ceccad929e8 WHIRLPOOL 7292527f99eb92832b7e4b495cfbd6e2fe179d8c1496256f2016489f6f5e8ec0c1509cc5aa05c7af49999b73a0f2eaf77fa6d2bf4310cf68a4762a3ab9a0994e
23
24 diff --git a/dev-ml/ocaml-containers/ocaml-containers-1.3.ebuild b/dev-ml/ocaml-containers/ocaml-containers-1.3.ebuild
25 new file mode 100644
26 index 00000000000..33e8871a4f7
27 --- /dev/null
28 +++ b/dev-ml/ocaml-containers/ocaml-containers-1.3.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +OASIS_BUILD_TESTS=1
36 +OASIS_BUILD_DOCS=1
37 +
38 +inherit oasis
39 +
40 +DESCRIPTION="A modular standard library focused on data structures"
41 +HOMEPAGE="https://github.com/c-cube/ocaml-containers"
42 +SRC_URI="https://github.com/c-cube/ocaml-containers/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD-2"
45 +SLOT="0/${PV}"
46 +KEYWORDS="~amd64"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + dev-ml/result:=
51 + >=dev-ml/sequence-0.9:=
52 +"
53 +DEPEND="${RDEPEND} dev-ml/cppo
54 + test? ( dev-ml/iTeML dev-ml/ounit dev-ml/gen )"
55 +
56 +src_configure() {
57 + oasis_configure_opts="
58 + --enable-unix
59 + --disable-bench
60 + " oasis_src_configure
61 +}