···11+opam-version: "2.0"
22+maintainer: "defree@gmail.com"
33+authors: "The Merlin team"
44+homepage: "https://github.com/ocaml/merlin"
55+bug-reports: "https://github.com/ocaml/merlin/issues"
66+dev-repo: "git+https://github.com/ocaml/merlin.git"
77+license: "MIT"
88+build: [
99+ ["dune" "subst"] {dev}
1010+ ["dune" "build" "-p" name "-j" jobs]
1111+]
1212+depends: [
1313+ "ocaml" {>= "4.14" & < "4.15"}
1414+ "dune" {>= "2.9.0"}
1515+ "csexp" {>= "1.5.1"}
1616+ "menhir" {dev & >= "20201216"}
1717+ "menhirLib" {dev & >= "20201216"}
1818+ "menhirSdk" {dev & >= "20201216"}
1919+]
2020+synopsis:
2121+ "Merlin's libraries"
2222+description:
2323+ "These libraries provides access to low-level compiler interfaces and the
2424+ standard higher-level merlin protocol. The library is provided as-is, is not
2525+ thoroughly documented, and its public API might break with any new release."
2626+url {
2727+ src:
2828+ "https://github.com/ocaml/merlin/releases/download/v4.15-414/merlin-4.15-414.tbz"
2929+ checksum: [
3030+ "sha256=d1cc427a3d2d11ab0cf3570ae5348ace5fbd2454869df58f9320c4a5cf9f3fe3"
3131+ "sha512=dab52b7d002208e6b94fb20a2fb5a732e6954b951c74eb1bc5c5f81d21d8aa92bfd410a798abd261bef79f314a8e72c4f7aa9e31d62b635cae6fe1bcc6c121cc"
3232+ ]
3333+}
3434+x-commit-hash: "9be57bf93bc661eef8484b4dbafc102827198154"
+34
packages/merlin-lib/merlin-lib.4.15-501/opam
···11+opam-version: "2.0"
22+maintainer: "defree@gmail.com"
33+authors: "The Merlin team"
44+homepage: "https://github.com/ocaml/merlin"
55+bug-reports: "https://github.com/ocaml/merlin/issues"
66+dev-repo: "git+https://github.com/ocaml/merlin.git"
77+license: "MIT"
88+build: [
99+ ["dune" "subst"] {dev}
1010+ ["dune" "build" "-p" name "-j" jobs]
1111+]
1212+depends: [
1313+ "ocaml" {>= "5.1.1" & < "5.2"}
1414+ "dune" {>= "2.9.0"}
1515+ "csexp" {>= "1.5.1"}
1616+ "menhir" {dev & >= "20201216"}
1717+ "menhirLib" {dev & >= "20201216"}
1818+ "menhirSdk" {dev & >= "20201216"}
1919+]
2020+synopsis:
2121+ "Merlin's libraries"
2222+description:
2323+ "These libraries provides access to low-level compiler interfaces and the
2424+ standard higher-level merlin protocol. The library is provided as-is, is not
2525+ thoroughly documented, and its public API might break with any new release."
2626+url {
2727+ src:
2828+ "https://github.com/ocaml/merlin/releases/download/v4.15-501/merlin-4.15-501.tbz"
2929+ checksum: [
3030+ "sha256=bdb6d021232c0405af17d74fca50d7b76eec7d1db4837557e5786bde59f82553"
3131+ "sha512=7462f3d603a158e192b06a5eb161692c1bdde68f4ccf4b382cfd7f7eebafc29f8b8e6699cfb3ec75a761b07815887f2dd70efa8611bf46f55b67971979457ae0"
3232+ ]
3333+}
3434+x-commit-hash: "a5c29395496e09d2cf0651a918226e52d095837b"
+81
packages/merlin/merlin.4.15-414/opam
···11+opam-version: "2.0"
22+maintainer: "defree@gmail.com"
33+authors: "The Merlin team"
44+homepage: "https://github.com/ocaml/merlin"
55+bug-reports: "https://github.com/ocaml/merlin/issues"
66+dev-repo: "git+https://github.com/ocaml/merlin.git"
77+license: "MIT"
88+build: [
99+ ["dune" "subst"] {dev}
1010+ ["dune" "build" "-p" name "-j" jobs]
1111+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
1212+]
1313+depends: [
1414+ "ocaml" {>= "4.14" & < "4.15"}
1515+ "dune" {>= "2.9.0"}
1616+ "merlin-lib" {= version}
1717+ "dot-merlin-reader" {>= "4.9"}
1818+ "yojson" {>= "2.0.0"}
1919+ "conf-jq" {with-test}
2020+ "ppxlib" {with-test}
2121+]
2222+conflicts: [
2323+ "seq" {!= "base"}
2424+ "base-effects"
2525+]
2626+synopsis:
2727+ "Editor helper, provides completion, typing and source browsing in Vim and Emacs"
2828+description:
2929+ "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."
3030+post-messages: [
3131+ "merlin installed.
3232+3333+Quick setup for VIM
3434+-------------------
3535+Append this to your .vimrc to add merlin to vim's runtime-path:
3636+ let g:opamshare = substitute(system('opam var share'),'\\n$','','''')
3737+ execute \"set rtp+=\" . g:opamshare . \"/merlin/vim\"
3838+3939+Also run the following line in vim to index the documentation:
4040+ :execute \"helptags \" . g:opamshare . \"/merlin/vim/doc\"
4141+4242+Quick setup for EMACS
4343+-------------------
4444+Add opam emacs directory to your load-path by appending this to your .emacs:
4545+ (let ((opam-share (ignore-errors (car (process-lines \"opam\" \"var\" \"share\")))))
4646+ (when (and opam-share (file-directory-p opam-share))
4747+ ;; Register Merlin
4848+ (add-to-list 'load-path (expand-file-name \"emacs/site-lisp\" opam-share))
4949+ (autoload 'merlin-mode \"merlin\" nil t nil)
5050+ ;; Automatically start it in OCaml buffers
5151+ (add-hook 'tuareg-mode-hook 'merlin-mode t)
5252+ (add-hook 'caml-mode-hook 'merlin-mode t)
5353+ ;; Use opam switch to lookup ocamlmerlin binary
5454+ (setq merlin-command 'opam)
5555+ ;; To easily change opam switches within a given Emacs session, you can
5656+ ;; install the minor mode https://github.com/ProofGeneral/opam-switch-mode
5757+ ;; and use one of its \"OPSW\" menus.
5858+ ))
5959+Take a look at https://github.com/ocaml/merlin for more information
6060+6161+Quick setup with opam-user-setup
6262+--------------------------------
6363+6464+Opam-user-setup support Merlin.
6565+6666+ $ opam user-setup install
6767+6868+should take care of basic setup.
6969+See https://github.com/OCamlPro/opam-user-setup
7070+"
7171+ {success & !user-setup:installed}
7272+]
7373+url {
7474+ src:
7575+ "https://github.com/ocaml/merlin/releases/download/v4.15-414/merlin-4.15-414.tbz"
7676+ checksum: [
7777+ "sha256=d1cc427a3d2d11ab0cf3570ae5348ace5fbd2454869df58f9320c4a5cf9f3fe3"
7878+ "sha512=dab52b7d002208e6b94fb20a2fb5a732e6954b951c74eb1bc5c5f81d21d8aa92bfd410a798abd261bef79f314a8e72c4f7aa9e31d62b635cae6fe1bcc6c121cc"
7979+ ]
8080+}
8181+x-commit-hash: "9be57bf93bc661eef8484b4dbafc102827198154"
+81
packages/merlin/merlin.4.15-501/opam
···11+opam-version: "2.0"
22+maintainer: "defree@gmail.com"
33+authors: "The Merlin team"
44+homepage: "https://github.com/ocaml/merlin"
55+bug-reports: "https://github.com/ocaml/merlin/issues"
66+dev-repo: "git+https://github.com/ocaml/merlin.git"
77+license: "MIT"
88+build: [
99+ ["dune" "subst"] {dev}
1010+ ["dune" "build" "-p" name "-j" jobs]
1111+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
1212+]
1313+depends: [
1414+ "ocaml" {>= "5.1" & < "5.2"}
1515+ "dune" {>= "2.9.0"}
1616+ "merlin-lib" {= version}
1717+ "dot-merlin-reader" {>= "4.9"}
1818+ "yojson" {>= "2.0.0"}
1919+ "conf-jq" {with-test}
2020+ "ppxlib" {with-test}
2121+]
2222+conflicts: [
2323+ "seq" {!= "base"}
2424+ "base-effects"
2525+]
2626+synopsis:
2727+ "Editor helper, provides completion, typing and source browsing in Vim and Emacs"
2828+description:
2929+ "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."
3030+post-messages: [
3131+ "merlin installed.
3232+3333+Quick setup for VIM
3434+-------------------
3535+Append this to your .vimrc to add merlin to vim's runtime-path:
3636+ let g:opamshare = substitute(system('opam var share'),'\\n$','','''')
3737+ execute \"set rtp+=\" . g:opamshare . \"/merlin/vim\"
3838+3939+Also run the following line in vim to index the documentation:
4040+ :execute \"helptags \" . g:opamshare . \"/merlin/vim/doc\"
4141+4242+Quick setup for EMACS
4343+-------------------
4444+Add opam emacs directory to your load-path by appending this to your .emacs:
4545+ (let ((opam-share (ignore-errors (car (process-lines \"opam\" \"var\" \"share\")))))
4646+ (when (and opam-share (file-directory-p opam-share))
4747+ ;; Register Merlin
4848+ (add-to-list 'load-path (expand-file-name \"emacs/site-lisp\" opam-share))
4949+ (autoload 'merlin-mode \"merlin\" nil t nil)
5050+ ;; Automatically start it in OCaml buffers
5151+ (add-hook 'tuareg-mode-hook 'merlin-mode t)
5252+ (add-hook 'caml-mode-hook 'merlin-mode t)
5353+ ;; Use opam switch to lookup ocamlmerlin binary
5454+ (setq merlin-command 'opam)
5555+ ;; To easily change opam switches within a given Emacs session, you can
5656+ ;; install the minor mode https://github.com/ProofGeneral/opam-switch-mode
5757+ ;; and use one of its \"OPSW\" menus.
5858+ ))
5959+Take a look at https://github.com/ocaml/merlin for more information
6060+6161+Quick setup with opam-user-setup
6262+--------------------------------
6363+6464+Opam-user-setup support Merlin.
6565+6666+ $ opam user-setup install
6767+6868+should take care of basic setup.
6969+See https://github.com/OCamlPro/opam-user-setup
7070+"
7171+ {success & !user-setup:installed}
7272+]
7373+url {
7474+ src:
7575+ "https://github.com/ocaml/merlin/releases/download/v4.15-501/merlin-4.15-501.tbz"
7676+ checksum: [
7777+ "sha256=bdb6d021232c0405af17d74fca50d7b76eec7d1db4837557e5786bde59f82553"
7878+ "sha512=7462f3d603a158e192b06a5eb161692c1bdde68f4ccf4b382cfd7f7eebafc29f8b8e6699cfb3ec75a761b07815887f2dd70efa8611bf46f55b67971979457ae0"
7979+ ]
8080+}
8181+x-commit-hash: "a5c29395496e09d2cf0651a918226e52d095837b"