dev-util/neocmakelsp: add 0.10.4

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-07-11 17:00:27 +03:00
parent 42fa35ba62
commit 1e59faefd3
2 changed files with 37 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST neocmakelsp-0.10.2-deps.tar.xz 12765524 BLAKE2B 787f56fde57d92501bf5f091e61
DIST neocmakelsp-0.10.2.tar.gz 3824803 BLAKE2B 40659489985cf6553a244cfe5c99ded2bfaf731efb053ce83738dc1f3f4ab3e2c1c03fca83af9545059e16045e5a4b85b3db54f63bd8a7b47286fd5b5377af50 SHA512 de407f5a6e8f370d409f8f047daa829958c10e2b8a1030ed7340728d09fe503ce84ca1506a7b2b01667b1824e4de99f0a5375cda06279d5a56dc4de032a0f0f3
DIST neocmakelsp-0.10.3-deps.tar.xz 13580944 BLAKE2B d6f65af4ae7e9e0d04ae489ab9e017ec9d3e72d651390048230b060989c02a4ba4d946db577211cceff5af5d38c9d0134ab5b68716103f39e4a55c169f07b56d SHA512 e839a981cdc8389b8042d3562992925689a7270cc78f0eb1a38464993cb15496946ac22d645d71b910175249317d0d14f52b26c333f7659f58426061a7d25246
DIST neocmakelsp-0.10.3.tar.gz 3827850 BLAKE2B 5f331b10802a05bdae0e38f512debb6d892dd3d09a8137d5c7b03c41bb92da0437e3d5db3e1c5944f9b7b73b32ed35acf07b1b1989cea18563820186323ebbc1 SHA512 c8657597a9bb90b642c76d86c2e200e2c6f723610171e93f709b751811eae04aceacc471ff56895a456ac713bb5fa282e896be20b43196ea391c2e1cbb1776f5
DIST neocmakelsp-0.10.4-deps.tar.xz 13574208 BLAKE2B 9c059afb76df8004e509f5990b48e93092a0bfa7302fecb18fc43270fad0847de73ca334b9b5fadf581d28c722cb73d66ba9c205ed4e45829f1b48ef5d6ded0e SHA512 dae1dbd0379f98bc87a7c2719f1ecfdf8f5d70de9800619633379910a3a3dcf053821b77f0e20b300acc375afe148d5692534e79bbf99496d547c6c0f8d74b79
DIST neocmakelsp-0.10.4.tar.gz 3828865 BLAKE2B 97bb3e1f326b85940b2eff243c834c021154b173e519bb6db724a7a07317d5e562b609e370c0a3e77f3464cfbcb99773c33a1f5d1d53783af97475dda0ffb847 SHA512 5712d067a465d565d4dfd791813f63e120fe2be00143db7caf06c5fcb555834860a54e9b6f33ef24a631de8a15ec9a3bcede24ec3e16f96679c38c801aaddef1

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.89.0"
inherit cargo shell-completion
DESCRIPTION="Another CMake LSP"
HOMEPAGE="https://github.com/neocmakelsp/neocmakelsp"
SRC_URI="
https://github.com/neocmakelsp/neocmakelsp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://gitlab.com/api/v4/projects/69517529/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
"
LICENSE="Apache-2.0 CC0-1.0 MIT MIT-0 MPL-2.0 Unicode-3.0"
SLOT="0"
KEYWORDS="~amd64"
src_install() {
cargo_src_install
dobashcomp completions/bash/neocmakelsp
dofishcomp completions/fish/neocmakelsp.fish
dozshcomp completions/zsh/_neocmakelsp
}
src_test() {
local CARGO_SKIP_TESTS=(
document_link::tests::test_document_link_search
languageserver::test::test_init
)
cargo_src_test
}