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 8D828139694 for ; Thu, 23 Mar 2017 00:26:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FA7D21C081; Thu, 23 Mar 2017 00:26:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 2FF6521C081 for ; Thu, 23 Mar 2017 00:26: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 67AC03415D2 for ; Thu, 23 Mar 2017 00:26:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10D787197 for ; Thu, 23 Mar 2017 00:26: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: <1490228783.c00fb25cc919a08559292efab2e1ddd616041318.jsbronder@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/ X-VCS-Repository: proj/sci 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: c00fb25cc919a08559292efab2e1ddd616041318 X-VCS-Branch: master Date: Thu, 23 Mar 2017 00:26: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: c08fcf67-4d26-4d06-8225-36a71a4cbb36 X-Archives-Hash: 54f74d3cb5caaab9e3e5ca0ada1e7eb4 commit: c00fb25cc919a08559292efab2e1ddd616041318 Author: Justin Bronder gentoo org> AuthorDate: Thu Mar 23 00:25:52 2017 +0000 Commit: Justin Bronder gentoo org> CommitDate: Thu Mar 23 00:26:23 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c00fb25c 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 96% rename from sys-cluster/openmpi/openmpi-2.1.0.ebuild rename to sys-cluster/openmpi/openmpi-2.1.0-r1.ebuild index cf808b6ae..0b22945ee 100644 --- a/sys-cluster/openmpi/openmpi-2.1.0.ebuild +++ b/sys-cluster/openmpi/openmpi-2.1.0-r1.ebuild @@ -148,7 +148,12 @@ multilib_src_install() { mv "${ED}"/$(mpi_root)/usr/include/mpif* "${T}"/fortran || die else # some fortran files get installed unconditionally - rm "${ED}"/$(mpi_root)/usr/include/mpif* "${ED}"usr/bin/mpif* || die + rm \ + "${ED}"/$(mpi_root)/usr/include/mpif* \ + "${ED}"/$(mpi_root)/usr/bin/mpif* \ + "${ED}"/$(mpi_root)/usr/bin/oshfort \ + "${ED}"/$(mpi_root)/usr/bin/shmemfort \ + || die fi }