app-shells/carapace: drop 1.1.0

Signed-off-by: Jonas Frei <freijon@pm.me>
This commit is contained in:
Jonas Frei 2024-12-17 20:04:32 +01:00
parent aa151bf4e6
commit 7105908c11
No known key found for this signature in database
GPG Key ID: F8C5C87BDD1E28A8
2 changed files with 0 additions and 46 deletions

View File

@ -1,4 +1,2 @@
DIST carapace-1.1.0-deps.tar.xz 2978300 BLAKE2B 59fb5ae0c10954d3faedd8ff9fc3d045aeb807b28fe709d43fbdb7df6011ffe734fa62f2c7b3fd16b38ebf535cc65d9fcc84b901227665bace947fb781b7cca0 SHA512 7f4311952999c5634f0e948ddedba08b79066cd01596d9088974d2bd9d5bb634766b18695800221caa5456336b98ce9f0fd6cbbccf7cf135c20412d6b3bd8030
DIST carapace-1.1.0.tar.gz 15189847 BLAKE2B f54c654962aad2ca99c28d2f0db31c8e511dc75ebb2997adb278491a1c2cfb43355843103e53f4999797f71399b68327a7969bf90c09db473bf46a7bc9e2c179 SHA512 0a6dfaebf4401569299683db617dfa9caf4f90d082c44a3cbc12375e573467dcac3bbeb14c665111ba46ff772b02db55230672fb04d71494d08e35b820ea4e45
DIST carapace-1.1.1-deps.tar.xz 2977656 BLAKE2B d788d6d1685657a6e14330bd54a6ea4d5d8bde5aa0763ff29b608d86d2861ccf483d309cda00846e69ab9139973c021134b229db3abd6700427bb66f9dc0059a SHA512 a0c894aa7342a88465188c08909599bbfe45c24ebba9eb4966ac12ce17a90594ea12ee723884a1b3246695813a3a8bbd44802466f7a0ee4d8690001b650a3a63
DIST carapace-1.1.1.tar.gz 15727268 BLAKE2B 73e2378099adfed5428a8f42e5f2547f0b13d53b64443bdc0eb9441ed5f4f90422bb1fc40118431198ceb78bf432823be1b218ca63f6aa665f140ddfaff453e5 SHA512 90be0ca8a1779f5260c62790b439b28727734b71e407d14ba3c1f2b0eba7692ce5d026b1bc060057bf9664db1025e64497aacf6470938d63cff2d5ace566294d

View File

@ -1,44 +0,0 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Multi-shell multi-command argument completer"
HOMEPAGE="https://carapace.sh/"
SRC_URI="https://github.com/${PN}-sh/${PN}-bin/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
# Using a dependency tarball as per https://devmanual.gentoo.org/eclass-reference/go-module.eclass/index.html
DEPS_URI="https://gitlab.com/freijon_gentoo/${CATEGORY}/${PN}/-/raw/main/${P}-deps.tar.xz"
SRC_URI+=" ${DEPS_URI}"
S="${WORKDIR}/${PN}-bin-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
>=dev-lang/go-1.23.0
"
DOCS=(
"README.md"
)
HTML_DOCS=(
"docs/book/"
)
src_compile() {
pushd "cmd/${PN}"
ego generate ./...
ego build -ldflags="-s -w" -tags release
}
src_install() {
dobin "cmd/${PN}/${PN}"
mv "docs/src" "docs/book" || die
rm -r "docs/book/release_notes" || die
einstalldocs
}