diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-04-02 17:36:40 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-04-02 17:36:40 +0100 |
commit | 171a011ad3a131671aeb5a98b9e3adf219ad2865 (patch) | |
tree | 0c877a3d1a37f10e37ad7168cfc52054aa0948a7 /sys-cluster/pmix | |
parent | 75fc75ae1f0481ffdb78450e801a9b443ba641bd (diff) |
gentoo resync : 02.04.2018
Diffstat (limited to 'sys-cluster/pmix')
-rw-r--r-- | sys-cluster/pmix/Manifest | 3 | ||||
-rw-r--r-- | sys-cluster/pmix/metadata.xml | 16 | ||||
-rw-r--r-- | sys-cluster/pmix/pmix-2.1.1.ebuild | 29 |
3 files changed, 48 insertions, 0 deletions
diff --git a/sys-cluster/pmix/Manifest b/sys-cluster/pmix/Manifest new file mode 100644 index 000000000000..922bf10d696c --- /dev/null +++ b/sys-cluster/pmix/Manifest @@ -0,0 +1,3 @@ +DIST pmix-2.1.1.tar.bz2 1063090 BLAKE2B 35a3bf7d297d399e897f9b9f748e176262cc0fde5afbfc9ea1e21e5c1550cf0081d9924692d7592fe1224eb727a9c3bb7b3fd216ae1b9e09dd29aefe83ac9eba SHA512 2e5d4b3c907ea9f54bb2b682c63fedb6e6c5cfad578c51bb64c805368ccd35adb317fc472867c717e0cd1d90bf13b18655a62041840c33b4a178c25bb3297d3d +EBUILD pmix-2.1.1.ebuild 660 BLAKE2B 5306589085c75c03a54d21ee9a10d50edfa8cbc8b4f33ec91d3159fe20f40fe1f3e4239df51031e909f97859fe312a7d2610347f6f7d73b621072d6ffefd08a4 SHA512 9f978588d588a0fefe51a0302e9d3a558feadbab7b7ea86692edb333d23a971152fd21a7d6d38b9f8123872649ec8e707ecceabea3c5d814ce1da02774c99786 +MISC metadata.xml 493 BLAKE2B f00201c1cec238be71a02be6d1874f5b391d48313a3ddb28a4985e439aabd90370c6cb34a662adef299f02025795726a65b316211bb668e14d5f83dcac1f6850 SHA512 b7b360f154a771d0b4b2deb4485b5816584aa24ba2d32e88e1a8867d4acbe1180426b67d4166bf39bd7b083714920cd3dcd7bbec3d99e6fe7ab991598ab97754 diff --git a/sys-cluster/pmix/metadata.xml b/sys-cluster/pmix/metadata.xml new file mode 100644 index 000000000000..f0314db0b37c --- /dev/null +++ b/sys-cluster/pmix/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>jlec@gentoo.org</email> + <name>Justin Lecher</name> + </maintainer> + <maintainer type="project"> + <email>cluster@gentoo.org</email> + <name>Gentoo Cluster Project</name> + </maintainer> + <use> + <flag name="munge">Enable authentication via munge</flag> + <flag name="pmi">Build PMI1 and PMI2 interface</flag> + </use> +</pkgmetadata> 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 000000000000..6bce06897de1 --- /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) +} |