From 01a601d4167502cea01f0b208f6da9b4157f27e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Fri, 26 Jun 2026 23:55:21 +0200 Subject: [PATCH] dev-ml/reason: bump to 3.18.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- dev-ml/reason/Manifest | 1 + dev-ml/reason/reason-3.18.0.ebuild | 47 ++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 dev-ml/reason/reason-3.18.0.ebuild diff --git a/dev-ml/reason/Manifest b/dev-ml/reason/Manifest index 6f59ea3d09743..6a72a55c157eb 100644 --- a/dev-ml/reason/Manifest +++ b/dev-ml/reason/Manifest @@ -1 +1,2 @@ DIST reason-3.17.3.gh.tar.gz 630096 BLAKE2B c7bf06a3f7db9c28678c3272af28ca243d8f5abf0df8b31982c77e787134af2df9080459c94dc3b80e9cfb14c26346622b43efd0cbe644943426b5438b02f2df SHA512 8d7ab79e392d657de894383a3aa86bd142ebdc6a6ef98d5cb9fe09425b250ce59507aa2fe4780a0c581e92d23c9b9de6929da85bd066027a441f63558a6ad1cf +DIST reason-3.18.0.gh.tar.gz 622108 BLAKE2B 1e7163ef3a2c438e55995c07dc4cf5b3a4a24140b9f65d575798a993ba1f116b576a69e0346c0960b7f70cc100e1c95fafd264033f1f7713dd8e469eab997f13 SHA512 2e7e5c9cbab7f0c9f517e42a3794758bdb6c47c5e09ebacfaeeb8720e6ee527554347ca955b6511a04ea8f90bc4c7ee3f51e249f51dfefac3a4e45d0f3307b21 diff --git a/dev-ml/reason/reason-3.18.0.ebuild b/dev-ml/reason/reason-3.18.0.ebuild new file mode 100644 index 0000000000000..631c038814543 --- /dev/null +++ b/dev-ml/reason/reason-3.18.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2026 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/ + https://github.com/reasonml/reason/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/reasonml/${PN}" +else + SRC_URI="https://github.com/reasonml/${PN}/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0/${PV}" +IUSE="+ocamlopt" + +RDEPEND=" + dev-ml/cppo:=[ocamlopt?] + dev-ml/dune-build-info:=[ocamlopt?] + dev-ml/fix:=[ocamlopt?] + dev-ml/menhir:=[ocamlopt?] + dev-ml/merlin-extend:=[ocamlopt?] + dev-ml/ppx_derivers:=[ocamlopt?] + dev-ml/ppxlib:=[ocamlopt?] + dev-ml/utop:=[ocamlopt?] +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + dev-ml/findlib +" + +src_install() { + dune-install reason rtop + dodoc ./*.md ./docs/*.md +}