sys-apps/sift: new package, add 0.9.1

Signed-off-by: brtz <brtz@mailo.com>
This commit is contained in:
brtz
2026-05-05 20:11:34 +02:00
parent 35f60326ec
commit 5157b278ff
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module bash-completion-r1
DESCRIPTION="A fast and powerful alternative to grep."
HOMEPAGE="https://github.com/svent/sift"
SRC_URI="https://github.com/svent/sift/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://codeberg.org/brtz/guru-distfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
src_compile() {
ego build .
}
src_install() {
dobin sift
dodoc README.md
newbashcomp "sift-completion.bash" "sift"
}