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 137AE1382C5 for ; Fri, 26 Mar 2021 14:37:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 655D5E070D; Fri, 26 Mar 2021 14:37:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4F117E0843 for ; Fri, 26 Mar 2021 14:37:08 +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 5BA58340DDA for ; Fri, 26 Mar 2021 14:37:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F11EC631 for ; Fri, 26 Mar 2021 14:37:05 +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: <1616769418.55ba121828ee329be525d87dcd5a1d520dd8196d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mypy/mypy-0.812-r1.ebuild dev-python/mypy/mypy-0.812.ebuild X-VCS-Directories: dev-python/mypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 55ba121828ee329be525d87dcd5a1d520dd8196d X-VCS-Branch: master Date: Fri, 26 Mar 2021 14:37:05 +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: fe72201a-f908-43fe-ada6-a28c71cb4a9e X-Archives-Hash: 877e40a8b25e0351a22f9a222346d535 commit: 55ba121828ee329be525d87dcd5a1d520dd8196d Author: Michał Górny gentoo org> AuthorDate: Fri Mar 26 13:20:48 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 26 14:36:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55ba1218 dev-python/mypy: Try harder to disable C extensions Closes: https://bugs.gentoo.org/773088 Signed-off-by: Michał Górny gentoo.org> dev-python/mypy/{mypy-0.812.ebuild => mypy-0.812-r1.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/mypy/mypy-0.812.ebuild b/dev-python/mypy/mypy-0.812-r1.ebuild similarity index 94% rename from dev-python/mypy/mypy-0.812.ebuild rename to dev-python/mypy/mypy-0.812-r1.ebuild index e8bc5be1d05..3daf7dceb37 100644 --- a/dev-python/mypy/mypy-0.812.ebuild +++ b/dev-python/mypy/mypy-0.812-r1.ebuild @@ -49,12 +49,13 @@ src_unpack() { default rmdir "${S}/mypy/typeshed" || die mv "${WORKDIR}/typeshed-${TYPESHED_COMMIT}" "${S}/mypy/typeshed" || die + + export MYPY_USE_MYPYC=0 } python_test() { # Some mypy/test/testcmdline.py::PythonCmdlineSuite tests # fail with high COLUMNS values local -x COLUMNS=80 - pytest -vv -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" || - die "Tests failed with ${EPYTHON}" + epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" }