app-text/codebook: add 0.3.40

Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
This commit is contained in:
Pavel Sobolev
2026-05-23 15:21:19 +03:00
parent 55a5b65efa
commit 6fa8cf7105
2 changed files with 39 additions and 0 deletions

View File

@@ -2,3 +2,5 @@ DIST codebook-0.3.38-deps.tar.xz 46447240 BLAKE2B 056c2def987ba805010e786f6e224b
DIST codebook-0.3.38.tar.gz 2748469 BLAKE2B 9d9cad848b05c786d365b2f00fd64ae0f475cae6f4124de12b30ce2351cf8bcc0f4781e97e96a07ceaab90070f39d54d02ac951c7e8de681ae9ccfcf06143418 SHA512 d190f425ad05deeec02402464811af8d76b885058f003f09424eef31ec65eaa41fcad82ace7c78c49017629f98fef940a387acc8e658769f538a1d3ecc667d58
DIST codebook-0.3.39-deps.tar.xz 43958440 BLAKE2B 8aec67dd1b636e42fc8753bf2f953c1bda4d4ba5bfc782c262b535eb5dcdb4b206ee3fc6dbdbcd39d155865f26ab4df109b56fb65000ec687cf42fc080f77fe1 SHA512 1863c6b506b18665484fc0d737c9af0094999dce75889ab118e81bb1d48054e4832adbecf6b5d27334e3c92ea77c32c470f49e38b2be1d9e4a679c00e8308343
DIST codebook-0.3.39.tar.gz 2757362 BLAKE2B 753c242ba653ba82c287cb585c5ded6ae14d04995ba5cee49a2838e057d967ac11281d1f923f3649d03c160aa859ee0dc1830eea887a0e3d351eccdf2b41421e SHA512 f521c53e746ccb8c307575360e57e92f0a96866436879a3f2578e5c2f81f6e643cf984e8cbec9e2e648ea19fff25e94680866444c19812a438ce821923f319f3
DIST codebook-0.3.40-deps.tar.xz 41509580 BLAKE2B 0eb0ec2602a71afdedb49741c5d1d14662b44ac223cd1d51a2eb1b288c6340f372c8693be242a4d1a0c345cf01dd455dc7d0a6a07097bb6d31bdc900bb92c282 SHA512 709d4cad17948aadbc7f231e3e2d50527176f55b415c62ac4a22007dd9be8b5ec99b5c90f1835f4d7abacc8468fdf8f1c0185b7121e0ea839703b54f2b6d86cf
DIST codebook-0.3.40.tar.gz 2763922 BLAKE2B 79f1b98d510cc2e333895fdd4e319dba5afceb509129684e8a5f38c0a172558318f98172fb42ae7e369defb5ce730c9ae2bf3d027dff161bf821cb3187c2283a SHA512 5b54a020ff9bcdc39fcfd41683f965e0afb0013119e08ba707e4594da62aa047202c380528b4bca614bbf7ca2bac51581b81e2d0f262956aef89e5ef046e3d6c

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.88.0"
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
}