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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7A7F51581FB for ; Sun, 24 Nov 2024 10:46:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C96ECE07D7; Sun, 24 Nov 2024 10:46:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF411E07D7 for ; Sun, 24 Nov 2024 10:46:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3B93335D6A for ; Sun, 24 Nov 2024 10:46:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FFE711DF for ; Sun, 24 Nov 2024 10:46:09 +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: <1732445109.d426e7a18be312662bd29c6813cc9fe41ecf6e9c.asturm@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.4.0-r3.ebuild dev-cpp/eigen/eigen-9999.ebuild X-VCS-Directories: dev-cpp/eigen/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d426e7a18be312662bd29c6813cc9fe41ecf6e9c X-VCS-Branch: master Date: Sun, 24 Nov 2024 10:46:09 +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: 0c5ef29c-f8b0-49b5-bc89-d90571881094 X-Archives-Hash: b0d90895b91dbbad84ccca273e8fd6c7 commit: d426e7a18be312662bd29c6813cc9fe41ecf6e9c Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 24 10:45:09 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 24 10:45:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d426e7a1 dev-cpp/eigen: Restrict tests Otherwise we will never be able to stabilise anything here. Bug: https://bugs.gentoo.org/927892 Bug: https://bugs.gentoo.org/932646 Bug: https://bugs.gentoo.org/943401 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-cpp/eigen/eigen-3.4.0-r3.ebuild | 14 +++++++------- dev-cpp/eigen/eigen-9999.ebuild | 12 ++++++------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/dev-cpp/eigen/eigen-3.4.0-r3.ebuild b/dev-cpp/eigen/eigen-3.4.0-r3.ebuild index 7b368f254261..ca9fcf23a441 100644 --- a/dev-cpp/eigen/eigen-3.4.0-r3.ebuild +++ b/dev-cpp/eigen/eigen-3.4.0-r3.ebuild @@ -82,8 +82,13 @@ IUSE_TEST_BACKENDS=( IUSE="${CPU_FEATURES_MAP[*]%:*} clang cuda hip debug doc lapack mathjax test ${IUSE_TEST_BACKENDS[*]}" #zvector -# Tests failing again because of compiler issues -RESTRICT="!test? ( test )" +REQUIRED_USE=" + test? ( !lapack ) + || ( ${IUSE_TEST_BACKENDS[*]} ) +" + +# Tests failing again because of compiler issues; bugs #932646, #943401 +RESTRICT="test !test? ( test )" BDEPEND=" doc? ( @@ -142,11 +147,6 @@ DEPEND=" ) " -REQUIRED_USE=" - test? ( !lapack ) - || ( ${IUSE_TEST_BACKENDS[*]} ) -" - PATCHES=( "${FILESDIR}/${PN}-3.3.9-max-macro.patch" "${FILESDIR}/${PN}-3.4.0-doc-nocompress.patch" # bug 830064 diff --git a/dev-cpp/eigen/eigen-9999.ebuild b/dev-cpp/eigen/eigen-9999.ebuild index b4f6ac524ee0..6b434b04723c 100644 --- a/dev-cpp/eigen/eigen-9999.ebuild +++ b/dev-cpp/eigen/eigen-9999.ebuild @@ -82,8 +82,12 @@ IUSE_TEST_BACKENDS=( IUSE="benchmark ${CPU_FEATURES_MAP[*]%:*} clang cuda hip debug doc lapack mathjax test ${IUSE_TEST_BACKENDS[*]}" #zvector -# Tests failing again because of compiler issues -RESTRICT="!test? ( test )" +REQUIRED_USE=" + || ( ${IUSE_TEST_BACKENDS[*]} ) +" + +# Tests failing again because of compiler issues; bugs #932646, #943401 +RESTRICT="test !test? ( test )" BDEPEND=" doc? ( @@ -142,10 +146,6 @@ DEPEND=" ) " -REQUIRED_USE=" - || ( ${IUSE_TEST_BACKENDS[*]} ) -" - PATCHES=( "${FILESDIR}/${PN}-3.4.0-doc-nocompress.patch" # bug 830064 "${FILESDIR}/${PN}-3.4.0-buildstring.patch"