Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/reason/
Date: Sat, 29 Jan 2022 19:36:06
Message-Id: 1643484958.4bd2c13ceac71f57a5ce72b48acc2a5039c0b055.xgqt@gentoo
1 commit: 4bd2c13ceac71f57a5ce72b48acc2a5039c0b055
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 19:31:50 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 19:35:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bd2c13c
7
8 dev-ml/reason: restrict to ocaml <4.13; bump to EAPI 8
9
10 Closes: https://bugs.gentoo.org/832338
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
13
14 .../{reason-3.7.0-r1.ebuild => reason-3.7.0-r2.ebuild} | 18 ++++++++++++------
15 1 file changed, 12 insertions(+), 6 deletions(-)
16
17 diff --git a/dev-ml/reason/reason-3.7.0-r1.ebuild b/dev-ml/reason/reason-3.7.0-r2.ebuild
18 similarity index 64%
19 rename from dev-ml/reason/reason-3.7.0-r1.ebuild
20 rename to dev-ml/reason/reason-3.7.0-r2.ebuild
21 index c5b7bcec869d..4836114dfded 100644
22 --- a/dev-ml/reason/reason-3.7.0-r1.ebuild
23 +++ b/dev-ml/reason/reason-3.7.0-r2.ebuild
24 @@ -1,7 +1,7 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 +# Copyright 1999-2022 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=7
30 +EAPI=8
31
32 inherit dune
33
34 @@ -16,6 +16,7 @@ KEYWORDS="~amd64"
35 IUSE="+ocamlopt"
36
37 RDEPEND="
38 + <dev-lang/ocaml-4.13.0:=[ocamlopt?]
39 dev-ml/fix:=
40 dev-ml/menhir:=
41 dev-ml/merlin-extend:=
42 @@ -25,9 +26,14 @@ RDEPEND="
43 "
44 DEPEND="${RDEPEND}"
45
46 -src_install() {
47 - dune_src_install reason
48 - dune_src_install rtop
49 +DOCS=(
50 + CODE_OF_CONDUCT.md HISTORY.md ORIGINS.md PLAN README.md
51 + docs/GETTING_STARTED_CONTRIBUTING.md
52 + docs/TYPE_PARAMETERS_PARSING.md
53 + docs/USING_PARSER_PROGRAMMATICALLY.md
54 +)
55
56 - dodoc *.md
57 +src_install() {
58 + dune-install reason rtop
59 + einstalldocs
60 }