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 C5C6A1382C5 for ; Sun, 29 Apr 2018 11:13:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 076B6E097C; Sun, 29 Apr 2018 11:13:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D3687E097C for ; Sun, 29 Apr 2018 11:13:31 +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 4BD22335C99 for ; Sun, 29 Apr 2018 11:13:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BD57292 for ; Sun, 29 Apr 2018 11:13:28 +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: <1525000403.a69d2ddf9372db201cd62a6f72ffc56628c04a30.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.28.2.ebuild X-VCS-Directories: dev-python/cython/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a69d2ddf9372db201cd62a6f72ffc56628c04a30 X-VCS-Branch: master Date: Sun, 29 Apr 2018 11:13:28 +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-Archives-Salt: f3cf8fc1-2e1c-46ec-9c21-03c4962ea233 X-Archives-Hash: eff2c917f0059a4aa22cc779983ce20a commit: a69d2ddf9372db201cd62a6f72ffc56628c04a30 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 29 11:07:43 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 29 11:13:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a69d2ddf dev-python/cython: Build tests with -fno-strict-overflow Pass -fno-strict-overflow to work around test failures. Bug: https://github.com/cython/cython/issues/1911 dev-python/cython/cython-0.28.2.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/cython/cython-0.28.2.ebuild b/dev-python/cython/cython-0.28.2.ebuild index 23c25226c41..eecc7a4ba32 100644 --- a/dev-python/cython/cython-0.28.2.ebuild +++ b/dev-python/cython/cython-0.28.2.ebuild @@ -52,6 +52,8 @@ python_compile_all() { python_test() { tc-export CC + # https://github.com/cython/cython/issues/1911 + local -x CFLAGS="${CFLAGS} -fno-strict-overflow" "${PYTHON}" runtests.py -vv --work-dir "${BUILD_DIR}"/tests \ || die "Tests fail with ${EPYTHON}" }