mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
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>
46 lines
1.2 KiB
Bash
46 lines
1.2 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"
|
|
SRC_URI+=" https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz"
|
|
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"
|
|
# 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"
|
|
|
|
src_unpack() {
|
|
if [[ "${PV}" == 9999* ]];then
|
|
git-r3_src_unpack
|
|
go-module_live_vendor
|
|
else
|
|
default
|
|
fi
|
|
}
|
|
|
|
src_compile() {
|
|
ego build -o bin/spf
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/spf
|
|
}
|