From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1002128-garchives=archives.gentoo.org@lists.gentoo.org> 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 C0F0E1382C5 for <garchives@archives.gentoo.org>; Wed, 7 Feb 2018 22:29:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FE7EE0AF8; Wed, 7 Feb 2018 22:29:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E016BE0AF8 for <gentoo-commits@lists.gentoo.org>; Wed, 7 Feb 2018 22:29:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E0D47335C38 for <gentoo-commits@lists.gentoo.org>; Wed, 7 Feb 2018 22:29:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F1011DE for <gentoo-commits@lists.gentoo.org>; Wed, 7 Feb 2018 22:29:19 +0000 (UTC) From: "Justin Bronder" <jsbronder@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Bronder" <jsbronder@gentoo.org> Message-ID: <1518042533.fff07ea867f8fe4fd6ab61d18a3e1687dd73970f.jsbronder@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/mpi/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/mpi/mpi-2.0-r5.ebuild X-VCS-Directories: virtual/mpi/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: fff07ea867f8fe4fd6ab61d18a3e1687dd73970f X-VCS-Branch: master Date: Wed, 7 Feb 2018 22:29:19 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ed85139a-4840-4f84-97a0-2cef58414cf2 X-Archives-Hash: a44bfe766a4a3952f8b7138752c4ad9d commit: fff07ea867f8fe4fd6ab61d18a3e1687dd73970f Author: Justin Bronder <jsbronder <AT> gentoo <DOT> org> AuthorDate: Wed Feb 7 22:28:31 2018 +0000 Commit: Justin Bronder <jsbronder <AT> gentoo <DOT> org> CommitDate: Wed Feb 7 22:28:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff07ea8 virtual/mpi: Update sys-cluster/openmpi dependency >=sys-cluster/openmpi-3 no longer has the threads USE flag as the feature it used to control is now always enabled by upstream. Fixes #645952. Thanks to Eugene Shalygin for the report. Package-Manager: Portage-2.3.13, Repoman-2.3.3 virtual/mpi/mpi-2.0-r5.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/virtual/mpi/mpi-2.0-r5.ebuild b/virtual/mpi/mpi-2.0-r5.ebuild new file mode 100644 index 00000000000..6bc0e44b350 --- /dev/null +++ b/virtual/mpi/mpi-2.0-r5.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit multilib-build + +DESCRIPTION="Virtual for Message Passing Interface (MPI) v2.0 implementation" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="cxx fortran romio threads" + +RDEPEND="|| ( + >=sys-cluster/openmpi-1.10.2-r1[${MULTILIB_USEDEP},cxx?,fortran?,romio?,threads(+)?] + >=sys-cluster/mpich-3.2-r1[${MULTILIB_USEDEP},cxx?,fortran?,romio?,threads?] + sys-cluster/mpich2[${MULTILIB_USEDEP},cxx?,fortran?,romio?,threads?] + sys-cluster/mvapich2[${MULTILIB_USEDEP},cxx(-)?,fortran?,romio?,threads?] + sys-cluster/nullmpi[${MULTILIB_USEDEP},cxx(-)?,fortran(-)?,romio(-)?,threads(-)?] + sys-cluster/native-mpi +)"