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 06567138350 for ; Sun, 22 Mar 2020 14:34:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BE24E09EF; Sun, 22 Mar 2020 14:34:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 31074E09EF for ; Sun, 22 Mar 2020 14:34:20 +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 07A7734F3B4 for ; Sun, 22 Mar 2020 14:34:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAECE18E for ; Sun, 22 Mar 2020 14:34:17 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1584887653.7753ef2ff664ef275563d0c02f9514dba95d7d87.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/openmpi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/openmpi/openmpi-1.4.5.ebuild X-VCS-Directories: sys-cluster/openmpi/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 7753ef2ff664ef275563d0c02f9514dba95d7d87 X-VCS-Branch: master Date: Sun, 22 Mar 2020 14:34:17 +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: c7de9752-b951-4d8d-a089-e7688a267391 X-Archives-Hash: 755775142aaf14ba5e687fd1831c23ce commit: 7753ef2ff664ef275563d0c02f9514dba95d7d87 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Mar 22 14:33:27 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Mar 22 14:34:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7753ef2f sys-cluster/openmpi: migrate 1.4.5 to EAPI=7 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Mikle Kolyada gentoo.org> sys-cluster/openmpi/openmpi-1.4.5.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys-cluster/openmpi/openmpi-1.4.5.ebuild b/sys-cluster/openmpi/openmpi-1.4.5.ebuild index 06dc029d76c..5d2d9e0e1e9 100644 --- a/sys-cluster/openmpi/openmpi-1.4.5.ebuild +++ b/sys-cluster/openmpi/openmpi-1.4.5.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 FORTRAN_NEEDED=fortran -inherit eutils fortran-2 multilib flag-o-matic toolchain-funcs +inherit fortran-2 flag-o-matic toolchain-funcs MY_P=${P/-mpi} @@ -50,6 +50,7 @@ pkg_setup() { } src_prepare() { + default # Necessary for scalibility, see # http://www.open-mpi.org/community/lists/users/2008/09/6514.php if use threads; then @@ -92,7 +93,7 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install + default dodoc README AUTHORS NEWS VERSION }