From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3192159CA3 for ; Sun, 14 Feb 2016 16:55:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B04D321C007; Sun, 14 Feb 2016 16:55:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 426E221C007 for ; Sun, 14 Feb 2016 16:55:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48D65340821 for ; Sun, 14 Feb 2016 16:55:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 543018F6 for ; Sun, 14 Feb 2016 16:55:00 +0000 (UTC) From: "Justin Lecher" 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 Lecher" Message-ID: <1455468757.8a0ba08cb29477f1544d5514541b2930d24aac74.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/hpl/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/hpl/hpl-2.0-r1.ebuild sys-cluster/hpl/hpl-2.1.ebuild sys-cluster/hpl/metadata.xml X-VCS-Directories: sys-cluster/hpl/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8a0ba08cb29477f1544d5514541b2930d24aac74 X-VCS-Branch: master Date: Sun, 14 Feb 2016 16:55:00 +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: 03080943-6907-4044-b046-bf5eb8d1569e X-Archives-Hash: 1ff4e72fc6ab17a5362de1e8dd460fb6 commit: 8a0ba08cb29477f1544d5514541b2930d24aac74 Author: Justin Lecher gentoo org> AuthorDate: Sun Feb 14 16:52:37 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Feb 14 16:52:37 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a0ba08c sys-cluster/hpl: Chop DESCRIPTION to 80 chars * Bump EAPI to 6 Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> sys-cluster/hpl/hpl-2.0-r1.ebuild | 10 ++++++---- sys-cluster/hpl/hpl-2.1.ebuild | 10 ++++++---- sys-cluster/hpl/metadata.xml | 2 +- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/sys-cluster/hpl/hpl-2.0-r1.ebuild b/sys-cluster/hpl/hpl-2.0-r1.ebuild index 06f6f4c..2b1eccd 100644 --- a/sys-cluster/hpl/hpl-2.0-r1.ebuild +++ b/sys-cluster/hpl/hpl-2.0-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils mpi toolchain-funcs @@ -10,8 +10,8 @@ DESCRIPTION="High-Performance Linpack Benchmark for Distributed-Memory Computers HOMEPAGE="http://www.netlib.org/benchmark/hpl/" SRC_URI="http://www.netlib.org/benchmark/hpl/hpl-${PV}.tar.gz" -LICENSE="HPL" SLOT="0" +LICENSE="HPL" KEYWORDS="~x86 ~amd64" IUSE="doc" @@ -25,7 +25,7 @@ DEPEND="${RDEPEND} src_prepare() { local mpicc_path="$(mpi_pkg_cc)" - cp setup/Make.Linux_PII_FBLAS Make.gentoo_hpl_fblas_x86 + cp setup/Make.Linux_PII_FBLAS Make.gentoo_hpl_fblas_x86 || die sed -i \ -e "/^TOPdir/s,= .*,= ${S}," \ -e '/^HPL_OPTS\>/s,=,= -DHPL_DETAILED_TIMING -DHPL_COPY_L,' \ @@ -37,11 +37,13 @@ src_prepare() { -e "/^CC\>/s,= .*,= ${mpicc_path}," \ -e "/^LINKFLAGS\>/s|= .*|= ${LDFLAGS} $($(tc-getPKG_CONFIG) --libs-only-L blas lapack)|" \ Make.gentoo_hpl_fblas_x86 || die + default } src_compile() { # do NOT use emake here mpi_pkg_set_env + # parallel make failure bug #321539 HOME=${WORKDIR} emake -j1 arch=gentoo_hpl_fblas_x86 mpi_pkg_restore_env } diff --git a/sys-cluster/hpl/hpl-2.1.ebuild b/sys-cluster/hpl/hpl-2.1.ebuild index f2dcf8c..b4b3a8e 100644 --- a/sys-cluster/hpl/hpl-2.1.ebuild +++ b/sys-cluster/hpl/hpl-2.1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils mpi multilib -DESCRIPTION="A Portable Implementation of the High-Performance Linpack Benchmark for Distributed-Memory Computers" +DESCRIPTION="High-Performance Linpack Benchmark for Distributed-Memory Computers" HOMEPAGE="http://www.netlib.org/benchmark/hpl/" SRC_URI="http://www.netlib.org/benchmark/hpl/hpl-${PV}.tar.gz" @@ -19,7 +19,7 @@ RDEPEND=" $(mpi_pkg_deplist) virtual/blas virtual/lapack" -DEPEND="${DEPEND} +DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { @@ -40,9 +40,11 @@ src_prepare() { -e "/^CCFLAGS\>/s|= .*|= \$(HPL_DEFS) ${CFLAGS}|" \ -e "/^LINKFLAGS\>/s|= .*|= ${LDFLAGS}|" \ Make.gentoo_hpl_fblas_x86 || die + default } src_compile() { + # do NOT use emake here mpi_pkg_set_env # parallel make failure bug #321539 HOME=${WORKDIR} emake -j1 arch=gentoo_hpl_fblas_x86 diff --git a/sys-cluster/hpl/metadata.xml b/sys-cluster/hpl/metadata.xml index 9b28d5e..6f14b2f 100644 --- a/sys-cluster/hpl/metadata.xml +++ b/sys-cluster/hpl/metadata.xml @@ -6,7 +6,7 @@ Michael Imhof Release manager, patch manager - + cluster@gentoo.org Gentoo Cluster Project