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 C85CC139694 for ; Thu, 23 Mar 2017 00:48:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F79121C096; Thu, 23 Mar 2017 00:48:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC99821C096 for ; Thu, 23 Mar 2017 00:48:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D978333FE7D for ; Thu, 23 Mar 2017 00:48:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5535E7199 for ; Thu, 23 Mar 2017 00:48:31 +0000 (UTC) From: "Justin Bronder" 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" Message-ID: <1490230047.9a32f682696b70b0e7e43c64c592a2ed6839ab95.jsbronder@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/openmpi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/openmpi/openmpi-2.1.0-r1.ebuild sys-cluster/openmpi/openmpi-2.1.0.ebuild X-VCS-Directories: sys-cluster/openmpi/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: 9a32f682696b70b0e7e43c64c592a2ed6839ab95 X-VCS-Branch: master Date: Thu, 23 Mar 2017 00:48:31 +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: dd79a3f5-9dd3-48cf-90ba-20fac75382e4 X-Archives-Hash: e6586c03bdb7bc8a29acf2477775c75a commit: 9a32f682696b70b0e7e43c64c592a2ed6839ab95 Author: Justin Bronder gentoo org> AuthorDate: Thu Mar 23 00:47:17 2017 +0000 Commit: Justin Bronder gentoo org> CommitDate: Thu Mar 23 00:47:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a32f682 sys-cluster/openmpi: remove dead symlinks With USE=-fortran, some symlinks were still being installed. Thanks to Arfrever Frehtes Taifersar Arahesis, #612586 Package-Manager: portage-2.3.3 .../openmpi/{openmpi-2.1.0.ebuild => openmpi-2.1.0-r1.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-cluster/openmpi/openmpi-2.1.0.ebuild b/sys-cluster/openmpi/openmpi-2.1.0-r1.ebuild similarity index 97% rename from sys-cluster/openmpi/openmpi-2.1.0.ebuild rename to sys-cluster/openmpi/openmpi-2.1.0-r1.ebuild index 026a864faf1..443314422e6 100644 --- a/sys-cluster/openmpi/openmpi-2.1.0.ebuild +++ b/sys-cluster/openmpi/openmpi-2.1.0-r1.ebuild @@ -147,7 +147,12 @@ multilib_src_install() { mv "${ED}"usr/include/mpif* "${T}"/fortran || die else # some fortran files get installed unconditionally - rm "${ED}"usr/include/mpif* "${ED}"usr/bin/mpif* || die + rm \ + "${ED}"usr/include/mpif* \ + "${ED}"usr/bin/mpif* \ + "${ED}"usr/bin/oshfort \ + "${ED}"usr/bin/shmemfort \ + || die fi }