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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C75CC158086 for ; Sun, 26 Dec 2021 03:41:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8ED6F2BC013; Sun, 26 Dec 2021 03:41:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBDD92BC013 for ; Sun, 26 Dec 2021 03:41:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31B733430E6 for ; Sun, 26 Dec 2021 03:41:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86A47266 for ; Sun, 26 Dec 2021 03:41:22 +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: <1640489917.72fc7e4e490df50f470b12af8b4e6dd4735487b2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/legion/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/legion/legion-21.09.0.ebuild sys-cluster/legion/legion-9999.ebuild X-VCS-Directories: sys-cluster/legion/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 72fc7e4e490df50f470b12af8b4e6dd4735487b2 X-VCS-Branch: master Date: Sun, 26 Dec 2021 03:41:22 +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: 354fe637-8d19-4c1f-8665-c21a63009b9b X-Archives-Hash: 35246a1a10a54cc0cfe559f3af7c6365 commit: 72fc7e4e490df50f470b12af8b4e6dd4735487b2 Author: Sam James gentoo org> AuthorDate: Sun Dec 26 03:33:21 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 26 03:38:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72fc7e4e sys-cluster/legion: tidy up CMake sets the shared libs bits for us and let's make use of Bashisms. Signed-off-by: Sam James gentoo.org> sys-cluster/legion/legion-21.09.0.ebuild | 9 +++++---- sys-cluster/legion/legion-9999.ebuild | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/sys-cluster/legion/legion-21.09.0.ebuild b/sys-cluster/legion/legion-21.09.0.ebuild index 9487e8eb0a59..a271def3a1d2 100644 --- a/sys-cluster/legion/legion-21.09.0.ebuild +++ b/sys-cluster/legion/legion-21.09.0.ebuild @@ -7,13 +7,14 @@ inherit cmake DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" -if [[ ${PV} = 9999 ]]; then +if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" else SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + S="${WORKDIR}"/${PN}-${P} + KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${P}" fi LICENSE="BSD" @@ -29,14 +30,14 @@ DEPEND=" RDEPEND="${DEPEND}" src_configure() { - mycmakeargs=( + local mycmakeargs=( -DLegion_USE_HWLOC=$(usex hwloc) -DLegion_USE_GASNet=$(usex gasnet) -DLegion_ENABLE_TESTING=$(usex test) - -DBUILD_SHARED_LIBS=ON -DLegion_BUILD_EXAMPLES=ON -DLegion_BUILD_TESTS=ON -DLegion_BUILD_TUTORIAL=ON ) + cmake_src_configure } diff --git a/sys-cluster/legion/legion-9999.ebuild b/sys-cluster/legion/legion-9999.ebuild index 9487e8eb0a59..a271def3a1d2 100644 --- a/sys-cluster/legion/legion-9999.ebuild +++ b/sys-cluster/legion/legion-9999.ebuild @@ -7,13 +7,14 @@ inherit cmake DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" -if [[ ${PV} = 9999 ]]; then +if [[ ${PV} == 9999 ]]; then inherit git-r3 EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" else SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + S="${WORKDIR}"/${PN}-${P} + KEYWORDS="~amd64" - S="${WORKDIR}/${PN}-${P}" fi LICENSE="BSD" @@ -29,14 +30,14 @@ DEPEND=" RDEPEND="${DEPEND}" src_configure() { - mycmakeargs=( + local mycmakeargs=( -DLegion_USE_HWLOC=$(usex hwloc) -DLegion_USE_GASNet=$(usex gasnet) -DLegion_ENABLE_TESTING=$(usex test) - -DBUILD_SHARED_LIBS=ON -DLegion_BUILD_EXAMPLES=ON -DLegion_BUILD_TESTS=ON -DLegion_BUILD_TUTORIAL=ON ) + cmake_src_configure }