net-misc/streamlink: fix variable references

Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-04-02 14:07:48 +01:00
parent 96b821f658
commit 01989bcb02
3 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,7 @@ PYTHON_REQ_USE='xml(+),threads(+)'
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1 $GIT_ECLASS
inherit distutils-r1 ${GIT_ECLASS}
DESCRIPTION="CLI for extracting streams from websites to a video player of your choice"
HOMEPAGE="https://streamlink.github.io/"

View File

@@ -13,7 +13,7 @@ PYTHON_REQ_USE='xml(+),threads(+)'
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1 $GIT_ECLASS
inherit distutils-r1 ${GIT_ECLASS}
DESCRIPTION="CLI for extracting streams from websites to a video player of your choice"
HOMEPAGE="https://streamlink.github.io/"
@@ -55,7 +55,7 @@ BDEPEND="
src_prepare() {
distutils-r1_src_prepare
if [[ ${PV} != 9999* ]]; then
mv ${WORKDIR}/streamlink.1-${PV}.man ${WORKDIR}/streamlink.1 || die
mv "${WORKDIR}"/streamlink.1-${PV}.man "${WORKDIR}"/streamlink.1 || die
fi
}
@@ -71,6 +71,6 @@ python_test() {
python_install_all() {
distutils-r1_python_install_all
if [[ ${PV} != 9999* ]]; then
doman ${WORKDIR}/streamlink.1
doman "${WORKDIR}"/streamlink.1
fi
}

View File

@@ -13,7 +13,7 @@ PYTHON_REQ_USE='xml(+),threads(+)'
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1 $GIT_ECLASS
inherit distutils-r1 ${GIT_ECLASS}
DESCRIPTION="CLI for extracting streams from websites to a video player of your choice"
HOMEPAGE="https://streamlink.github.io/"
@@ -55,7 +55,7 @@ BDEPEND="
src_prepare() {
distutils-r1_src_prepare
if [[ ${PV} != 9999* ]]; then
mv ${WORKDIR}/streamlink.1-${PV}.man ${WORKDIR}/streamlink.1 || die
mv "${WORKDIR}"/streamlink.1-${PV}.man "${WORKDIR}"/streamlink.1 || die
fi
}
@@ -71,6 +71,6 @@ python_test() {
python_install_all() {
distutils-r1_python_install_all
if [[ ${PV} != 9999* ]]; then
doman ${WORKDIR}/streamlink.1
doman "${WORKDIR}"/streamlink.1
fi
}