holgersson-overlay/net-misc/fb-client/fb-client-9999.ebuild
Nils Freydank 11dd0fb3c3
*/*: Drop all KEYWORDS beside ~amd64
Currently I am only able to seriously test for ~amd64. This also
evectivly reverts the commit that added ~riscv to sys-fs/gocryptfs:
535421924b18f602b971e605782a47cf2fd522ab
2024-08-19 05:00:00 +02:00

40 lines
837 B
Bash

# Copyright 2016-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
PYTHON_COMPAT=( python3_{11..12} )
inherit python-r1
DESCRIPTION="Client for paste.xinu.at"
HOMEPAGE="https://paste.xinu.at https://git.server-speed.net/users/flo/fb/"
LICENSE="GPL-3"
if [[ "${PV}" == *9999 ]]
then
inherit git-r3
EGIT_REPO_URI="https://git.server-speed.net/users/flo/fb"
else
SRC_URI="https://paste.xinu.at/data/client/fb-${PV}.tar.gz -> fb-client-${PVR}.tar.gz"
S="${WORKDIR}/fb-${PV}"
fi
#KEYWORDS="~amd64"
SLOT="0"
IUSE="+clipboard"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RESTRICT="test" # this packages has no tests
RDEPEND="
${PYTHON_DEPS}
dev-python/pyxdg[${PYTHON_USEDEP}]
dev-python/pycurl[${PYTHON_USEDEP}]
clipboard? (
|| (
x11-misc/xclip
gui-apps/wl-clipboard
)
)
"