added dev-util/typos-lsp

This commit is contained in:
Micha Glave 2024-09-16 11:00:17 +02:00
parent 8e0e9162ba
commit c1ff349541
4 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST typos-lsp-v0.1.23-x86_64-unknown-linux-gnu.tar.gz 5503103 BLAKE2B e02d9536618734497fe4883443e820c83de3a36ed23938cf728810583fc433b64eee8a1b9c5e39a9a06e44baa08f861f9bd5eb6efd1d8b9b3f9c8a882fe078b1 SHA512 fb4b4a1cc7a3c0a1f439e67e1cf1ecffd97cc310cc65931e5c8ac2400e5e1d5118919e3e62a09b8e5ac84706ed3e246c408302a6c2bf0dc46d52662859951bc9

View File

@ -0,0 +1,35 @@
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Source code spell checker for Visual Studio Code and LSP clients"
HOMEPAGE="https://github.com/tekumara/typos-lsp"
SRC_URI="
amd64? ( https://github.com/tekumara/${PN}/releases/download/v${PV}/${PN}-v${PV}-x86_64-unknown-linux-gnu.tar.gz )
"
RESTRICT="mirror strip bindist"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-util/typos
"
RDEPEND="
${DEPEND}
"
DOCS=( )
pkg_setup(){
S="${WORKDIR}"
}
src_install(){
dobin typos-lsp
}

1
dev-util/typos/Manifest Normal file
View File

@ -0,0 +1 @@
DIST typos-v1.24.5-x86_64-unknown-linux-musl.tar.gz 4333683 BLAKE2B 6b2e4a9a4ef3eb7c70097c3f3e3744fbe7f59bbf5dc1ade8e42bb12beeed2a8fec18d8f9cbac6c0f8414629119b4d8bdbb70f6ca262449321c81816bcd5399ee SHA512 ba04eca5e6ceaf2e7a34bf948938913bb801f2b8f138ec3b81805f9d4fb6e31f649d6143983e298f67e7ebe8f3520564e89798d6affa0d54bd89b1c3ef9b69c2

View File

@ -0,0 +1,35 @@
# Copyright 1999-2019 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Source code spell checker."
HOMEPAGE="https://github.com/crate-ci/typos"
SRC_URI="
https://github.com/crate-ci/typos/releases/download/v1.24.5/typos-v1.24.5-x86_64-unknown-linux-musl.tar.gz
amd64? ( https://github.com/crate-ci/${PN}/releases/download/v${PV}/${PN}-v${PV}-x86_64-unknown-linux-musl.tar.gz )
"
RESTRICT="mirror strip bindist"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="
${DEPEND}
"
DOCS=( )
pkg_setup(){
S="${WORKDIR}"
}
src_install(){
dobin typos
dodoc doc/*
}