diff --git a/sys-apps/sift/Manifest b/sys-apps/sift/Manifest new file mode 100644 index 0000000000..91a40cfb7f --- /dev/null +++ b/sys-apps/sift/Manifest @@ -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 diff --git a/sys-apps/sift/metadata.xml b/sys-apps/sift/metadata.xml new file mode 100644 index 0000000000..9f758ba6b8 --- /dev/null +++ b/sys-apps/sift/metadata.xml @@ -0,0 +1,12 @@ + + + + + brtz@mailo.com + brtz + + + svent/sift + + + diff --git a/sys-apps/sift/sift-0.9.1.ebuild b/sys-apps/sift/sift-0.9.1.ebuild new file mode 100644 index 0000000000..72d77b1954 --- /dev/null +++ b/sys-apps/sift/sift-0.9.1.ebuild @@ -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" +}