forked from ocaml/opam-repository
-
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.
[new release] rtop and reason (3.9.0)
CHANGES: - Reduce the amount of parentheses around functor usage (@SanderSpies, [reasonml/reason#2683](reasonml/reason#2683)) - Print module type body on separate line (@SanderSpies, [reasonml/reason#2709](reasonml/reason#2709)) - Fix missing patterns around contraint pattern (a pattern with a type annotation). - Fix top level extension printing - Remove the dependency on the `result` package, which isn't needed for OCaml 4.03 and above (@anmonteiro) [reasonml/reason#2703](reasonml/reason#2703) - Fix the binary parser by converting to the internal AST version used by Reason (@anmonteiro) [reasonml/reason#2713](reasonml/reason#2713) - Port Reason to `ppxlib` (@anmonteiro, [reasonml/reason#2711](reasonml/reason#2711)) - Support OCaml 5.1 (@anmonteiro, [reasonml/reason#2714](reasonml/reason#2714))
- Loading branch information
1 parent
d3826f4
commit 7c1c414
Showing
2 changed files
with
97 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,52 @@ | ||
opam-version: "2.0" | ||
synopsis: "Reason: Syntax & Toolchain for OCaml" | ||
description: """ | ||
Reason gives OCaml a new syntax that is remniscient of languages like | ||
JavaScript. It's also the umbrella project for a set of tools for the OCaml & | ||
JavaScript ecosystem.""" | ||
maintainer: [ | ||
"Jordan Walke <[email protected]>" | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
] | ||
authors: ["Jordan Walke <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://reasonml.github.io/" | ||
bug-reports: "https://github.com/reasonml/reason/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml" {>= "4.03" & < "5.1"} | ||
"ocamlfind" {build} | ||
"dune-build-info" {>= "2.9.3"} | ||
"menhir" {>= "20180523"} | ||
"merlin-extend" {>= "0.6"} | ||
"fix" | ||
"ppx_derivers" | ||
"ppxlib" {>= "0.28.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/reasonml/reason.git" | ||
url { | ||
src: | ||
"https://github.com/reasonml/reason/releases/download/3.9.0/reason-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=8527aafa233e878e08cde756d91e68d140630d2affcdd1d7bbbecd7d1fa32959" | ||
"sha512=ad8e13f26b31d3342987b3a148ca1ab1d93b0dea7623809242cba9c2259630c191c878bb6da0743f9fc5924f29e027fa746a7d2dd36dc46c3aa0857d5680a30e" | ||
] | ||
} | ||
x-commit-hash: "8af1e160522da691aed27f47bf300fca7a80a510" |
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,45 @@ | ||
opam-version: "2.0" | ||
synopsis: "Reason toplevel" | ||
description: | ||
"rtop is the toplevel (or REPL) for Reason, based on utop (https://github.com/diml/utop)." | ||
maintainer: [ | ||
"Jordan Walke <[email protected]>" | ||
"Antonio Nuno Monteiro <[email protected]>" | ||
] | ||
authors: ["Jordan Walke <[email protected]>"] | ||
license: "MIT" | ||
homepage: "https://reasonml.github.io/" | ||
bug-reports: "https://github.com/reasonml/reason/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml" {>= "4.03" & < "5.1"} | ||
"reason" {= version} | ||
"utop" {>= "2.0"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"--promote-install-files=false" | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
["dune" "install" "-p" name "--create-install-files" name] | ||
] | ||
dev-repo: "git+https://github.com/reasonml/reason.git" | ||
url { | ||
src: | ||
"https://github.com/reasonml/reason/releases/download/3.9.0/reason-3.9.0.tbz" | ||
checksum: [ | ||
"sha256=8527aafa233e878e08cde756d91e68d140630d2affcdd1d7bbbecd7d1fa32959" | ||
"sha512=ad8e13f26b31d3342987b3a148ca1ab1d93b0dea7623809242cba9c2259630c191c878bb6da0743f9fc5924f29e027fa746a7d2dd36dc46c3aa0857d5680a30e" | ||
] | ||
} | ||
x-commit-hash: "8af1e160522da691aed27f47bf300fca7a80a510" |