commit: f1afc962b56c6bbd4d984bfca4043260a91b8057 Author: Ceres <ceres <AT> ceressees <DOT> dev> AuthorDate: Tue Mar 3 14:47:10 2026 +0000 Commit: Ceres Milner <ceres <AT> ceressees <DOT> dev> CommitDate: Tue Mar 3 14:53:46 2026 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1afc962
media-sound/subtui: new package, add 2.8.1 Signed-off-by: Ceres <ceres <AT> ceressees.dev> media-sound/subtui/Manifest | 2 ++ media-sound/subtui/metadata.xml | 11 +++++++++++ media-sound/subtui/subtui-2.8.1.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/media-sound/subtui/Manifest b/media-sound/subtui/Manifest new file mode 100644 index 0000000000..cc9a0e80cd --- /dev/null +++ b/media-sound/subtui/Manifest @@ -0,0 +1,2 @@ +DIST subtui-2.8.1-deps.tar.xz 27160944 BLAKE2B c32fd745a6eba9ea4a0abe640dc416811a4925faf997f790d32d89ecdc25775afd396e77fe59f8f0001026aba73cb0c14ecfcea1763a41c4703fcbd50811e2ac SHA512 646c1de09b903e576631c25a7436e9f1ccdb0da12b128084a34078882f9d4d744522fc7d3a7e4737f06d9a846b3820eafda1162b88773d51a5a391544a46df76 +DIST subtui-2.8.1.tar.gz 392088 BLAKE2B af13a18a09440e8b470ab391498c73873f50168096dfbff9b666bb765151ab026fd02e19074f3bf9e6169678f4ab377d24a059a4fa07e3a3a9246913b3f39653 SHA512 5a1a3e3ffff52a74c5e591a23896c13b13a505abc94d365cb737497493955122208523ac504b9fca9875893f2a600db3c6f645c9e3c1cd1fd6a3f4faa3b0d851 diff --git a/media-sound/subtui/metadata.xml b/media-sound/subtui/metadata.xml new file mode 100644 index 0000000000..c586665683 --- /dev/null +++ b/media-sound/subtui/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Ceres Milner</name> + </maintainer> + <upstream> + <remote-id type="github">MattiaPun/SubTUI</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-sound/subtui/subtui-2.8.1.ebuild b/media-sound/subtui/subtui-2.8.1.ebuild new file mode 100644 index 0000000000..138b2a749b --- /dev/null +++ b/media-sound/subtui/subtui-2.8.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="A lightweight Subsonic TUI music player built in Go with scrobbling support." +HOMEPAGE="https://github.com/MattiaPun/SubTUI" +SRC_URI="https://github.com/MattiaPun/SubTUI/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://codeberg.org/ceres-sees-all/guru-distfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz" + +S="${WORKDIR}/SubTUI-${PV}" + +LICENSE="MIT" +LICENSE+=" BSD" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="media-video/mpv" +RDEPEND="${DEPEND}" + +src_compile() { + ego build . +} + +src_install() { + dobin SubTUI + dodoc README.md +}
