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 1CD631382C5 for ; Wed, 24 Jun 2020 07:07:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 515C9E095D; Wed, 24 Jun 2020 07:07:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 3D6D2E095D for ; Wed, 24 Jun 2020 07:07:23 +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 B6F8E34F1CD for ; Wed, 24 Jun 2020 07:07:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A19642CD for ; Wed, 24 Jun 2020 07:07:16 +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: <1592982426.9b93f09b20a459bd3a23ebc36410dfe29da3928e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-security/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-security/flask-security-3.0.0.ebuild X-VCS-Directories: dev-python/flask-security/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9b93f09b20a459bd3a23ebc36410dfe29da3928e X-VCS-Branch: master Date: Wed, 24 Jun 2020 07:07:16 +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: 57852c59-1048-4736-ad64-eca39c5f13a1 X-Archives-Hash: ea54a8d76a2a5fd16c1509f49fcf943a commit: 9b93f09b20a459bd3a23ebc36410dfe29da3928e Author: Michał Górny gentoo org> AuthorDate: Wed Jun 24 06:49:06 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 24 07:07:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b93f09b dev-python/flask-security: Remove pytest-runner dep Signed-off-by: Michał Górny gentoo.org> dev-python/flask-security/flask-security-3.0.0.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/flask-security/flask-security-3.0.0.ebuild b/dev-python/flask-security/flask-security-3.0.0.ebuild index 349a0a18f98..5544516760b 100644 --- a/dev-python/flask-security/flask-security-3.0.0.ebuild +++ b/dev-python/flask-security/flask-security-3.0.0.ebuild @@ -31,8 +31,6 @@ RDEPEND=">=dev-python/flask-0.11[${PYTHON_USEDEP}] " DEPEND="${RDEPEND} - dev-python/pytest-runner[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/nose[${PYTHON_USEDEP}] dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] @@ -43,6 +41,11 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MY_P}" +src_prepare() { + sed -i -e '/pytest-runner/d' setup.py || die + distutils-r1_src_prepare +} + python_test() { nosetests -v || die "Testing failed with ${EPYTHON}" }