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 AE83D13835A for ; Tue, 23 Jun 2020 21:13:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEB61E0919; Tue, 23 Jun 2020 21:13:50 +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 C5D38E0919 for ; Tue, 23 Jun 2020 21:13:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AE03E34EA38 for ; Tue, 23 Jun 2020 21:13:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D5AF28E for ; Tue, 23 Jun 2020 21:13:43 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1592946052.e11618a12216858567ad603997cbcdfd00c832be.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-gravatar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild X-VCS-Directories: dev-python/flask-gravatar/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e11618a12216858567ad603997cbcdfd00c832be X-VCS-Branch: master Date: Tue, 23 Jun 2020 21:13: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: ca81ba82-47f0-410c-85ee-a28e51f09b02 X-Archives-Hash: a03a8596b02379e614081cc13137dcf1 commit: e11618a12216858567ad603997cbcdfd00c832be Author: Michał Górny gentoo org> AuthorDate: Tue Jun 23 21:00:52 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 23 21:00:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e11618a1 dev-python/flask-gravatar: Remove dep on pytest-runner Signed-off-by: Michał Górny gentoo.org> dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild b/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild index 42f669f664f..01350e36cdc 100644 --- a/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild +++ b/dev-python/flask-gravatar/flask-gravatar-0.5.0.ebuild @@ -12,17 +12,15 @@ inherit distutils-r1 DESCRIPTION="Small extension for Flask to make usage of Gravatar service easy" HOMEPAGE="https://github.com/zzzsochi/Flask-Gravatar/" SRC_URI="mirror://pypi/F/${MY_PN}/${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="BSD" - SLOT="0" - KEYWORDS="amd64 x86" RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/pytest-runner[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] -" -S=${WORKDIR}/${MY_P} +src_prepare() { + sed -i -e '/pytest-runner/d' setup.py || die + distutils-r1_src_prepare +}