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 34DED1382C5 for ; Fri, 19 Jun 2020 03:23:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F63BE0883; Fri, 19 Jun 2020 03:23:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C8E1DE0883 for ; Fri, 19 Jun 2020 03:23:07 +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 525CE34F05B for ; Fri, 19 Jun 2020 03:23:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A58521D for ; Fri, 19 Jun 2020 03:23:04 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1592536859.b4885d8684dc6dc72707abb17ef0e415acab4007.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/eigen/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/eigen/eigen-3.3.7.ebuild X-VCS-Directories: dev-cpp/eigen/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: b4885d8684dc6dc72707abb17ef0e415acab4007 X-VCS-Branch: master Date: Fri, 19 Jun 2020 03:23:04 +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: 060c48ec-6599-4be8-b54d-557700661878 X-Archives-Hash: 24cd86c6c082a67a8730ab87e0ed070e commit: b4885d8684dc6dc72707abb17ef0e415acab4007 Author: Georgy Yakovlev gentoo org> AuthorDate: Fri Jun 19 03:20:15 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Fri Jun 19 03:20:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4885d86 dev-cpp/eigen: use CPU_FLAGC_PPC, add vsx cpuflag Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Georgy Yakovlev gentoo.org> dev-cpp/eigen/eigen-3.3.7.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-cpp/eigen/eigen-3.3.7.ebuild b/dev-cpp/eigen/eigen-3.3.7.ebuild index 25453c922e9..8d2a3fc5fac 100644 --- a/dev-cpp/eigen/eigen-3.3.7.ebuild +++ b/dev-cpp/eigen/eigen-3.3.7.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://bitbucket.org/eigen/eigen/get/${PV}.tar.bz2 -> ${P}.tar.bz2" LICENSE="MPL-2.0" SLOT="3" KEYWORDS="amd64 ~arm arm64 ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="altivec c++11 cpu_flags_arm_neon cuda debug doc openmp test" #zvector vsx +IUSE="c++11 cpu_flags_arm_neon cpu_flags_ppc_altivec cpu_flags_ppc_vsx cuda debug doc openmp test" #zvector RESTRICT="!test? ( test )" RDEPEND="!dev-cpp/eigen:0" @@ -84,11 +84,12 @@ src_compile() { src_test() { local mycmakeargs=( -DEIGEN_TEST_NOQT=ON - -DEIGEN_TEST_ALTIVEC="$(usex altivec)" + -DEIGEN_TEST_ALTIVEC="$(usex cpu_flags_ppc_altivec)" -DEIGEN_TEST_CXX11="$(usex c++11)" -DEIGEN_TEST_CUDA="$(usex cuda)" -DEIGEN_TEST_OPENMP="$(usex openmp)" -DEIGEN_TEST_NEON64="$(usex cpu_flags_arm_neon)" + -DEIGEN_TEST_VSX="$(usex cpu_flags_ppc_vsx)" ) cmake-utils_src_configure cmake-utils_src_compile blas