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 6F4D913835A for ; Fri, 18 Sep 2020 16:47:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 52C51E0828; Fri, 18 Sep 2020 16:47:44 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E151E0828 for ; Fri, 18 Sep 2020 16:47:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D5A593410A0 for ; Fri, 18 Sep 2020 16:47:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EED4C366 for ; Fri, 18 Sep 2020 16:47:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1600447426.86f607c8a9fdb8858eacdeda23ea086857bf8131.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/scotch/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/scotch/scotch-6.0.4-r2.ebuild X-VCS-Directories: sci-libs/scotch/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 86f607c8a9fdb8858eacdeda23ea086857bf8131 X-VCS-Branch: master Date: Fri, 18 Sep 2020 16:47:40 +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: a6c2a59c-58c8-4c4c-9115-e0b73d35e743 X-Archives-Hash: 99af56d865194da46ed9356781559f4d commit: 86f607c8a9fdb8858eacdeda23ea086857bf8131 Author: Sam James gentoo org> AuthorDate: Fri Sep 18 16:43:46 2020 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 18 16:43:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f607c8 sci-libs/scotch: fix tests Closes: https://bugs.gentoo.org/532620 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sam James gentoo.org> sci-libs/scotch/scotch-6.0.4-r2.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/sci-libs/scotch/scotch-6.0.4-r2.ebuild b/sci-libs/scotch/scotch-6.0.4-r2.ebuild index 9f16ee0554d..09ea23318f8 100644 --- a/sci-libs/scotch/scotch-6.0.4-r2.ebuild +++ b/sci-libs/scotch/scotch-6.0.4-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -7,26 +7,28 @@ inherit eutils toolchain-funcs versionator flag-o-matic multilib # use esmumps version to allow linking with mumps MYP="${PN}_${PV}_esmumps" -# download id on gforge changes every goddamn release +# download id on gforge changes every release(!) DID=34618 SOVER=$(get_major_version) DESCRIPTION="Software for graph, mesh and hypergraph partitioning" HOMEPAGE="http://www.labri.u-bordeaux.fr/perso/pelegrin/scotch/" SRC_URI="http://gforge.inria.fr/frs/download.php/${DID}/${MYP}.tar.gz" +S="${WORKDIR}/${P/-/_}" LICENSE="CeCILL-2" SLOT="0/${SOVER}" KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc int64 mpi static-libs tools threads" +IUSE="doc int64 mpi static-libs test tools threads" +# bug #532620 +REQUIRED_USE="test? ( threads )" +RESTRICT="!test? ( test )" DEPEND=" sys-libs/zlib mpi? ( virtual/mpi )" RDEPEND="${DEPEND}" -S=${WORKDIR}/${P/-/_} - static_to_shared() { local libstatic=${1}; shift local libname=$(basename ${libstatic%.a})