dev-ml/lsp: new package, add 1.18.0

Signed-off-by: Hiroki Tokunaga <tokusan441@gmail.com>
This commit is contained in:
Hiroki Tokunaga
2024-07-29 21:20:23 +09:00
parent 6f5afa1dbc
commit 48664201ae
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="LSP protocol implementation in OCaml"
HOMEPAGE="
https://opam.ocaml.org/packages/lsp/
https://github.com/ocaml/ocaml-lsp/
"
SRC_URI="https://github.com/ocaml/ocaml-lsp/archive/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/ocaml-lsp-${PV}"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
RESTRICT="test"
RDEPEND="
>=dev-lang/ocaml-4.14:=
>=dev-ml/dune-3.0:=
~dev-ml/jsonrpc-${PV}:=
dev-ml/yojson:=
>=dev-ml/ppx_yojson_conv_lib-0.14:=
>=dev-ml/uutf-1.0.2:=
"
DEPEND="
${RDEPEND}
"
src_compile() {
dune-compile lsp
}