forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-lang/reason: new package; add version 3.7.0
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć <[email protected]>
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST reason-3.7.0.tgz 1188558 BLAKE2B e5d9cebf98f95824b78d440fa9f91460eae1a1ed44a38e74be4f9404a0bdec046578d25febdf55c266466bffc16b4449e982f157b6d5aabfa1d507fdc3eb5aaf SHA512 263059970c88e105f09e8e47b3967add11fda31a79942f573c90a0ccb04149a5baaf3c3bbd1dd5a085ccdd3e63505f84855dd0fb888d34a9e9eda3248f300e24 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
|
||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>ML</name> | ||
</maintainer> | ||
<longdescription> | ||
Reason provides a new ES6-inspired syntax for OCaml. It's also the umbrella | ||
project for a set of tools for the OCaml and JavaScript ecosystems. | ||
</longdescription> | ||
<upstream> | ||
<bugs-to>https://github.com/facebook/reason/issues/</bugs-to> | ||
<remote-id type="github">facebook/reason</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit dune | ||
|
||
DESCRIPTION="Simple, fast & type safe language that leverages JavaScript and OCaml" | ||
HOMEPAGE="https://reasonml.github.io" | ||
SRC_URI="https://registry.npmjs.org/@esy-ocaml/${PN}/-/${P}.tgz" | ||
S="${WORKDIR}/package" | ||
|
||
LICENSE="BSD" | ||
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}" |