holgersson-overlay/net-misc/fb-client/fb-client-2.1.1-r2.ebuild
Nils Freydank 7605230a65
net-misc/fb-client: Revbump to EAPI="8"
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Nils Freydank <holgersson@posteo.de>
2021-07-10 19:09:24 +02:00

35 lines
794 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..9} )
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 ~x86"
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 )
"