repo/proj/guru:dev commit in: gui-apps/danksearch/
"Emi" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1785954212.1e9ecf517224b13b27af6e84b06de7a93057c3ea.reedy.sailors.8t@gentoo> |
commit: 1e9ecf517224b13b27af6e84b06de7a93057c3ea
Author: Emi <reedy.sailors.8t <AT> icloud <DOT> com>
AuthorDate: Wed Aug 5 18:23:32 2026 +0000
Commit: Emi <reedy.sailors.8t <AT> icloud <DOT> com>
CommitDate: Wed Aug 5 18:23:32 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e9ecf51
gui-apps/danksearch: add 0.3.2
Signed-off-by: Emi <reedy.sailors.8t <AT> icloud.com>
gui-apps/danksearch/Manifest | 1 +
gui-apps/danksearch/danksearch-0.3.2.ebuild | 33 +++++++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/gui-apps/danksearch/Manifest b/gui-apps/danksearch/Manifest
index 805fd26ea1..d9aa63dc37 100644
--- a/gui-apps/danksearch/Manifest
+++ b/gui-apps/danksearch/Manifest
@@ -1 +1,2 @@
DIST danksearch-0.2.1.tar.gz 33017110 BLAKE2B 671408cc0361b2dd2fdda1a2970f81152298f873567d5af435bdd713130840c7f8b838914c41ae02458ce0d6d66cfd53b4758f4f8c076fb7741ff7805c7bc60f SHA512 cf97b21db84af75bf23adc4d15318e85efced5dff0d2ebe1f58300b6e47b0a50386096fa3fda7142a846e1140036eea88ee350a05ad341b20f560344093103d2
+DIST danksearch-0.3.2.tar.gz 33956223 BLAKE2B 5bae5fb6b0c892a17714283946517c7a02c5adc32b3b4d2cee4c5cadfd4433deff1e7ae1fc1cf48fc0fe3fa33ca8d3a077bff153e02748843d265df3752f124a SHA512 2368f993e32c4fedc36c02dab03f3c6f68d630b1b4a21c139ae877f5f4f0c5e5dbbe83ea66149e1d299afac5727725934a7d453548e29beb8fea820f6d788e2b
diff --git a/gui-apps/danksearch/danksearch-0.3.2.ebuild b/gui-apps/danksearch/danksearch-0.3.2.ebuild
new file mode 100644
index 0000000000..a17b064c7a
--- /dev/null
+++ b/gui-apps/danksearch/danksearch-0.3.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module systemd
+
+DESCRIPTION="Indexed filesystem search in GO"
+HOMEPAGE="https://github.com/AvengeMedia/danksearch"
+SRC_URI="https://github.com/AvengeMedia/${PN}/releases/download/v${PV}/dsearch-${PV}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/dsearch-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND=">=dev-lang/go-1.25.0"
+
+RESTRICT="strip"
+
+src_compile() {
+ sed -i '/^GOFLAGS=/d' "${S}/Makefile"
+ sed -i "s/^VERSION=.*$/VERSION=\"${PV}\"/" "${S}/Makefile"
+ sed -i 's/local\///' "${S}/assets/dsearch.service"
+
+ default
+}
+
+src_install() {
+ dobin "${S}/bin/dsearch"
+ systemd_douserunit "${S}/assets/dsearch.service"
+}