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 E190C138351 for ; Mon, 2 Mar 2020 22:04:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1B37E08E8; Mon, 2 Mar 2020 22:04:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 8BAA8E08E8 for ; Mon, 2 Mar 2020 22:04:06 +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 ECCCC34F541 for ; Mon, 2 Mar 2020 22:04:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC2CD15D for ; Mon, 2 Mar 2020 22:04:02 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1583186633.6f783fe6d58fb58dd0d6a3e6063aade441a84322.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/rankstr/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/rankstr/rankstr-0.0.2.ebuild X-VCS-Directories: sys-cluster/rankstr/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 6f783fe6d58fb58dd0d6a3e6063aade441a84322 X-VCS-Branch: dev Date: Mon, 2 Mar 2020 22:04:02 +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: d7d37909-32e2-4bba-9d9e-7fc879d54c15 X-Archives-Hash: 536c24ce68f384d830c2f162851337a4 commit: 6f783fe6d58fb58dd0d6a3e6063aade441a84322 Author: Alessandro Barbieri gmail com> AuthorDate: Mon Mar 2 21:49:47 2020 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Mar 2 22:03:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f783fe6 sys-cluster/rankstr: unconditionally depend on MPI Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/rankstr/rankstr-0.0.2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys-cluster/rankstr/rankstr-0.0.2.ebuild b/sys-cluster/rankstr/rankstr-0.0.2.ebuild index ffe57a9..d3db985 100644 --- a/sys-cluster/rankstr/rankstr-0.0.2.ebuild +++ b/sys-cluster/rankstr/rankstr-0.0.2.ebuild @@ -12,11 +12,11 @@ SRC_URI="https://github.com/ECP-VeloC/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" -IUSE="mpi test" +IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" - mpi? ( virtual/mpi ) + virtual/mpi " DEPEND="${RDEPEND}" BDEPEND=" @@ -32,7 +32,7 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DMPI="$(usex mpi "" OFF)" + -DMPI="ON" ) cmake-utils_src_configure }