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 3BDBD138334 for ; Wed, 12 Sep 2018 08:08:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13CACE0A98; Wed, 12 Sep 2018 08:08:50 +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 DFDD3E0A98 for ; Wed, 12 Sep 2018 08:08:49 +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 D3294335CCC for ; Wed, 12 Sep 2018 08:08:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 716843C3 for ; Wed, 12 Sep 2018 08:08:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1536739631.f73445d6f63e570d115d495d4acecf835949b235.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/alglib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/alglib/alglib-3.10.0-r1.ebuild X-VCS-Directories: sci-libs/alglib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f73445d6f63e570d115d495d4acecf835949b235 X-VCS-Branch: master Date: Wed, 12 Sep 2018 08:08:45 +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: 5b0162a9-9b1d-4c8c-919d-1dacb70fb8d1 X-Archives-Hash: 5adb43a7490fbe1b61a0ba7fed11a731 commit: f73445d6f63e570d115d495d4acecf835949b235 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Sep 12 08:03:19 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Sep 12 08:07:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f73445d6 sci-libs/alglib: Fix tests on x86 Closes: https://bugs.gentoo.org/665504 Package-Manager: Portage-2.3.49, Repoman-2.3.10 sci-libs/alglib/alglib-3.10.0-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sci-libs/alglib/alglib-3.10.0-r1.ebuild b/sci-libs/alglib/alglib-3.10.0-r1.ebuild index 13290e16e87..09143c32630 100644 --- a/sci-libs/alglib/alglib-3.10.0-r1.ebuild +++ b/sci-libs/alglib/alglib-3.10.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit cmake-utils +inherit cmake-utils flag-o-matic DESCRIPTION="Numerical analysis and data processing library" HOMEPAGE="http://www.alglib.net/" @@ -20,6 +20,7 @@ PATCHES=( "${FILESDIR}/${P}-disable-minlm-test.patch" ) src_prepare() { cp "${FILESDIR}"/CMakeLists.txt-3.8.2 CMakeLists.txt || die + use x86 && append-cppflags -ffloat-store cmake-utils_src_prepare }