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/utop/
Date: Tue, 30 May 2017 18:08:49
Message-Id: 1496167709.110cc72b82a2706237d5d9ae5ea6e3fc50c75fcd.aballier@gentoo
1 commit: 110cc72b82a2706237d5d9ae5ea6e3fc50c75fcd
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 30 14:37:45 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue May 30 18:08:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=110cc72b
7
8 dev-ml/utop: bump to 2.0.1
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-ml/utop/Manifest | 1 +
13 dev-ml/utop/utop-2.0.1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
17 index cbde3cb1891..5810adf7392 100644
18 --- a/dev-ml/utop/Manifest
19 +++ b/dev-ml/utop/Manifest
20 @@ -1,2 +1,3 @@
21 DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599
22 DIST utop-2.0.0.tar.gz 57421 SHA256 0a69e5ec055db223cf878d7fdda3b389dc5d42649cc99b5877db507767ce52b6 SHA512 12def269f18be292645d6339f80ffe85823d8095940acb57a03f99ea3f2fe2559662921e3a38d6381ec7246245164b5e2c6b5fc843bdb4fd07ad2377c73da207 WHIRLPOOL 8baf739295132c785d55001bba2aabe24e0f4b3e78214be3a3ac19ffa8baa80ab513d31225500f2dc18018284267be6a235d012f32d7e6c68c829e98358f1410
23 +DIST utop-2.0.1.tar.gz 57523 SHA256 5a93793a3a33724716bdb8e6829eaa85a792c5f5939eb86f5d8bbf1df85f42ec SHA512 66e7858a44ddd038f08073f9530c790f3ad44134899793c9f5e689d0e1786d2e2751bf38c6be33979292942b00dd6ff2db421025e12f49e05c4a694df36d23e3 WHIRLPOOL bfb06654e52f124739eeeb1568157d6377f8749eddaaf5c0761056da5754a486f9db0f89a21d60c1030be88400bd1cf5782c58337421c56412ea8b5b7631ed9f
24
25 diff --git a/dev-ml/utop/utop-2.0.1.ebuild b/dev-ml/utop/utop-2.0.1.ebuild
26 new file mode 100644
27 index 00000000000..3bfacb103f4
28 --- /dev/null
29 +++ b/dev-ml/utop/utop-2.0.1.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +
36 +inherit findlib
37 +
38 +DESCRIPTION="A new toplevel for OCaml with completion and colorization"
39 +HOMEPAGE="https://github.com/diml/utop"
40 +SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +DEPEND="
48 + dev-lang/ocaml:=
49 + >=dev-ml/lwt-2.4.0:=
50 + dev-ml/lwt_react:=
51 + >=dev-ml/lambda-term-1.2:=
52 + >=dev-ml/zed-1.2:=
53 + >=dev-ml/cppo-1.0.1:=
54 + dev-ml/findlib:=
55 +"
56 +RDEPEND="${DEPEND}"
57 +DEPEND="${DEPEND}
58 + dev-ml/opam
59 + dev-ml/jbuilder"
60 +
61 +DOCS=( "CHANGES.md" "README.md" )
62 +SITEFILE="50${PN}-gentoo.el"
63 +
64 +src_install() {
65 + opam-installer -i \
66 + --prefix="${ED}/usr" \
67 + --libdir="${D}/$(ocamlc -where)" \
68 + --docdir="${ED}/usr/share/doc/${PF}" \
69 + --mandir="${ED}/usr/share/man" \
70 + ${PN}.install || die
71 +}