commit:     6722eadd1161180ea529da2ecc844d1533e89cbd
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 28 11:18:16 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Nov 28 13:28:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6722eadd

dev-ml/reactiveData: bump to 0.2.1

Package-Manager: portage-2.3.2

 dev-ml/reactiveData/Manifest                  |  1 +
 dev-ml/reactiveData/reactiveData-0.2.1.ebuild | 46 +++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-ml/reactiveData/Manifest b/dev-ml/reactiveData/Manifest
index 4fd5561..534844d 100644
--- a/dev-ml/reactiveData/Manifest
+++ b/dev-ml/reactiveData/Manifest
@@ -1 +1,2 @@
+DIST reactiveData-0.2.1.tar.gz 21219 SHA256 
6e936dd738f5b48470c0479f8e184bce69c3162ed1c08ae66541450bca079a71 SHA512 
e4dad870fd1f669566394d9c2ab52665a3d27f6b2dd3807dba245d89ca90eda08b98b266fb0795bcfa5cb4ffed7a86aa719f8db5c316b0d920ee3c342493d029
 WHIRLPOOL 
0044466c7a7965985ee2a633af1bdb0e00ee84e97f3430cfd5c7523d7437c9e55cc51367014804a1540b28cc69c6286c532d4c458b537c1a90bdd7fd3e75f66a
 DIST reactiveData-0.2.tar.gz 21063 SHA256 
d80d425d2746ffc7bd1b88e9528b8236a5ca13cca636662dee1a59e96d675367 SHA512 
ed6c82b499f7a740dcf3c39825dd9a98b73ab32d15159e372253a2ca9c8406301cd569654d02f5be2530b491b101587bb628984b0b6f1ce1cc21aab010e518cf
 WHIRLPOOL 
819a6d999d84056967c34c9e451655b86840d30bf88903eb1a55bff41dbf552c6bac9dfa61b2d1a6c76c7806f6f61e307b27f382fc66ee7f380c2da5a4f72817

diff --git a/dev-ml/reactiveData/reactiveData-0.2.1.ebuild 
b/dev-ml/reactiveData/reactiveData-0.2.1.ebuild
new file mode 100644
index 00000000..59dac46
--- /dev/null
+++ b/dev-ml/reactiveData/reactiveData-0.2.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+DESCRIPTION="Functional reactive programming with incremental changes in data 
structures"
+HOMEPAGE="https://github.com/ocsigen/reactiveData";
+
+if [ "${PV#9999}" != "${PV}" ] ; then
+       inherit git-r3
+       SRC_URI=""
+       EGIT_REPO_URI="https://github.com/ocsigen/reactiveData";
+       KEYWORDS=""
+else
+       SRC_URI="https://github.com/ocsigen/reactiveData/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+       KEYWORDS="~amd64"
+fi
+
+LICENSE="LGPL-3-with-linking-exception"
+SLOT="0/${PV}"
+IUSE="+ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
+       dev-ml/react:="
+DEPEND="${RDEPEND}
+       dev-ml/findlib
+       dev-ml/opam
+       dev-ml/ocamlbuild
+"
+
+src_compile() {
+       ocaml pkg/build.ml \
+               native=$(usex ocamlopt true false) \
+               native-dynlink=$(usex ocamlopt true false) \
+               || die
+}
+
+src_install() {
+       opam-installer \
+               --prefix="${ED}/usr" \
+               --libdir="${D}/$(ocamlc -where)" \
+               --docdir="${ED}/usr/share/doc/${PF}" \
+               || die
+       dodoc README.md
+}

Reply via email to