commit: 378025054182eb19287f2101eb0b0950c3763c70 Author: ingenarel (NeoJesus) <ingenarel_neojesus <AT> disroot <DOT> org> AuthorDate: Tue Jan 27 23:24:31 2026 +0000 Commit: Saad Abdullah <ingenarelitems <AT> gmail <DOT> com> CommitDate: Wed Jan 28 01:19:50 2026 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=37802505
app-misc/superfile: update 1.4.0 adds licenses for the deps modifies src_unpack() internally instead of redefining for more info, check: https://github.com/gentoo/guru/commit/e19c6d574461655f11cb1c6e1b37ff22c9a6ff70#commitcomment-172006236 also updates HOMEPAGE var, that fixes `pkgcheck scan` warnings Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus <AT> disroot.org> ...uperfile-1.4.0.ebuild => superfile-1.4.0-r1.ebuild} | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/app-misc/superfile/superfile-1.4.0.ebuild b/app-misc/superfile/superfile-1.4.0-r1.ebuild similarity index 76% rename from app-misc/superfile/superfile-1.4.0.ebuild rename to app-misc/superfile/superfile-1.4.0-r1.ebuild index d74a9351fe..0b82042c61 100644 --- a/app-misc/superfile/superfile-1.4.0.ebuild +++ b/app-misc/superfile/superfile-1.4.0-r1.ebuild @@ -6,14 +6,10 @@ EAPI=8 inherit go-module DESCRIPTION="Pretty fancy and modern terminal file manager" -HOMEPAGE="https://superfile.netlify.app/" +HOMEPAGE="https://superfile.dev" if [[ "${PV}" == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/yorukot/superfile.git" - src_unpack() { - git-r3_src_unpack - go-module_live_vendor - } else KEYWORDS="~amd64" SRC_URI="https://github.com/yorukot/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" @@ -21,8 +17,20 @@ else fi LICENSE="MIT" +#gentoo-go-license superfile-1.4.0.ebuild +LICENSE+=" Apache-2.0 BSD-2 BSD GPL-3 ISC MIT MPL-2.0 " + SLOT="0" +src_unpack() { + if [[ "${PV}" == 9999* ]];then + git-r3_src_unpack + go-module_live_vendor + else + default + fi +} + src_compile() { ego build -o bin/spf }
