this repo has no description

Add OCaml 5.3 previews for merlin, merlin-lib and ocaml-lsp-server

Kate 8c4a63b1 ee4414a0

Changed files
+178
packages
merlin
merlin.5.3~5.3preview
merlin-lib
merlin-lib.5.3~5.3preview
ocaml-lsp-server
ocaml-lsp-server.1.20.0~5.3preview
+32
packages/merlin-lib/merlin-lib.5.3~5.3preview/opam
···
+
opam-version: "2.0"
+
maintainer: "defree@gmail.com"
+
authors: "The Merlin team"
+
homepage: "https://github.com/ocaml/merlin"
+
bug-reports: "https://github.com/ocaml/merlin/issues"
+
dev-repo: "git+https://github.com/ocaml/merlin.git"
+
license: "MIT"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
depends: [
+
"ocaml" {>= "5.3" & < "5.4"}
+
"dune" {>= "3.0.0"}
+
"csexp" {>= "1.5.1"}
+
"alcotest" {with-test}
+
"menhir" {dev & >= "20201216"}
+
"menhirLib" {dev & >= "20201216"}
+
"menhirSdk" {dev & >= "20201216"}
+
]
+
available: opam-version >= "2.1.0"
+
flags: avoid-version
+
synopsis:
+
"Merlin's libraries"
+
description:
+
"These libraries provides access to low-level compiler interfaces and the
+
standard higher-level merlin protocol. The library is provided as-is, is not
+
thoroughly documented, and its public API might break with any new release."
+
url {
+
src: "https://github.com/xvw/merlin/archive/3438e34a77bd1c3c7a10bffa0c45c419ff91286f.tar.gz"
+
checksum: "sha256=42b33f3a60d6648d8fc3b8e3bb72453ab6364d40019c5c2be9aa42f26f255a1c"
+
}
+78
packages/merlin/merlin.5.3~5.3preview/opam
···
+
opam-version: "2.0"
+
maintainer: "defree@gmail.com"
+
authors: "The Merlin team"
+
homepage: "https://github.com/ocaml/merlin"
+
bug-reports: "https://github.com/ocaml/merlin/issues"
+
dev-repo: "git+https://github.com/ocaml/merlin.git"
+
license: "MIT"
+
build: [
+
["dune" "subst"] {dev}
+
["dune" "build" "-p" name "-j" jobs]
+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
+
]
+
flags: avoid-version
+
available: opam-version >= "2.1.0"
+
depends: [
+
"dune" {>= "3.0.0"}
+
"ocaml" {>= "5.3" & < "5.4"}
+
"merlin-lib" {= version}
+
"dot-merlin-reader" {>= "5.2"}
+
"ocaml-index" {>= "1.0" & post}
+
"yojson" {>= "2.0.0"}
+
"conf-jq" {with-test}
+
"ppxlib" {with-test}
+
]
+
conflicts: [
+
"seq" {!= "base"}
+
]
+
synopsis:
+
"Editor helper, provides completion, typing and source browsing in Vim and Emacs"
+
description:
+
"Merlin is an assistant for editing OCaml code. It aims to provide the features available in modern IDEs: error reporting, auto completion, source browsing and much more."
+
post-messages: [
+
"merlin installed.
+
+
Quick setup for VIM
+
-------------------
+
Append this to your .vimrc to add merlin to vim's runtime-path:
+
let g:opamshare = substitute(system('opam var share'),'\\n$','','''')
+
execute \"set rtp+=\" . g:opamshare . \"/merlin/vim\"
+
+
Also run the following line in vim to index the documentation:
+
:execute \"helptags \" . g:opamshare . \"/merlin/vim/doc\"
+
+
Quick setup for EMACS
+
-------------------
+
Add opam emacs directory to your load-path by appending this to your .emacs:
+
(let ((opam-share (ignore-errors (car (process-lines \"opam\" \"var\" \"share\")))))
+
(when (and opam-share (file-directory-p opam-share))
+
;; Register Merlin
+
(add-to-list 'load-path (expand-file-name \"emacs/site-lisp\" opam-share))
+
(autoload 'merlin-mode \"merlin\" nil t nil)
+
;; Automatically start it in OCaml buffers
+
(add-hook 'tuareg-mode-hook 'merlin-mode t)
+
(add-hook 'caml-mode-hook 'merlin-mode t)
+
;; Use opam switch to lookup ocamlmerlin binary
+
(setq merlin-command 'opam)
+
;; To easily change opam switches within a given Emacs session, you can
+
;; install the minor mode https://github.com/ProofGeneral/opam-switch-mode
+
;; and use one of its \"OPSW\" menus.
+
))
+
Take a look at https://github.com/ocaml/merlin for more information
+
+
Quick setup with opam-user-setup
+
--------------------------------
+
+
Opam-user-setup support Merlin.
+
+
$ opam user-setup install
+
+
should take care of basic setup.
+
See https://github.com/OCamlPro/opam-user-setup
+
"
+
{success & !user-setup:installed}
+
]
+
url {
+
src: "https://github.com/xvw/merlin/archive/3438e34a77bd1c3c7a10bffa0c45c419ff91286f.tar.gz"
+
checksum: "sha256=42b33f3a60d6648d8fc3b8e3bb72453ab6364d40019c5c2be9aa42f26f255a1c"
+
}
+68
packages/ocaml-lsp-server/ocaml-lsp-server.1.20.0~5.3preview/opam
···
+
opam-version: "2.0"
+
synopsis: "LSP Server for OCaml"
+
description: "An LSP server for OCaml."
+
maintainer: ["Rudi Grinberg <me@rgrinberg.com>"]
+
authors: [
+
"Andrey Popp <8mayday@gmail.com>"
+
"Rusty Key <iam@stfoo.ru>"
+
"Louis Roché <louis@louisroche.net>"
+
"Oleksiy Golovko <alexei.golovko@gmail.com>"
+
"Rudi Grinberg <me@rgrinberg.com>"
+
"Sacha Ayoun <sachaayoun@gmail.com>"
+
"cannorin <cannorin@gmail.com>"
+
"Ulugbek Abdullaev <ulugbekna@gmail.com>"
+
"Thibaut Mattio <thibaut.mattio@gmail.com>"
+
"Max Lantas <mnxndev@outlook.com>"
+
]
+
license: "ISC"
+
homepage: "https://github.com/ocaml/ocaml-lsp"
+
bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
+
depends: [
+
"dune" {>= "3.0"}
+
"ocaml" {>= "5.3" & < "5.4"}
+
"yojson"
+
"base"
+
"lsp" {= "1.19.0"}
+
"jsonrpc" {= "1.19.0"}
+
"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"
+
"astring"
+
"camlp-streams"
+
"ppx_expect" {>= "v0.17.0" & with-test}
+
"ocamlformat" {with-test & = "0.26.2"}
+
"ocamlc-loc" {>= "3.7.0"}
+
"pp" {>= "1.1.2"}
+
"csexp" {>= "1.5"}
+
"ocamlformat-rpc-lib" {>= "0.21.0"}
+
"odoc" {with-doc}
+
"merlin-lib" {= "5.3~5.3preview"}
+
]
+
available: opam-version >= "2.1.0"
+
flags: avoid-version
+
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/voodoos/ocaml-lsp/archive/2d66db71a2870cb79057944f0336a0af257a9874.tar.gz"
+
checksum: "sha256=67be871e19817c7eff0315df74456a2ac915ac1843fbb9d6400c28e1615752b4"
+
}