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 ECF3F1382C5 for ; Tue, 26 May 2020 09:36:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E745BE08DB; Tue, 26 May 2020 09:36:06 +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 CC013E08DB for ; Tue, 26 May 2020 09:36:06 +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 8B2CD34ED87 for ; Tue, 26 May 2020 09:36:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F397E1DA for ; Tue, 26 May 2020 09:36:03 +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: <1590485747.78c28f624e112d2fb0487c0e6a9fb0ef2d38a214.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cython/cython-0.29.19.ebuild X-VCS-Directories: dev-python/cython/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 78c28f624e112d2fb0487c0e6a9fb0ef2d38a214 X-VCS-Branch: master Date: Tue, 26 May 2020 09:36:03 +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: 08f6b1d0-779d-45dd-89d7-e5b883b62979 X-Archives-Hash: c2c2829fa6fe1c52d280e677bcc29b68 commit: 78c28f624e112d2fb0487c0e6a9fb0ef2d38a214 Author: Michał Górny gentoo org> AuthorDate: Tue May 26 08:02:27 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 26 09:35:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c28f62 dev-python/cython: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/cython/cython-0.29.19.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-python/cython/cython-0.29.19.ebuild b/dev-python/cython/cython-0.29.19.ebuild index 187187f5234..8b4b6e7acc6 100644 --- a/dev-python/cython/cython-0.29.19.ebuild +++ b/dev-python/cython/cython-0.29.19.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 toolchain-funcs elisp-common @@ -26,7 +26,7 @@ BDEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] test? ( $(python_gen_cond_dep 'dev-python/numpy[${PYTHON_USEDEP}]' \ - 'python3*') + python3_{6,7,8}) )" PATCHES=( @@ -54,6 +54,12 @@ python_compile_all() { } python_test() { + if [[ ${EPYTHON} == python3.9 ]]; then + # https://github.com/cython/cython/issues/3349 + einfo "Skipping py3.9 due to known failures" + return + fi + tc-export CC # https://github.com/cython/cython/issues/1911 local -x CFLAGS="${CFLAGS} -fno-strict-overflow"