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 8EB29138D61 for ; Mon, 24 Oct 2016 22:38:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20A44E081D; Mon, 24 Oct 2016 22:38:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07064E081D for ; Mon, 24 Oct 2016 22:38:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA03C341652 for ; Mon, 24 Oct 2016 22:38:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1200E2FD for ; Mon, 24 Oct 2016 22:38:52 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1477348720.ef99c4775e6802611ac2175a67a8c837cb3d4924.ottxor@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/legion/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/legion/Manifest sys-cluster/legion/legion-16.10.0.ebuild X-VCS-Directories: sys-cluster/legion/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: ef99c4775e6802611ac2175a67a8c837cb3d4924 X-VCS-Branch: master Date: Mon, 24 Oct 2016 22:38:52 +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: b31e7a2a-18f7-4fc1-bb96-f831037d4f12 X-Archives-Hash: 26ba52906886141a78c7b4c49b991271 commit: ef99c4775e6802611ac2175a67a8c837cb3d4924 Author: Christoph Junghans gentoo org> AuthorDate: Mon Oct 24 22:38:28 2016 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Mon Oct 24 22:38:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef99c477 sys-cluster/legion: version bump Package-Manager: portage-2.3.0 sys-cluster/legion/Manifest | 1 + sys-cluster/legion/legion-16.10.0.ebuild | 34 ++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/sys-cluster/legion/Manifest b/sys-cluster/legion/Manifest index f02219e..0008690 100644 --- a/sys-cluster/legion/Manifest +++ b/sys-cluster/legion/Manifest @@ -1 +1,2 @@ DIST legion-16.08.0.tar.gz 2501054 SHA256 c2a344e54124172b49d97e0e0033021e9ed3d9ddb4158b0620430c5597f6ccba SHA512 8847fa8c0c7683812dd6ffb038a4d6d3427fdfde62ec917ab32e9a15cd7320321cab2b106479589aa2451cabd98cd0b1dc88b4ff668f991bb4c95f383de785a5 WHIRLPOOL 355f54164fca71c49891869644c841814600c09253bc807297bc79391f13f05fbe93029f29918167cd79a745928b0d991bc671ccd841320a32ce67941f34705c +DIST legion-16.10.0.tar.gz 2474656 SHA256 92190ae5ff0a1f6356890446e026479ed715230d4761a40d4834af256a722099 SHA512 cfe610fef047def835f95adcc4ae52d7844a4a89a5bdebb2ec40b0e63a66aba9d180bd78e559762b1ac18f84c1ca1142c3e73238dbe4c516672a8843335442a5 WHIRLPOOL 3a0e083b9d8d5c5071f1914e7cc3fda0c7c5bc2f4d187506aee9d3c1def8a046ec7732f2ce105bc3ee93075f35fc2ee7952020e2806e7f43be962018147111fb diff --git a/sys-cluster/legion/legion-16.10.0.ebuild b/sys-cluster/legion/legion-16.10.0.ebuild new file mode 100644 index 00000000..be31488 --- /dev/null +++ b/sys-cluster/legion/legion-16.10.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +CMAKE_MIN_VERSION=3.6 + +inherit cmake-utils + +DESCRIPTION="A data-centric parallel programming system" +HOMEPAGE="http://legion.stanford.edu/" +SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gasnet +hwloc" + +DEPEND=" + gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 ) + hwloc? ( sys-apps/hwloc ) + " + +S="${WORKDIR}/${PN}-${P}" + +src_configure() { + mycmakeargs=( + -DLegion_USE_HWLOC=$(usex hwloc) + -DLegion_USE_GASNet=$(usex gasnet) + -DBUILD_SHARED_LIBS=ON + -DLegion_BUILD_EXAMPLES=ON + ) + cmake-utils_src_configure +}