* [gentoo-commits] repo/proj/guru:master commit in: dev-ml/lsp/
@ 2024-07-30 16:54 David Roman
0 siblings, 0 replies; 2+ messages in thread
From: David Roman @ 2024-07-30 16:54 UTC (permalink / raw
To: gentoo-commits
commit: 48664201ae75534b7a8aab066b2c4fffe1e50fbb
Author: Hiroki Tokunaga <tokusan441 <AT> gmail <DOT> com>
AuthorDate: Mon Jul 29 12:20:23 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Jul 29 12:20:23 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=48664201
dev-ml/lsp: new package, add 1.18.0
Signed-off-by: Hiroki Tokunaga <tokusan441 <AT> gmail.com>
dev-ml/lsp/Manifest | 1 +
dev-ml/lsp/lsp-1.18.0.ebuild | 41 +++++++++++++++++++++++++++++++++++++++++
dev-ml/lsp/metadata.xml | 13 +++++++++++++
3 files changed, 55 insertions(+)
diff --git a/dev-ml/lsp/Manifest b/dev-ml/lsp/Manifest
new file mode 100644
index 000000000..35fffccdc
--- /dev/null
+++ b/dev-ml/lsp/Manifest
@@ -0,0 +1 @@
+DIST lsp-1.18.0.tar.gz 908930 BLAKE2B 9b58b7a09442e6f63d914561de14693e6a9557636b14d0c440739c2eb11ba6cabf282ee5e049ec579ba65bd84cebba8b653b5ccef8e9419886bec37dcfcf7cab SHA512 cdf4178015ef1058b148d4d682e329eae1ac8c1e3783eba983a353e7219e657d255dd013989ece4a31d28a0b969720642f1557d324d35adaf12919a46a1b0386
diff --git a/dev-ml/lsp/lsp-1.18.0.ebuild b/dev-ml/lsp/lsp-1.18.0.ebuild
new file mode 100644
index 000000000..2ae95f616
--- /dev/null
+++ b/dev-ml/lsp/lsp-1.18.0.ebuild
@@ -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
+}
diff --git a/dev-ml/lsp/metadata.xml b/dev-ml/lsp/metadata.xml
new file mode 100644
index 000000000..2688cbd25
--- /dev/null
+++ b/dev-ml/lsp/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>tokusan441@gmail.com</email>
+ <name>Hiroki Tokunaga</name>
+ </maintainer>
+ <longdescription lang="en">Implementation of the LSP protocol in OCaml. It is designed to be as portable as possible and does not make any assumptions about IO.</longdescription>
+ <upstream>
+ <bugs-to>https://github.com/ocaml/ocaml-lsp/issues</bugs-to>
+ <remote-id type="github">ocaml/ocaml-lsp</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-ml/lsp/
@ 2024-08-02 9:31 David Roman
0 siblings, 0 replies; 2+ messages in thread
From: David Roman @ 2024-08-02 9:31 UTC (permalink / raw
To: gentoo-commits
commit: 0aa6ecc7995afb69bf1fbad23201e4b435fc5427
Author: Hiroki Tokunaga <tokusan441 <AT> gmail <DOT> com>
AuthorDate: Fri Aug 2 03:49:49 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Aug 2 03:49:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0aa6ecc7
dev-ml/lsp: add 1.19.0
Signed-off-by: Hiroki Tokunaga <tokusan441 <AT> gmail.com>
dev-ml/lsp/Manifest | 1 +
dev-ml/lsp/lsp-1.19.0.ebuild | 44 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/dev-ml/lsp/Manifest b/dev-ml/lsp/Manifest
index 35fffccdc..b717c8d30 100644
--- a/dev-ml/lsp/Manifest
+++ b/dev-ml/lsp/Manifest
@@ -1 +1,2 @@
DIST lsp-1.18.0.tar.gz 908930 BLAKE2B 9b58b7a09442e6f63d914561de14693e6a9557636b14d0c440739c2eb11ba6cabf282ee5e049ec579ba65bd84cebba8b653b5ccef8e9419886bec37dcfcf7cab SHA512 cdf4178015ef1058b148d4d682e329eae1ac8c1e3783eba983a353e7219e657d255dd013989ece4a31d28a0b969720642f1557d324d35adaf12919a46a1b0386
+DIST lsp-1.19.0.tar.gz 916311 BLAKE2B 8d04f40aa59215d50596c12fc958d618464048883c7c2a291dba4d6cd49a44571cdefb3328ff98b876dfdfb6fc0b993d53229aa50357fd677d59656455186555 SHA512 ffba27e8b902eab82b0d181e190483b5f52ca4c37086ae7d1a35a5775743a33848580decac56df5d788e3cc5a9c9078390e8089a757842fdfaee21b9d81a7d27
diff --git a/dev-ml/lsp/lsp-1.19.0.ebuild b/dev-ml/lsp/lsp-1.19.0.ebuild
new file mode 100644
index 000000000..d87af210a
--- /dev/null
+++ b/dev-ml/lsp/lsp-1.19.0.ebuild
@@ -0,0 +1,44 @@
+# 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/jsonrpc-${PV}:=
+ dev-ml/yojson:=
+ >=dev-ml/ppx_yojson_conv_lib-0.14:=
+ >=dev-ml/uutf-1.0.2:=
+"
+
+DEPEND="
+ ${RDEPEND}
+"
+
+BDEPEND="
+ >=dev-ml/dune-3.0:=
+"
+
+src_compile() {
+ dune-compile lsp
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-08-02 9:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-02 9:31 [gentoo-commits] repo/proj/guru:master commit in: dev-ml/lsp/ David Roman
-- strict thread matches above, loose matches on Subject: below --
2024-07-30 16:54 David Roman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox