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

2
sys-apps/sift/Manifest Normal file
View File

@@ -0,0 +1,2 @@
DIST sift-0.9.1-deps.tar.xz 5873072 BLAKE2B ff9e66cba1776e5f92237d0f393c717be7104cc7f5586e7b809db9866945eef846ce75a5797910a2c0cada18aee9add9c0f70b834493acb42b56f1c9fa5e2061 SHA512 5d1f95e33c89fd8f9f3a5fe09e496e538bdacd17a68fd9e34c3fa84cad3ee05cebb0876db7f4ea7eb65322adad0038e29bddc00c82353ea9817029f7e6c7249e
DIST sift-0.9.1.tar.gz 39189 BLAKE2B 5b89a75901b7f677adce09c3438a4cacb0a499c41277e8ec0041df98eb41740ee2983e3f44e492a4c2874fc264dec98c6587470c8a7b2befb4195bbc005255d0 SHA512 d073ae043afccad1e508cbb6d86d5177683a9d5f01b605bc3d384e026318976646797c221654a8c7bdbb935643836ccfc76e5d0606c8c502e31445e48ba64595

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>brtz@mailo.com</email>
<name>brtz</name>
</maintainer>
<upstream>
<remote-id type="github">svent/sift</remote-id>
</upstream>
</pkgmetadata>

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"
}