Skip to content

Commit 57f871c

Browse files
authored
Merge pull request #28532 from ejgallego/release-coq-lsp-0.2.4+8.20
[new release] coq-lsp (0.2.4+8.20)
2 parents ab43207 + 49ec508 commit 57f871c

File tree

1 file changed

+81
-0
lines changed
  • packages/coq-lsp/coq-lsp.0.2.4+8.20

1 file changed

+81
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
synopsis: "Language Server Protocol native server for Coq"
2+
description:
3+
"""
4+
Language Server Protocol native server for Coq
5+
"""
6+
opam-version: "2.0"
7+
maintainer: "[email protected]"
8+
bug-reports: "https://github.com/ejgallego/coq-lsp/issues"
9+
homepage: "https://github.com/ejgallego/coq-lsp"
10+
dev-repo: "git+https://github.com/ejgallego/coq-lsp.git"
11+
authors: [
12+
"Emilio Jesús Gallego Arias <[email protected]>"
13+
"Ali Caglayan <[email protected]>"
14+
"Shachar Itzhaky <[email protected]>"
15+
"Ramkumar Ramachandra <[email protected]>"
16+
]
17+
license: "LGPL-2.1-or-later"
18+
doc: "https://ejgallego.github.io/coq-lsp/"
19+
20+
depends: [
21+
22+
("ocaml" {>= "5.0"} | ("ocaml" {<= "5.0"} & "memprof-limits" { >= "0.2.1" } ))
23+
24+
"dune" { >= "3.2.0" }
25+
26+
# lsp dependencies
27+
"cmdliner" { >= "1.1.0" }
28+
"yojson" { >= "1.7.0" }
29+
"uri" { >= "4.2.0" }
30+
"dune-build-info" { >= "3.2.0" }
31+
32+
# coq-layout-printer
33+
"tyxml" { >= "4.5.0" }
34+
35+
# for waterproof json parser
36+
"menhir" { >= "20220210" }
37+
38+
# unit testing
39+
"ppx_inline_test" { >= "v0.15.0" }
40+
41+
# Coq
42+
"coq" { >= "8.20" < "8.21" }
43+
44+
# This is now a hard dep due to API changes in 1.9.7
45+
"ocamlfind" { >= "1.9.8" }
46+
47+
# serlib deps
48+
"ppx_deriving" { >= "5.2" }
49+
"ppx_deriving_yojson" { >= "3.7.0" }
50+
"ppx_import" { >= "1.11.0" }
51+
"sexplib" { >= "v0.15.0" & < "v0.18" }
52+
"ppx_sexp_conv" { >= "v0.15.0" & < "v0.18" }
53+
"ppx_compare" { >= "v0.15.0" & < "v0.18" }
54+
"ppx_hash" { >= "v0.15.0" & < "v0.18" }
55+
]
56+
57+
# older results get in mess with ppx_deriving, we cannot control how
58+
# it gets pulled, often in min-bound rev-dep, so we conflict with it
59+
conflicts: [ "result" { < "1.5" } ]
60+
61+
depopts: ["lwt" "logs"]
62+
63+
build: [
64+
[ "rm" "-rf" "vendor" ]
65+
[ "dune" "build" "-p" name "-j" jobs ]
66+
]
67+
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]
68+
69+
x-maintenance-intent: [ "(latest)" ]
70+
url {
71+
src:
72+
"https://github.com/ejgallego/coq-lsp/releases/download/0.2.4%2B8.20/coq-lsp-0.2.4.8.20.tbz"
73+
checksum: [
74+
"sha256=9e3736371fe2c2dd5af50e2a360f070f8c329516c60f01ba3dc7378b80b77172"
75+
"sha512=d5302f5dc4d7700910b7a7a2d1558770e15bfc0c7bcf9de2ccfd321b4e3cd591848d8e11f03e87362a8d81df72ec4af57dda2c3c5737b34726dcee35de2e56c8"
76+
]
77+
}
78+
x-commit-hash: "c6b85a68bfb34f4ab07759a492ebefd363eab06a"
79+
80+
# Only for 0.2.4 due to a silly build system issue, note that rocq-lsp works fine in 32bit systems
81+
available: arch != "arm32" & arch != "x86_32"

0 commit comments

Comments
 (0)