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/reactiveData/
Date: Sat, 30 Jan 2016 16:36:05
Message-Id: 1454171440.f7786b74a481503746c66d8bb6d33b7fc0f348fd.aballier@gentoo
1 commit: f7786b74a481503746c66d8bb6d33b7fc0f348fd
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 16:19:19 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 16:30:40 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7786b74
7
8 dev-ml/reactiveData: bump to 0.2 and update homepage / src_uri
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/reactiveData/Manifest | 1 +
14 dev-ml/reactiveData/reactiveData-0.2.ebuild | 37 +++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/dev-ml/reactiveData/Manifest b/dev-ml/reactiveData/Manifest
18 index c27121f..3e91283 100644
19 --- a/dev-ml/reactiveData/Manifest
20 +++ b/dev-ml/reactiveData/Manifest
21 @@ -1 +1,2 @@
22 DIST reactiveData-0.1.tar.gz 17074 SHA256 fc755843daaf3bdf1190d9fbfb63e760d4a0378dea2ae4da7b371b696c4cde14 SHA512 4c1d000d7c8713d365473e924ad22cc285a0d30009e4f3a4c23cb2fed9678209860cbfe9787b4aef24c9d1fe3b8bf2f71609e45bd52abdff5e27adc3afa651c0 WHIRLPOOL 4d9de7aca80f7ed6c1f83247170eec7289da9af2030f462a7a5bfe153d532621c1d1ec38dfd4237654da43694bd5972e55a44224513125117b2e7e24d725a95b
23 +DIST reactiveData-0.2.tar.gz 21063 SHA256 d80d425d2746ffc7bd1b88e9528b8236a5ca13cca636662dee1a59e96d675367 SHA512 ed6c82b499f7a740dcf3c39825dd9a98b73ab32d15159e372253a2ca9c8406301cd569654d02f5be2530b491b101587bb628984b0b6f1ce1cc21aab010e518cf WHIRLPOOL 819a6d999d84056967c34c9e451655b86840d30bf88903eb1a55bff41dbf552c6bac9dfa61b2d1a6c76c7806f6f61e307b27f382fc66ee7f380c2da5a4f72817
24
25 diff --git a/dev-ml/reactiveData/reactiveData-0.2.ebuild b/dev-ml/reactiveData/reactiveData-0.2.ebuild
26 new file mode 100644
27 index 0000000..47f1e3c
28 --- /dev/null
29 +++ b/dev-ml/reactiveData/reactiveData-0.2.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2014 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="5"
36 +
37 +DESCRIPTION="Functional reactive programming with incremental changes in data structures"
38 +HOMEPAGE="https://github.com/ocsigen/reactiveData"
39 +SRC_URI="https://github.com/ocsigen/reactiveData/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="LGPL-3-with-linking-exception"
42 +SLOT="0/${PV}"
43 +KEYWORDS="~amd64"
44 +IUSE="+ocamlopt"
45 +
46 +RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
47 + dev-ml/react:="
48 +DEPEND="${RDEPEND}
49 + dev-ml/findlib
50 + dev-ml/opam
51 +"
52 +
53 +src_compile() {
54 + ocaml pkg/build.ml \
55 + native=$(usex ocamlopt true false) \
56 + native-dynlink=$(usex ocamlopt true false) \
57 + || die
58 +}
59 +
60 +src_install() {
61 + opam-installer \
62 + --prefix="${ED}/usr" \
63 + --libdir="${D}/$(ocamlc -where)" \
64 + --docdir="${ED}/usr/share/doc/${PF}" \
65 + || die
66 + dodoc README.md
67 +}