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 633DA138335 for ; Mon, 31 Dec 2018 21:14:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 965B5E09CF; Mon, 31 Dec 2018 21:14:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 73117E09CF for ; Mon, 31 Dec 2018 21:14:54 +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 F2C52335CF5 for ; Mon, 31 Dec 2018 21:14:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5044508 for ; Mon, 31 Dec 2018 21:14:49 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1546290826.475e43d7365b80a6fa40226ff49c863bcfe0dae5.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/parmetis/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/parmetis/parmetis-4.0.3.ebuild X-VCS-Directories: sci-libs/parmetis/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 475e43d7365b80a6fa40226ff49c863bcfe0dae5 X-VCS-Branch: master Date: Mon, 31 Dec 2018 21:14:49 +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: 105e5b74-a464-4a1a-9b1c-b370abc43421 X-Archives-Hash: 922431f5e83230af6217b3fab848e70e commit: 475e43d7365b80a6fa40226ff49c863bcfe0dae5 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 31 20:58:43 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 31 21:13:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=475e43d7 sci-libs/parmetis: EAPI-6 bump, add missing cmake-utils_src_prepare Closes: https://bugs.gentoo.org/671994 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/parmetis/parmetis-4.0.3.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sci-libs/parmetis/parmetis-4.0.3.ebuild b/sci-libs/parmetis/parmetis-4.0.3.ebuild index 0df1f3da634..bb48b4e600f 100644 --- a/sci-libs/parmetis/parmetis-4.0.3.ebuild +++ b/sci-libs/parmetis/parmetis-4.0.3.ebuild @@ -1,14 +1,13 @@ # Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -inherit eutils cmake-utils toolchain-funcs +EAPI=6 # Check metis version bundled in parmetis tar ball # by diff of metis and parmetis tar ball METISPV=5.1.0 METISP=metis-${METISPV} +inherit cmake-utils toolchain-funcs DESCRIPTION="Parallel (MPI) unstructured graph partitioning library" HOMEPAGE="http://www-users.cs.umn.edu/~karypis/metis/parmetis/" @@ -36,6 +35,8 @@ pkg_setup() { } src_prepare() { + cmake-utils_src_prepare + # libdir love sed -i \ -e '/DESTINATION/s/lib/lib${LIB_SUFFIX}/g' \ @@ -58,7 +59,6 @@ src_prepare() { -e '/add_subdirectory(include/d' \ -e '/add_subdirectory(libparmetis/d' \ CMakeLists.txt || die - fi if use int64; then @@ -77,8 +77,8 @@ src_configure() { -DMETIS_PATH="${S}/metis" -DGKRAND=ON -DMETIS_INSTALL=ON - $(cmake-utils_use openmp OPENMP) - $(cmake-utils_use pcre PCRE) + -DOPENMP=$(usex openmp) + -DPCRE=$(usex pcre) $@ ) cmake-utils_src_configure