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 5B2DF139083 for ; Wed, 22 Nov 2017 17:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF6EFE0F11; Wed, 22 Nov 2017 17:29:22 +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 AFF13E0F11 for ; Wed, 22 Nov 2017 17:29:22 +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 E210D340FBF for ; Wed, 22 Nov 2017 17:29:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A0C0A3DC for ; Wed, 22 Nov 2017 17:29:20 +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: <1511371755.1a8386e80340387722af8bb40ce3c412cff0259c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyblake2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild dev-python/pyblake2/pyblake2-0.9.3.ebuild X-VCS-Directories: dev-python/pyblake2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1a8386e80340387722af8bb40ce3c412cff0259c X-VCS-Branch: master Date: Wed, 22 Nov 2017 17:29:20 +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: 1fde1cf8-848f-4327-92ea-74ee6bad0ddd X-Archives-Hash: dec837bf3f6e733b02b58d1054ef9b01 commit: 1a8386e80340387722af8bb40ce3c412cff0259c Author: Michał Górny gentoo org> AuthorDate: Wed Nov 22 17:24:42 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 22 17:29:15 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a8386e8 dev-python/pyblake2: Backport -fno-tree-vectorize to stable version Bug: https://bugs.gentoo.org/638428 .../pyblake2/{pyblake2-0.9.3.ebuild => pyblake2-0.9.3-r1.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/pyblake2/pyblake2-0.9.3.ebuild b/dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild similarity index 91% rename from dev-python/pyblake2/pyblake2-0.9.3.ebuild rename to dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild index e72595ae78b..9245471a8a7 100644 --- a/dev-python/pyblake2/pyblake2-0.9.3.ebuild +++ b/dev-python/pyblake2/pyblake2-0.9.3-r1.ebuild @@ -46,6 +46,11 @@ python_prepare_all() { distutils-r1_python_prepare_all } +python_configure_all() { + # reported to break stuff, https://bugs.gentoo.org/638428 + append-flags -fno-tree-vectorize +} + python_test() { "${EPYTHON}" test/test.py || die "Tests fail with ${EPYTHON}" }