From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1941F1382C5 for ; Sat, 3 Apr 2021 15:44:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8163E08EC; Sat, 3 Apr 2021 15:44:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6112E08EC for ; Sat, 3 Apr 2021 15:44:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C6876340C9C for ; Sat, 3 Apr 2021 15:44:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E6866BD for ; Sat, 3 Apr 2021 15:44:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617464642.01989bcb02ae9738da875fabc67b7fa54beb8149.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/streamlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/streamlink/streamlink-1.3.1-r1.ebuild net-misc/streamlink/streamlink-2.0.0.ebuild net-misc/streamlink/streamlink-9999.ebuild X-VCS-Directories: net-misc/streamlink/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 01989bcb02ae9738da875fabc67b7fa54beb8149 X-VCS-Branch: master Date: Sat, 3 Apr 2021 15:44:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 97e4934f-c50c-45b6-8bd4-3fa3f2ef8740 X-Archives-Hash: 2d58508c84951609b455cee7fb4343e6 commit: 01989bcb02ae9738da875fabc67b7fa54beb8149 Author: Sam James gentoo org> AuthorDate: Fri Apr 2 13:07:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 3 15:44:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01989bcb net-misc/streamlink: fix variable references Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> net-misc/streamlink/streamlink-1.3.1-r1.ebuild | 4 ++-- net-misc/streamlink/streamlink-2.0.0.ebuild | 6 +++--- net-misc/streamlink/streamlink-9999.ebuild | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/net-misc/streamlink/streamlink-1.3.1-r1.ebuild b/net-misc/streamlink/streamlink-1.3.1-r1.ebuild index 966e93d0e0a..bc7367b7878 100644 --- a/net-misc/streamlink/streamlink-1.3.1-r1.ebuild +++ b/net-misc/streamlink/streamlink-1.3.1-r1.ebuild @@ -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/" diff --git a/net-misc/streamlink/streamlink-2.0.0.ebuild b/net-misc/streamlink/streamlink-2.0.0.ebuild index 0e7bde59740..22a91c1cf0a 100644 --- a/net-misc/streamlink/streamlink-2.0.0.ebuild +++ b/net-misc/streamlink/streamlink-2.0.0.ebuild @@ -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 } diff --git a/net-misc/streamlink/streamlink-9999.ebuild b/net-misc/streamlink/streamlink-9999.ebuild index 0e7bde59740..22a91c1cf0a 100644 --- a/net-misc/streamlink/streamlink-9999.ebuild +++ b/net-misc/streamlink/streamlink-9999.ebuild @@ -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 }