diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-03-09 00:35:22 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-03-09 02:36:44 +0100 |
commit | 40789a898b65633bafac77d0e2350acef3c3821b (patch) | |
tree | 9448bd2d8f5a6ef70c2bb663ff5230d2f15d3ef0 /dev-ml/reason/reason-3.8.0.ebuild | |
parent | Revert "dev-cpp/pangomm: drop 2.42.2-r1" (diff) | |
download | gentoo-40789a898b65633bafac77d0e2350acef3c3821b.tar.gz gentoo-40789a898b65633bafac77d0e2350acef3c3821b.tar.bz2 gentoo-40789a898b65633bafac77d0e2350acef3c3821b.zip |
dev-ml/reason: bump to 3.8.0
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-ml/reason/reason-3.8.0.ebuild')
-rw-r--r-- | dev-ml/reason/reason-3.8.0.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-ml/reason/reason-3.8.0.ebuild b/dev-ml/reason/reason-3.8.0.ebuild new file mode 100644 index 000000000000..29a823b9621d --- /dev/null +++ b/dev-ml/reason/reason-3.8.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Simple, fast & type safe language that leverages JavaScript and OCaml" +HOMEPAGE="https://reasonml.github.io" +SRC_URI="https://github.com/reasonml/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="+ocamlopt" + +RDEPEND=" + dev-ml/fix:= + dev-ml/menhir:= + dev-ml/merlin-extend:= + dev-ml/ocaml-migrate-parsetree:= + dev-ml/result:= + dev-ml/utop:= +" +DEPEND="${RDEPEND}" + +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 +) + +src_install() { + dune-install reason rtop + einstalldocs +} |