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 5F379138359 for ; Sat, 12 Sep 2020 22:58:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2A62E087F; Sat, 12 Sep 2020 22:58:28 +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 88D23E0883 for ; Sat, 12 Sep 2020 22:58:28 +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 ACA0D340C37 for ; Sat, 12 Sep 2020 22:58:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6218235F for ; Sat, 12 Sep 2020 22:58:26 +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: <1599951495.2b879f5efc81d2a82360118b06fb800aa6a71be5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-jose/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-jose/python-jose-3.2.0-r1.ebuild dev-python/python-jose/python-jose-3.2.0.ebuild X-VCS-Directories: dev-python/python-jose/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2b879f5efc81d2a82360118b06fb800aa6a71be5 X-VCS-Branch: master Date: Sat, 12 Sep 2020 22:58:26 +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: 7b217c02-4a87-4e4f-83b3-c416cbff48d4 X-Archives-Hash: 1561d1f0194c1581622b45d035f48a45 commit: 2b879f5efc81d2a82360118b06fb800aa6a71be5 Author: Michał Górny gentoo org> AuthorDate: Sat Sep 12 21:26:49 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 12 22:58:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b879f5e dev-python/python-jose: Unbound ecdsa dep Signed-off-by: Michał Górny gentoo.org> .../{python-jose-3.2.0.ebuild => python-jose-3.2.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/python-jose/python-jose-3.2.0.ebuild b/dev-python/python-jose/python-jose-3.2.0-r1.ebuild similarity index 93% rename from dev-python/python-jose/python-jose-3.2.0.ebuild rename to dev-python/python-jose/python-jose-3.2.0-r1.ebuild index f46dbd7c1ed..b2ca7386157 100644 --- a/dev-python/python-jose/python-jose-3.2.0.ebuild +++ b/dev-python/python-jose/python-jose-3.2.0-r1.ebuild @@ -27,7 +27,9 @@ RDEPEND=" distutils_enable_tests pytest python_prepare_all() { - sed -e '/pytest-runner/d' -i setup.py || die + sed -e '/pytest-runner/d' \ + -e '/ecdsa/s:<0.15::' \ + -i setup.py || die sed -e '/addopts/d' -i setup.cfg || die sed -e 's:test_key_too_short:_&:' \ -i tests/algorithms/test_EC.py || die