From: "Christoph Junghans" <junghans@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/legion/
Date: Fri, 1 Jun 2018 17:22:19 +0000 (UTC) [thread overview]
Message-ID: <1527873712.6af00c88f8b6ecbfdabba748b9b9892cba5c53ea.junghans@gentoo> (raw)
commit: 6af00c88f8b6ecbfdabba748b9b9892cba5c53ea
Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 1 17:21:37 2018 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Fri Jun 1 17:21:52 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af00c88
sys-cluster/legion: version bump
Package-Manager: Portage-2.3.24, Repoman-2.3.6
sys-cluster/legion/Manifest | 2 ++
sys-cluster/legion/legion-18.02.0.ebuild | 40 ++++++++++++++++++++++++++++++++
sys-cluster/legion/legion-18.05.0.ebuild | 40 ++++++++++++++++++++++++++++++++
3 files changed, 82 insertions(+)
diff --git a/sys-cluster/legion/Manifest b/sys-cluster/legion/Manifest
index ec49885ae0c..1d9bd405d1b 100644
--- a/sys-cluster/legion/Manifest
+++ b/sys-cluster/legion/Manifest
@@ -4,3 +4,5 @@ DIST legion-17.02.0.tar.gz 2690415 BLAKE2B 6278b65c049e4909fdbe330f875e9649dfbca
DIST legion-17.05.0.tar.gz 2783482 BLAKE2B aad4da51237b19504949c13e3f6e021468042186fe55a41dde44e51066504df98e07fd6abf531cb4f46e1d7f7f1cf05f471d0394f092d9504e47f78ae8675dc5 SHA512 51532f043eea1467a2b8ff17004f224c763f411eb5940d0a4dc5d8eb6503d758964aba26eb4977c68264c7344fcf269682a428e86a2c1a756f91cc9c50d04677
DIST legion-17.08.0.tar.gz 2839522 BLAKE2B b9f9d814b319c69a1e29b108c7d78fcd04f87d58371baf1c102eb9eee8c435d0127aed507bbcbf096e2b78705f39e88400251b2e0d46931688ed30cb51f93e89 SHA512 5d97157f97e12149e5fdf3a75d2e6e8a41ebf97e09c35501e2c93437bd0a47643d261f68c6b4a83b47e64d706f35914acd3a852eb0c08a11696b05ba9ef7af87
DIST legion-17.10.0.tar.gz 2975023 BLAKE2B 772f666c0cd8fc96e1e460e4c8253289069eea2ed8820f091ad517228fb7b2d56bc8bedbe9bc4d5776869fc4f0250f71644bf773362f65a0bba6f96be51c32af SHA512 c4be9b32b47b3c4ae38374606125867f963a109dd542a52ee20b2964e5849121207d78947f0ab6ea4ed5e8a027b26da7b1a3a61124f175c1b9f7323e56b8d9b2
+DIST legion-18.02.0.tar.gz 2967232 BLAKE2B 5f22efe681ee036af95b3d84c104988acfea899b76684860c1a27dda27b757c7a444ea5c1cec70ce0a19ffaa8323c208997402971017f72415a12ff9aabadea5 SHA512 052026c6f7e3920bfe097ada83571e4f7d4ad74a59d4a84af4d35f089c5d1b216e90f4f8547ea894e4b53b138b81e594c60342c41557c985b64d08c4aca23794
+DIST legion-18.05.0.tar.gz 3009091 BLAKE2B 86c113cad11e2fbdcf03233c09fe429ceff12aaac6621e0ae22ac141cf7a6c62f7df23f78861a826ba55a45c3eae46ca60b9e47339f9ed3333560797733b7d4e SHA512 f7000b5a6b66d07d72de9be7ef0bcdfd7aa95f838bfc1ccb4b146cf0c4407682a5cde75b56311bb07abd808dc67527e02a3a3db10bca874028a7335b54e1120a
diff --git a/sys-cluster/legion/legion-18.02.0.ebuild b/sys-cluster/legion/legion-18.02.0.ebuild
new file mode 100644
index 00000000000..51357e88417
--- /dev/null
+++ b/sys-cluster/legion/legion-18.02.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A data-centric parallel programming system"
+HOMEPAGE="http://legion.stanford.edu/"
+if [[ $PV = 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git"
+ KEYWORDS=""
+else
+ SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/${PN}-${P}"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="gasnet +hwloc test"
+
+DEPEND="
+ gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 )
+ hwloc? ( sys-apps/hwloc )
+ "
+
+src_configure() {
+ 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-utils_src_configure
+}
diff --git a/sys-cluster/legion/legion-18.05.0.ebuild b/sys-cluster/legion/legion-18.05.0.ebuild
new file mode 100644
index 00000000000..51357e88417
--- /dev/null
+++ b/sys-cluster/legion/legion-18.05.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="A data-centric parallel programming system"
+HOMEPAGE="http://legion.stanford.edu/"
+if [[ $PV = 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git"
+ KEYWORDS=""
+else
+ SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz"
+ KEYWORDS="~amd64"
+ S="${WORKDIR}/${PN}-${P}"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="gasnet +hwloc test"
+
+DEPEND="
+ gasnet? ( >=sys-cluster/gasnet-1.26.4-r1 )
+ hwloc? ( sys-apps/hwloc )
+ "
+
+src_configure() {
+ 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-utils_src_configure
+}
next reply other threads:[~2018-06-01 17:22 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-01 17:22 Christoph Junghans [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-29 2:28 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/legion/ Sam James
2024-03-29 2:28 Sam James
2024-03-29 2:28 Sam James
2021-12-26 3:49 Sam James
2021-12-26 3:41 Sam James
2021-12-26 3:41 Sam James
2021-12-26 3:41 Sam James
2021-10-29 22:44 Sam James
2021-04-03 15:44 Sam James
2021-02-15 0:32 Sam James
2019-07-03 22:53 Christoph Junghans
2019-03-18 22:53 Patrice Clement
2019-02-10 20:55 Christoph Junghans
2017-10-28 0:35 Christoph Junghans
2017-08-25 0:31 Christoph Junghans
2017-05-26 22:09 Christoph Junghans
2017-04-06 20:48 Christoph Junghans
2017-02-07 5:45 Johannes Huber
2016-11-14 2:01 Christoph Junghans
2016-10-24 22:38 Christoph Junghans
2016-09-09 22:34 Christoph Junghans
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1527873712.6af00c88f8b6ecbfdabba748b9b9892cba5c53ea.junghans@gentoo \
--to=junghans@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox