From c1ff349541f0a37463c3b7b92a76d65b4abcfa54 Mon Sep 17 00:00:00 2001 From: Micha Glave Date: Mon, 16 Sep 2024 11:00:17 +0200 Subject: [PATCH] added dev-util/typos-lsp --- dev-util/typos-lsp/Manifest | 1 + dev-util/typos-lsp/typos-lsp-0.1.23.ebuild | 35 ++++++++++++++++++++++ dev-util/typos/Manifest | 1 + dev-util/typos/typos-1.24.5.ebuild | 35 ++++++++++++++++++++++ 4 files changed, 72 insertions(+) create mode 100644 dev-util/typos-lsp/Manifest create mode 100644 dev-util/typos-lsp/typos-lsp-0.1.23.ebuild create mode 100644 dev-util/typos/Manifest create mode 100644 dev-util/typos/typos-1.24.5.ebuild diff --git a/dev-util/typos-lsp/Manifest b/dev-util/typos-lsp/Manifest new file mode 100644 index 0000000..b40d631 --- /dev/null +++ b/dev-util/typos-lsp/Manifest @@ -0,0 +1 @@ +DIST typos-lsp-v0.1.23-x86_64-unknown-linux-gnu.tar.gz 5503103 BLAKE2B e02d9536618734497fe4883443e820c83de3a36ed23938cf728810583fc433b64eee8a1b9c5e39a9a06e44baa08f861f9bd5eb6efd1d8b9b3f9c8a882fe078b1 SHA512 fb4b4a1cc7a3c0a1f439e67e1cf1ecffd97cc310cc65931e5c8ac2400e5e1d5118919e3e62a09b8e5ac84706ed3e246c408302a6c2bf0dc46d52662859951bc9 diff --git a/dev-util/typos-lsp/typos-lsp-0.1.23.ebuild b/dev-util/typos-lsp/typos-lsp-0.1.23.ebuild new file mode 100644 index 0000000..c5183fd --- /dev/null +++ b/dev-util/typos-lsp/typos-lsp-0.1.23.ebuild @@ -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 +} + diff --git a/dev-util/typos/Manifest b/dev-util/typos/Manifest new file mode 100644 index 0000000..fa9ba43 --- /dev/null +++ b/dev-util/typos/Manifest @@ -0,0 +1 @@ +DIST typos-v1.24.5-x86_64-unknown-linux-musl.tar.gz 4333683 BLAKE2B 6b2e4a9a4ef3eb7c70097c3f3e3744fbe7f59bbf5dc1ade8e42bb12beeed2a8fec18d8f9cbac6c0f8414629119b4d8bdbb70f6ca262449321c81816bcd5399ee SHA512 ba04eca5e6ceaf2e7a34bf948938913bb801f2b8f138ec3b81805f9d4fb6e31f649d6143983e298f67e7ebe8f3520564e89798d6affa0d54bd89b1c3ef9b69c2 diff --git a/dev-util/typos/typos-1.24.5.ebuild b/dev-util/typos/typos-1.24.5.ebuild new file mode 100644 index 0000000..633f4e7 --- /dev/null +++ b/dev-util/typos/typos-1.24.5.ebuild @@ -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/* +} +