commit: 0403f402bca223c2b3fa84305c0e2b1c3abc1164 Author: ingenarel <ingenarelitems <AT> gmail <DOT> com> AuthorDate: Tue Feb 25 06:37:35 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Tue Feb 25 06:37:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0403f402
app-misc/superfile: new package, add 1.1.7.1 Signed-off-by: ingenarel <ingenarelitems <AT> gmail.com> app-misc/superfile/Manifest | 2 ++ app-misc/superfile/superfile-1.1.7.1.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-misc/superfile/Manifest b/app-misc/superfile/Manifest new file mode 100644 index 000000000..2adc7e19b --- /dev/null +++ b/app-misc/superfile/Manifest @@ -0,0 +1,2 @@ +DIST superfile-1.1.7.1-vendor.tar.xz 2722972 BLAKE2B 3dee77111a2611a3eb67ff5f6fba27f0b59a5c760b4849e31eb013b39e3d4269bd0a7a5492982a624f85a3441637a42bdc713d6f414d3bf24e49266571c10018 SHA512 0b76eadb09f9752c611b3b3917e4997d1a6293bbd0ce7caebc6158e03895492f5031de7414da9efcca0688f511cffdb842eb98f157c8d8eab81fa1ecd2cc8b69 +DIST superfile-1.1.7.1.tar.gz 8216364 BLAKE2B 81e4f3096d29408bc187178dacba233a1d41452d295ea302260f294b2cf768b9b6ec8c7c8b5831c410485f921be37277937ebaf54642b4344767f93d15bc44c3 SHA512 e4bb45db59821b5e03d890019e5ea9537af834b51ce5819ae1a17ce1006785746c1ba42f01e0c9d967c8430e338c2d59daaa7251dca4d508adb18f2e0c4b2018 diff --git a/app-misc/superfile/superfile-1.1.7.1.ebuild b/app-misc/superfile/superfile-1.1.7.1.ebuild new file mode 100644 index 000000000..164cd70e1 --- /dev/null +++ b/app-misc/superfile/superfile-1.1.7.1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="Pretty fancy and modern terminal file manager" +HOMEPAGE="https://superfile.netlify.app/" +SRC_URI="https://github.com/yorukot/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://github.com/ingenarel/guru-depfiles/releases/download/0.2/${P}-vendor.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + go build -o ./bin/spf +} + +src_install() { + dobin bin/spf +}