app-text/codebook: add 0.3.37

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-04-18 12:54:31 +03:00
parent 15278199e8
commit a7d0f6acd0
2 changed files with 37 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST codebook-0.3.35-deps.tar.xz 42078788 BLAKE2B 8be23209a12a04a44c8a0ca86f3393
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
DIST codebook-0.3.37-deps.tar.xz 45866504 BLAKE2B 574d21bac9b9dbee3de0bb4a548dc2302679b6f58c495e621fed92ae5322a180bea014af051afab8df22ad115c4ae4e1297a4f2d5f3ea55f3dd00be3583a23e4 SHA512 810eb6fc69d56ca82d688f7f187f3207872289bf699217e1678d7a65482558a47678f02a02201556fcf447e5b58537fea3320dcf3c36b76fadce13e40b00895c
DIST codebook-0.3.37.tar.gz 2748138 BLAKE2B 4451640771e0ef6d0d82f2bf8e65a1aea8112fc8d9584d3a1d8a8326d37f18d9dd9b79e0b75c1b9d3fa6503c894b16138832d248e95af9a47d4ae0ecff55ba7d SHA512 e47005b96914d4500bd0076effd0bf39f7d5229f6da9c358ded16fd9371588618623b67e6517fe18182400bd878acbad9e31844372c8294ca58d7e04934ccb99

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
}