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 559DE1382C5 for ; Sun, 1 Apr 2018 20:51:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29FFCE0A89; Sun, 1 Apr 2018 20:51:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E1FB4E0A7C for ; Sun, 1 Apr 2018 20:51:38 +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 670BF33BE5A for ; Sun, 1 Apr 2018 20:51:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A69B7274 for ; Sun, 1 Apr 2018 20:51:35 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1522615893.69972533a7a57037765a37592875d5ac2e321571.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/pmix/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/pmix/Manifest sys-cluster/pmix/metadata.xml sys-cluster/pmix/pmix-2.1.1.ebuild X-VCS-Directories: sys-cluster/pmix/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 69972533a7a57037765a37592875d5ac2e321571 X-VCS-Branch: master Date: Sun, 1 Apr 2018 20:51:35 +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: ddb946ff-57b7-4abd-b81f-b3f3df76d0af X-Archives-Hash: 94fd1a37825747735f24cdfbb2967870 commit: 69972533a7a57037765a37592875d5ac2e321571 Author: Justin Lecher gentoo org> AuthorDate: Sun Apr 1 20:43:31 2018 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Apr 1 20:51:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69972533 sys-cluster/pmix: New package Signed-off-by: Justin Lecher gentoo.org> Package-Manager: Portage-2.3.27, Repoman-2.3.9 sys-cluster/pmix/Manifest | 1 + sys-cluster/pmix/metadata.xml | 16 ++++++++++++++++ sys-cluster/pmix/pmix-2.1.1.ebuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/sys-cluster/pmix/Manifest b/sys-cluster/pmix/Manifest new file mode 100644 index 00000000000..3d268978deb --- /dev/null +++ b/sys-cluster/pmix/Manifest @@ -0,0 +1 @@ +DIST pmix-2.1.1.tar.bz2 1063090 BLAKE2B 35a3bf7d297d399e897f9b9f748e176262cc0fde5afbfc9ea1e21e5c1550cf0081d9924692d7592fe1224eb727a9c3bb7b3fd216ae1b9e09dd29aefe83ac9eba SHA512 2e5d4b3c907ea9f54bb2b682c63fedb6e6c5cfad578c51bb64c805368ccd35adb317fc472867c717e0cd1d90bf13b18655a62041840c33b4a178c25bb3297d3d diff --git a/sys-cluster/pmix/metadata.xml b/sys-cluster/pmix/metadata.xml new file mode 100644 index 00000000000..f0314db0b37 --- /dev/null +++ b/sys-cluster/pmix/metadata.xml @@ -0,0 +1,16 @@ + + + + + jlec@gentoo.org + Justin Lecher + + + cluster@gentoo.org + Gentoo Cluster Project + + + Enable authentication via munge + Build PMI1 and PMI2 interface + + diff --git a/sys-cluster/pmix/pmix-2.1.1.ebuild b/sys-cluster/pmix/pmix-2.1.1.ebuild new file mode 100644 index 00000000000..6bce06897de --- /dev/null +++ b/sys-cluster/pmix/pmix-2.1.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="The Process Management Interface (PMI) Exascale" +HOMEPAGE="https://pmix.github.io/pmix/" +SRC_URI="https://github.com/pmix/pmix/releases/download/v${PV}/${P}.tar.bz2" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug +munge pmi" + +RDEPEND=" + dev-libs/libevent:0= + sys-cluster/ucx + sys-libs/zlib:0= + munge? ( sys-auth/munge ) + pmi? ( !sys-cluster/slurm ) + " +DEPEND="${RDEPEND}" + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable pmi pmi-backward-compatibility) \ + $(use_with munge) +}