Files
guru/app-misc/superfile/superfile-9999.ebuild
ingenarel (NeoJesus) f69321b352 app-misc/superfile: RESTRICT test
currently tests are disabled because superfile tends to create files in
places it should not:
https://gist.githubusercontent.com/ingenarel/d1bc358ee532d5d3a50f5cc19c429253/raw
on top of that it has failed tests, tests depend on zoxide, tmux,
python, a few python modules
and everything would also require some patching
the goal is to work on a src_test function slowly and bring back tests
again, but for now, tests should be restricted because it may cause
issues

Closes: https://bugs.gentoo.org/974530
Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus@disroot.org>
2026-05-12 08:32:46 +06:00

52 lines
1.5 KiB
Bash

# 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.dev"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/yorukot/superfile.git"
else
KEYWORDS="~amd64"
SRC_URI="https://github.com/yorukot/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-go-mod-deps.tar.xz ->
${P}-deps.tar.xz
"
# you can either use -go-mod-deps or -vendor-deps for the file
# vendor-deps are small, but may not work for some packages/version
# go-mod-deps are LARGE, but will most likely always work
fi
LICENSE="MIT"
#gentoo-go-license superfile-9999.ebuild
LICENSE+=" Apache-2.0 BSD-2 BSD GPL-3 ISC MIT MPL-2.0 "
SLOT="0"
# currently tests are disabled because superfile tends to create files in places it should not:
# https://gist.githubusercontent.com/ingenarel/d1bc358ee532d5d3a50f5cc19c429253/raw
# on top of that it has failed tests, tests depend on zoxide, tmux, python, a few python modules
# the goal is to work on a src_test function slowly and bring back tests again
RESTRICT="test"
BDEPEND=">=dev-lang/go-1.25.5"
src_unpack() {
if [[ "${PV}" == 9999* ]];then
git-r3_src_unpack
go-module_live_vendor
else
default
fi
}
src_compile() {
CGO_ENABLED=0 ego build -o bin/spf
}
src_install() {
dobin bin/spf
}