diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-01-29 20:31:50 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-01-29 20:35:58 +0100 |
commit | 4bd2c13ceac71f57a5ce72b48acc2a5039c0b055 (patch) | |
tree | b351bc9ed88e5a5ddcfe54b2ecd8418b834c4edc /dev-ml/reason | |
parent | dev-util/libabigail: add sys-libs/fts-standalone to rdep on musl (diff) | |
download | gentoo-4bd2c13ceac71f57a5ce72b48acc2a5039c0b055.tar.gz gentoo-4bd2c13ceac71f57a5ce72b48acc2a5039c0b055.tar.bz2 gentoo-4bd2c13ceac71f57a5ce72b48acc2a5039c0b055.zip |
dev-ml/reason: restrict to ocaml <4.13; bump to EAPI 8
Closes: https://bugs.gentoo.org/832338
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-ml/reason')
-rw-r--r-- | dev-ml/reason/reason-3.7.0-r2.ebuild (renamed from dev-ml/reason/reason-3.7.0-r1.ebuild) | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/dev-ml/reason/reason-3.7.0-r1.ebuild b/dev-ml/reason/reason-3.7.0-r2.ebuild index c5b7bcec869d..4836114dfded 100644 --- a/dev-ml/reason/reason-3.7.0-r1.ebuild +++ b/dev-ml/reason/reason-3.7.0-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit dune @@ -16,6 +16,7 @@ KEYWORDS="~amd64" IUSE="+ocamlopt" RDEPEND=" + <dev-lang/ocaml-4.13.0:=[ocamlopt?] dev-ml/fix:= dev-ml/menhir:= dev-ml/merlin-extend:= @@ -25,9 +26,14 @@ RDEPEND=" " DEPEND="${RDEPEND}" -src_install() { - dune_src_install reason - dune_src_install rtop +DOCS=( + CODE_OF_CONDUCT.md HISTORY.md ORIGINS.md PLAN README.md + docs/GETTING_STARTED_CONTRIBUTING.md + docs/TYPE_PARAMETERS_PARSING.md + docs/USING_PARSER_PROGRAMMATICALLY.md +) - dodoc *.md +src_install() { + dune-install reason rtop + einstalldocs } |