app-text/codebook: add 0.3.36

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-03-29 15:42:21 +03:00
parent 51ff6076e7
commit cba0940f60
2 changed files with 37 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST codebook-0.3.33-deps.tar.xz 41863728 BLAKE2B 538dc0a6df1736bd1984c821b6fb9a
DIST codebook-0.3.33.tar.gz 2682744 BLAKE2B fb35821d4e6b8049727f1c9a21d79a2ef5de88f376d2bd2bc445e28bbf240c5218eeeed541241ebd6e3707ef5559e300cc08d37499ee3a74cac51c17a756888a SHA512 c67f21f46df537ddec50728d8562a574f5300be4b3e19eb1f586ff3a1cec4f345f25975cb517d0a57fa11ff22584bbd6e4f7dc387eff5a126f08f57e27a725e6
DIST codebook-0.3.35-deps.tar.xz 42078788 BLAKE2B 8be23209a12a04a44c8a0ca86f339337a02a952f9f1d7c58513b8ac9bd1aba91b129e465465a7ac012dbb32ddd8ad104c5bd694f6bc6bc972fd0530bfcadf5fb SHA512 445583d623f5f5d8af814d1296b467f8ede826c99bb6dc8dee8aacae5163ce4e3f36cd4295b764683101ef4f730b9d323c0d560cd35e2826e281aa25fd770a11
DIST codebook-0.3.35.tar.gz 2728879 BLAKE2B b2784c70afcc61780dc5c1da2c12b80599391ed271cddc8002b09ce26ae079a269e7ad6d4d5a3f7a1d61ad1eaae624453335630da33d9605d14038025949fbed SHA512 e8b17c048d4efc9568f111113e204ea055412d68bca3b5d73700c573e459e1a666299a28c1c2a21077022081e7b2b3fb4518baea17ebf806bce8364fb2221c6f
DIST codebook-0.3.36-deps.tar.xz 42778192 BLAKE2B bdb74d1e6fa02c034dd1ed41cd811e85e9c52753c6853a863bc31c1ece54f874cbad7de90b6fcfdbaa538fa777ea81faa1bbdb4bc811cf5354352f9fd40f0200 SHA512 40e95a03caea3b67b3da95af69fa212f611aef924b13bf5d34f08e790219a19c7490d2ec8c9766e23d2c06b75dec263639cb7addb1cca5e56768257308914eba
DIST codebook-0.3.36.tar.gz 2743049 BLAKE2B 68044c4a6edfbc3ad03c30331b8b12ec615301e8d181b40024a9b05adf7d0b28e8543b30eeedafd130f0e8297c911328feeeef9d7e8df46fe40b1baad519332c SHA512 4c920dc1ebc5a953c18bc755c56242256b285185570cec5fd08ab26a0179566193af4cc446c16b46e0e11b0e0a1ca3a3160ffb7bf274cf83d8d30229a8804e28

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cargo
DESCRIPTION="Spell Checker for Code"
HOMEPAGE="https://github.com/blopker/codebook"
SRC_URI="
https://github.com/blopker/codebook/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 BSD CDDL CDLA-Permissive-2.0 ISC MIT MPL-2.0 openssl Unicode-3.0 ZLIB"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="test"
PROPERTIES="test_network"
src_test() {
local skip=(
--skip test_elixir_module
--skip test_go_location
--skip test_java_location
--skip test_odin_location
--skip test_php_location
)
cargo_src_test -- "${skip[@]}"
}
src_install() {
cargo_src_install --frozen --path crates/codebook-lsp
dodoc LICENSE README.md
}