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/variantslib/
Date: Tue, 28 Jun 2016 11:57:45
Message-Id: 1467115007.22fe72734b1f4004572d2d965eb72f5189fc185e.aballier@gentoo
1 commit: 22fe72734b1f4004572d2d965eb72f5189fc185e
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 28 11:06:22 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 11:56:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22fe7273
7
8 dev-ml/variantslib: bump to 113.33.03
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/variantslib/Manifest | 1 +
13 dev-ml/variantslib/variantslib-113.33.03.ebuild | 39 +++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-ml/variantslib/Manifest b/dev-ml/variantslib/Manifest
17 index eedfe56..58bc402 100644
18 --- a/dev-ml/variantslib/Manifest
19 +++ b/dev-ml/variantslib/Manifest
20 @@ -1 +1,2 @@
21 DIST variantslib-113.24.00.tar.gz 50841 SHA256 9cc2a39ee32977e05cb215b3fa53d29601dd644af05e3c1cf28287c9f11288de SHA512 bc583f92d4f3085c213dabf5e77e4628dc092dfe120ec8bb59185bb76068e676e7c60238e965f11f752d5d4fa69144d5e2f949bfd9100037db394f05160b71b0 WHIRLPOOL 470bb0a7a1f80b637a724d79172ee94a694e23349920ec83fa0fae204a5ba46e4ec6c4305a9368ba53bfe1d7bf7ccd21d5efa1cf76c8ba4ea84932283080765d
22 +DIST variantslib-113.33.03.tar.gz 49653 SHA256 3685a40f37117bbedb33d8c4abaeb52c01f8178fb5a88712dd0e0dba533a7717 SHA512 1d83321b1de709ef3bb9329544c6fff5b8dee1125faffefebf2d29b11d5c2139a2fa6664d2eaaff48e89932e5b344dfe1ea898069db60b25079c9cd7344aee04 WHIRLPOOL 9ef9cac585da68a121e1d49e1bd2872c5858373177caf7b5a7c2f08a1c8e9775fd52120bdb7cf588f38e7bd43785d6626c7d5224129efc65d4fffdba68c0ef5f
23
24 diff --git a/dev-ml/variantslib/variantslib-113.33.03.ebuild b/dev-ml/variantslib/variantslib-113.33.03.ebuild
25 new file mode 100644
26 index 0000000..45ce600
27 --- /dev/null
28 +++ b/dev-ml/variantslib/variantslib-113.33.03.ebuild
29 @@ -0,0 +1,39 @@
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_DOCS=1
37 +
38 +inherit oasis
39 +
40 +DESCRIPTION="OCaml variants as first class values"
41 +HOMEPAGE="https://janestreet.github.io/ https://github.com/janestreet/variantslib"
42 +SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0/${PV}"
46 +KEYWORDS="~amd64"
47 +IUSE=""
48 +
49 +RDEPEND=""
50 +DEPEND="${RDEPEND} dev-ml/opam dev-ml/js-build-tools"
51 +
52 +src_configure() {
53 + emake setup.exe
54 + OASIS_SETUP_COMMAND="./setup.exe" oasis_src_configure
55 +}
56 +
57 +src_compile() {
58 + emake
59 +}
60 +
61 +src_install() {
62 + opam-installer -i \
63 + --prefix="${ED}/usr" \
64 + --libdir="${D}/$(ocamlc -where)" \
65 + --docdir="${ED}/usr/share/doc/${PF}" \
66 + ${PN}.install || die
67 + dodoc CHANGES.md
68 +}