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/typerep/
Date: Tue, 28 Jun 2016 11:57:46
Message-Id: 1467115007.5d4782f603d3e956b696b783f5879aabfef27fa1.aballier@gentoo
1 commit: 5d4782f603d3e956b696b783f5879aabfef27fa1
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 28 11:07:32 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=5d4782f6
7
8 dev-ml/typerep: bump to 113.33.03
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/typerep/Manifest | 1 +
13 dev-ml/typerep/typerep-113.33.03.ebuild | 41 +++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-ml/typerep/Manifest b/dev-ml/typerep/Manifest
17 index e4fa054..2abfe6e 100644
18 --- a/dev-ml/typerep/Manifest
19 +++ b/dev-ml/typerep/Manifest
20 @@ -1 +1,2 @@
21 DIST typerep-113.24.00.tar.gz 71153 SHA256 838906c155d682644b3e6b55fad480f7ac93c03eb51a1d126665b4f2aa830e8b SHA512 3126d89cdfa8f052a2af3937fd9a1d205f18b26b761094a71518329b07f443da06f2db9fc79a22da621f5b2af91a352eda3119b73c3fd0fe80bf882da952d796 WHIRLPOOL 01a8864a6e66dcc21fe5d79156a298a7b51c99e0d6a08b48256f904baaa9b2bae6370e267d95f282922b455bbdfe3d72cdce802cb78515f42b46f264918e34db
22 +DIST typerep-113.33.03.tar.gz 69967 SHA256 dea99f5248af97d46550e439d5715ccc79807b04c481ae494b8a0814eb2a3bad SHA512 656db4530a1a24ac5c493baaa3cfa4ff453a63b060f5c7b7c463f4c2cd26ad70cd2992c1973fbd0241992b51b8c071c65c18eed78f7a37c162ecda21b29003d0 WHIRLPOOL ace20f51f8530b20662eae292eb9af01bf8b51db5cb78483dc391be8c415012690a61b15b3363bea38683c87f0da49aae391d6896f895310fc7edc507694d664
23
24 diff --git a/dev-ml/typerep/typerep-113.33.03.ebuild b/dev-ml/typerep/typerep-113.33.03.ebuild
25 new file mode 100644
26 index 0000000..7e9fbf2
27 --- /dev/null
28 +++ b/dev-ml/typerep/typerep-113.33.03.ebuild
29 @@ -0,0 +1,41 @@
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 oasis
37 +
38 +DESCRIPTION="Library for creating runtime representation of OCaml types"
39 +HOMEPAGE="http://www.janestreet.com/ocaml"
40 +SRC_URI="http://ocaml.janestreet.com/ocaml-core/${PV%.*}/files/${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +DEPEND="
48 + >=dev-ml/type-conv-111.13:=
49 + dev-ml/camlp4:="
50 +
51 +RDEPEND="${DEPEND}"
52 +DEPEND="${DEPEND} dev-ml/opam dev-ml/js-build-tools"
53 +
54 +src_configure() {
55 + emake setup.exe
56 + OASIS_SETUP_COMMAND="./setup.exe" oasis_src_configure
57 +}
58 +
59 +src_compile() {
60 + emake
61 +}
62 +
63 +src_install() {
64 + opam-installer -i \
65 + --prefix="${ED}/usr" \
66 + --libdir="${D}/$(ocamlc -where)" \
67 + --docdir="${ED}/usr/share/doc/${PF}" \
68 + ${PN}.install || die
69 + dodoc CHANGES.md
70 +}