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: Sun, 12 Feb 2017 13:11:04
Message-Id: 1486904659.3c1d75c6f3abc653b58dedc65b27c8167b30d8d7.aballier@gentoo
1 commit: 3c1d75c6f3abc653b58dedc65b27c8167b30d8d7
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 13:04:19 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 13:04:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c1d75c6
7
8 dev-ml/ocaml-containers: Add 1.0 without keywords since it breaks its sole revdep.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/ocaml-containers/Manifest | 1 +
13 .../ocaml-containers/ocaml-containers-1.0.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-ml/ocaml-containers/Manifest b/dev-ml/ocaml-containers/Manifest
17 index 5fd1cfceee..a78513082b 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-1.0.tar.gz 378474 SHA256 d31239782eda4ffddc6358add3089e3a389aab7682b8202fd7db90075a703e75 SHA512 a22bd66c522f734c6081d1675af3d110cf1e9b4d3bd066aa9366c25fc840890a4ef779fa68ded84ef1b09df37fa7c217dfed1c15b1243f511ebfd24d7f0d2590 WHIRLPOOL a883d3052b400f66905441720164ee68e51353a4940ddcec0d05bef08533549dad7d428fce05d49a235a5a6586b3aca23ec757cf5abff6f4d84d5b75b8751569
23
24 diff --git a/dev-ml/ocaml-containers/ocaml-containers-1.0.ebuild b/dev-ml/ocaml-containers/ocaml-containers-1.0.ebuild
25 new file mode 100644
26 index 0000000000..e79487b775
27 --- /dev/null
28 +++ b/dev-ml/ocaml-containers/ocaml-containers-1.0.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2017 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 +# Breaks onanomsg, its sole revdep
48 +#KEYWORDS="~amd64"
49 +IUSE="test"
50 +
51 +RDEPEND="
52 + dev-ml/result:=
53 + >=dev-ml/sequence-0.9:=
54 +"
55 +DEPEND="${RDEPEND} dev-ml/cppo
56 + test? ( dev-ml/iTeML )"
57 +
58 +src_configure() {
59 + oasis_configure_opts="
60 + --enable-unix
61 + --disable-bench
62 + " oasis_src_configure
63 +}