aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Frei <freijon@pm.me>2024-08-10 07:03:31 +0200
committerJonas Frei <freijon@pm.me>2024-08-10 07:18:35 +0200
commit8012bbc6a5424304d22d92a4a76c604ef7a87315 (patch)
treedfe8b887ac0fcb059b12feedb9d5463e7e67fec4 /app-shells
parentapp-shells/carapace: add 1.0.5 (diff)
downloadguru-8012bbc6a5424304d22d92a4a76c604ef7a87315.tar.gz
guru-8012bbc6a5424304d22d92a4a76c604ef7a87315.tar.bz2
guru-8012bbc6a5424304d22d92a4a76c604ef7a87315.zip
app-shells/carapace: drop 1.0.2
Signed-off-by: Jonas Frei <freijon@pm.me>
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/carapace/Manifest2
-rw-r--r--app-shells/carapace/carapace-1.0.2.ebuild40
2 files changed, 0 insertions, 42 deletions
diff --git a/app-shells/carapace/Manifest b/app-shells/carapace/Manifest
index a7911817b..917d751ff 100644
--- a/app-shells/carapace/Manifest
+++ b/app-shells/carapace/Manifest
@@ -1,5 +1,3 @@
-DIST carapace-1.0.2-deps.tar.xz 3057732 BLAKE2B e657e06d1cf7d2f72210c2d61c5b5180db8a14f2aa93bcea463311c7523b4d0e8ce27f344e7fae54ac3fb4a941679d41882213cdc3a3db101821ac8227cd5919 SHA512 268989ab7ee3d86b174b261517bc2bc55ba33467d3f7eb88ebba220164bb938a4a7560afcc5aef7c9fc112d896116f9d6db26176c8aa4b32742ea4229abbf7ea
-DIST carapace-1.0.2.tar.gz 14617140 BLAKE2B 0837165d4930d6e9fdd47ece9c51a8c7470bf6abd4f873c023658ed8c39e307a7b2a66f0d79d47f9767b29207e09ee9fb12e82d136e5e4b04709fd0202d76150 SHA512 f32bea9b15d0517dab0a0e5176fdab4e23dc3c11209a9647578adf3f2a12628d69424505e1833bbab497d8f8348c393e0dcf5250434cf860ae2e6bb0e04e2bc5
DIST carapace-1.0.3-deps.tar.xz 3060444 BLAKE2B 560a0ee95810cca800ab4ebcf22c90e7971c7748ff50da79ae5c58b9775c4ed159ea67b2ecdb232bd7e919b0831641510cae30fdff6e91592b983a3581bc7e18 SHA512 996364d0746c678bb75e950656e0d969ff78235e148afb415472b3153169f2d5d4c74e361490e69f84b50564246cf18b7ef2238c09de7445694d427accdaa4c9
DIST carapace-1.0.3.tar.gz 14613295 BLAKE2B 71cd6675a30673dba859f3647ee18299def074c4e8d1dd29ffa0c0264d128c55a04f3177f67928742b5a86984aee3782432e041376e6a702c6715e4fd67bb9aa SHA512 8b1781bff0d2f1e9a7b9b433153eced755231479c7eabf383af07687b4c588f8488dc43d4f6707ba345548737318b442ac0e4614068017106540ef50ef4b1527
DIST carapace-1.0.4-deps.tar.xz 3065556 BLAKE2B e5eaff8be53fd55e1a862806204efdd8ba6ef08ffb2b6f1d3dcfdccb1e3360b9a44d2c2a644246c11792206b079af1ea77ff3868e41567653f093545962a0286 SHA512 89dcccee7b98a9585e7a13b4da11d41fbda9f67bc82737a28a3809b9b79812cf6d22db77d76ccb3b2c73c6255b062ef02dc54a4f76188bac3da6503d054d34fd
diff --git a/app-shells/carapace/carapace-1.0.2.ebuild b/app-shells/carapace/carapace-1.0.2.ebuild
deleted file mode 100644
index 2fee4c3b2..000000000
--- a/app-shells/carapace/carapace-1.0.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2023 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="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-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
-}