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] ocaml-lsp-server, lsp and jsonrpc (1.16.2)
CHANGES: ## Fixes - Fix file permissions used when specifying output files of pp and ppx. (ocaml/ocaml-lsp#1153)
- Loading branch information
Showing
3 changed files
with
170 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,47 @@ | ||
opam-version: "2.0" | ||
synopsis: "Jsonrpc protocol implemenation" | ||
description: "See https://www.jsonrpc.org/specification" | ||
maintainer: ["Rudi Grinberg <[email protected]>"] | ||
authors: [ | ||
"Andrey Popp <[email protected]>" | ||
"Rusty Key <[email protected]>" | ||
"Louis Roché <[email protected]>" | ||
"Oleksiy Golovko <[email protected]>" | ||
"Rudi Grinberg <[email protected]>" | ||
"Sacha Ayoun <[email protected]>" | ||
"cannorin <[email protected]>" | ||
"Ulugbek Abdullaev <[email protected]>" | ||
"Thibaut Mattio <[email protected]>" | ||
"Max Lantas <[email protected]>" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml/ocaml-lsp" | ||
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"ocaml" {>= "4.08"} | ||
"odoc" {with-doc} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.16.2/lsp-1.16.2.tbz" | ||
checksum: [ | ||
"sha256=1487d5a4e2f2d4f023341058551bdb8ba86c23367b7c5b4fdda3aa7dc02aaec4" | ||
"sha512=4a392f6d3deafc6dd37f9603250e736c8d8195ea42c782252386616e8c1562d744e02beee54ec45254cba23efd343ebb33789babb093b0e70122ba86d7e67717" | ||
] | ||
} | ||
x-commit-hash: "22cefd841bb0b6b9a6fd4fe5befe5eb68d213ce3" |
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,57 @@ | ||
opam-version: "2.0" | ||
synopsis: "LSP protocol implementation in OCaml" | ||
description: """ | ||
|
||
Implementation of the LSP protocol in OCaml. It is designed to be as portable as | ||
possible and does not make any assumptions about IO. | ||
""" | ||
maintainer: ["Rudi Grinberg <[email protected]>"] | ||
authors: [ | ||
"Andrey Popp <[email protected]>" | ||
"Rusty Key <[email protected]>" | ||
"Louis Roché <[email protected]>" | ||
"Oleksiy Golovko <[email protected]>" | ||
"Rudi Grinberg <[email protected]>" | ||
"Sacha Ayoun <[email protected]>" | ||
"cannorin <[email protected]>" | ||
"Ulugbek Abdullaev <[email protected]>" | ||
"Thibaut Mattio <[email protected]>" | ||
"Max Lantas <[email protected]>" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml/ocaml-lsp" | ||
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"jsonrpc" {= version} | ||
"yojson" | ||
"ppx_yojson_conv_lib" {>= "v0.14"} | ||
"cinaps" {with-test} | ||
"ppx_expect" {>= "v0.15.0" & with-test} | ||
"uutf" {>= "1.0.2"} | ||
"odoc" {with-doc} | ||
"ocaml" {>= "4.14"} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@doc" {with-doc} | ||
] | ||
] | ||
url { | ||
src: | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.16.2/lsp-1.16.2.tbz" | ||
checksum: [ | ||
"sha256=1487d5a4e2f2d4f023341058551bdb8ba86c23367b7c5b4fdda3aa7dc02aaec4" | ||
"sha512=4a392f6d3deafc6dd37f9603250e736c8d8195ea42c782252386616e8c1562d744e02beee54ec45254cba23efd343ebb33789babb093b0e70122ba86d7e67717" | ||
] | ||
} | ||
x-commit-hash: "22cefd841bb0b6b9a6fd4fe5befe5eb68d213ce3" |
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,66 @@ | ||
opam-version: "2.0" | ||
synopsis: "LSP Server for OCaml" | ||
description: "An LSP server for OCaml." | ||
maintainer: ["Rudi Grinberg <[email protected]>"] | ||
authors: [ | ||
"Andrey Popp <[email protected]>" | ||
"Rusty Key <[email protected]>" | ||
"Louis Roché <[email protected]>" | ||
"Oleksiy Golovko <[email protected]>" | ||
"Rudi Grinberg <[email protected]>" | ||
"Sacha Ayoun <[email protected]>" | ||
"cannorin <[email protected]>" | ||
"Ulugbek Abdullaev <[email protected]>" | ||
"Thibaut Mattio <[email protected]>" | ||
"Max Lantas <[email protected]>" | ||
] | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml/ocaml-lsp" | ||
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"yojson" | ||
"re" {>= "1.5.0"} | ||
"ppx_yojson_conv_lib" {>= "v0.14"} | ||
"dune-rpc" {>= "3.4.0"} | ||
"chrome-trace" {>= "3.3.0"} | ||
"dyn" | ||
"stdune" | ||
"fiber" {>= "3.1.1" & < "4.0.0"} | ||
"xdg" | ||
"ordering" | ||
"dune-build-info" | ||
"spawn" | ||
"odoc-parser" {>= "2.0.0"} | ||
"ppx_expect" {>= "v0.15.0" & with-test} | ||
"ocamlformat" {with-test & = "0.24.1"} | ||
"ocamlc-loc" {>= "3.7.0"} | ||
"uutf" {>= "1.0.2"} | ||
"pp" {>= "1.1.2"} | ||
"csexp" {>= "1.5"} | ||
"ocamlformat-rpc-lib" {>= "0.21.0"} | ||
"odoc" {with-doc} | ||
"ocaml" {>= "4.14" & < "5.2"} | ||
"merlin-lib" {>= "4.9" & < "5.0"} | ||
] | ||
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-j" | ||
jobs | ||
"ocaml-lsp-server.install" | ||
"--release" | ||
] | ||
] | ||
url { | ||
src: | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.16.2/lsp-1.16.2.tbz" | ||
checksum: [ | ||
"sha256=1487d5a4e2f2d4f023341058551bdb8ba86c23367b7c5b4fdda3aa7dc02aaec4" | ||
"sha512=4a392f6d3deafc6dd37f9603250e736c8d8195ea42c782252386616e8c1562d744e02beee54ec45254cba23efd343ebb33789babb093b0e70122ba86d7e67717" | ||
] | ||
} | ||
x-commit-hash: "22cefd841bb0b6b9a6fd4fe5befe5eb68d213ce3" |