Ryan Fox
e8807d0f93
Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Ryan Fox <flewkey@2a03.party>
38 lines
853 B
Bash
38 lines
853 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{8,9} )
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
PYTERM_REF="01c921e4f76f50fe10471cdeb446034fcecb1753" # 0.5b6
|
|
MY_P="pyterminal-${PYTERM_REF}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
inherit distutils-r1
|
|
|
|
if [[ ${PV} != *9999* ]]; then
|
|
SRC_URI="https://gitlab.com/mocchapi/pyterminal/-/archive/${PYTERM_REF}/archive.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
else
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://gitlab.com/mocchapi/pyterminal.git"
|
|
fi
|
|
|
|
DESCRIPTION="Command line YouTube music streamer"
|
|
HOMEPAGE="https://gitlab.com/mocchapi/pyterminal"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
DEPEND=""
|
|
RDEPEND="
|
|
${DEPEND}
|
|
dev-python/python-vlc
|
|
dev-python/pafy
|
|
dev-python/beautifulsoup
|
|
net-misc/youtube-dl
|
|
dev-python/pypresence
|
|
dev-python/requests
|
|
"
|
|
BDEPEND=""
|