diff --git a/app-misc/wtf/Manifest b/app-misc/wtf/Manifest new file mode 100644 index 0000000000..59b47720b2 --- /dev/null +++ b/app-misc/wtf/Manifest @@ -0,0 +1,2 @@ +DIST wtf-0.43.0-deps.tar.xz 322290516 BLAKE2B 5f4eb20a2a6656c6a52824366ec6e7b720ca39910da4612e2c92c3e428a665befef6ea6ea86f87224e50ae324e330f008e51eb1826d821990e1a38c51220b202 SHA512 3371c4d627cc0473b9428220259fd51a6d6cecd9d3c8da7e0c8b844302e4368bb9e99af5045dd89316e6272de9f8080c4c34e0433ea8c2248e37b7cb5eea1f81 +DIST wtf-0.43.0.tar.gz 2346370 BLAKE2B 99c1245f2ff54ace55c1d57ccb8462acb072ef4a8f6ea5b5d713728ad01ff57db9071fd0c531471cfb69ac26300181ed5b203e19bd710e4393b124e3d1af5d6f SHA512 0e6c67add5bc90795503b9f337b377ad2b0a13d1ff4357971ed518f49979eac2c67a1df0fc86846c79616f96ccbf40cb2089185d55596b77832ebdea9213e212 diff --git a/app-misc/wtf/metadata.xml b/app-misc/wtf/metadata.xml new file mode 100644 index 0000000000..c8ee33b22a --- /dev/null +++ b/app-misc/wtf/metadata.xml @@ -0,0 +1,12 @@ + + + + + kupravagoodman@proton.me + Timur Kuprava + + + https://github.com/wtfutil/wtf/issues + wtfutil/wtf + + diff --git a/app-misc/wtf/wtf-0.43.0.ebuild b/app-misc/wtf/wtf-0.43.0.ebuild new file mode 100644 index 0000000000..ad75a4dc81 --- /dev/null +++ b/app-misc/wtf/wtf-0.43.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="The personal information dashboard for your terminal" +HOMEPAGE="https://github.com/wtfutil/wtf" + +SRC_URI="https://github.com/wtfutil/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://github.com/kuprTheMan/contribute-deps/releases/download/${P}/${P}-deps.tar.xz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +RESTRICT="test" + +src_compile() { + ego build -ldflags="-s -w" -o bin/wtfutil +} + +src_install() { + dobin bin/wtfutil + dodoc README.md +}