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 064F8138350 for ; Fri, 27 Mar 2020 12:40:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 592D6E0F19; Fri, 27 Mar 2020 12:40:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 41915E0F19 for ; Fri, 27 Mar 2020 12:40:38 +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 E943E34F931 for ; Fri, 27 Mar 2020 12:40:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96D4819F for ; Fri, 27 Mar 2020 12:40:35 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1585312670.51a0d611f41917fb6b5a5042e09a09b2a9d1a922.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/lyricwikia/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/lyricwikia/lyricwikia-0.1.11.ebuild X-VCS-Directories: dev-python/lyricwikia/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 51a0d611f41917fb6b5a5042e09a09b2a9d1a922 X-VCS-Branch: master Date: Fri, 27 Mar 2020 12:40:35 +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: eda6b473-575d-4dac-a43e-ca39015c491e X-Archives-Hash: 53549fd232356ed0454c9acfef486e63 Message-ID: <20200327124035.9qgY7mTjabdYU8KasNSXuoNsii3EmlDV1ffR7gnn17I@z> commit: 51a0d611f41917fb6b5a5042e09a09b2a9d1a922 Author: Andrew Ammerlaan riseup net> AuthorDate: Fri Mar 27 12:37:50 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Fri Mar 27 12:37:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51a0d611 dev-python/lyricwikia: do not depend on deprecated dep Package-Manager: Portage-2.3.96, Repoman-2.3.21 Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/lyricwikia/lyricwikia-0.1.11.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/lyricwikia/lyricwikia-0.1.11.ebuild b/dev-python/lyricwikia/lyricwikia-0.1.11.ebuild index b728042..ce02490 100644 --- a/dev-python/lyricwikia/lyricwikia-0.1.11.ebuild +++ b/dev-python/lyricwikia/lyricwikia-0.1.11.ebuild @@ -15,8 +15,6 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -BDEPEND="dev-python/pytest-runner[${PYTHON_USEDEP}]" - DEPEND="test? ( dev-python/responses[${PYTHON_USEDEP}] )" RDEPEND=" @@ -28,6 +26,13 @@ PATCHES="${FILESDIR}/${P}-skip-online-test.patch" distutils_enable_tests pytest +python_prepare_all() { + # do not depend on deprecated dep + sed -i -e '/pytest-runner/d' setup.py || die + + distutils-r1_python_prepare_all +} + pkg_postinst() { elog "Note that access to LyricWikia through this API (and products that use this API) should comply to the LyricWikia terms of use" }