Install this version:
emerge -a =sys-cluster/pmix-6.1.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-cluster/pmix-6.1.0
Or alternatively:
emerge --autounmask-write -a =sys-cluster/pmix-6.1.0
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=9
inherit flag-o-matic libtool
DESCRIPTION="The Process Management Interface (PMI) Exascale"
HOMEPAGE="https://openpmix.org/"
SRC_URI="https://github.com/openpmix/openpmix/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
# No support for 32-bit systems as of 4.2.8 (https://github.com/open-mpi/ompi/issues/11248)
KEYWORDS="~amd64 ~arm64 ~ppc64 -x86"
IUSE="debug +munge pmi"
RDEPEND="
dev-libs/libevent:=
sys-apps/hwloc:=
virtual/zlib:=
munge? ( sys-auth/munge )
pmi? ( !sys-cluster/slurm )
"
DEPEND="${RDEPEND}"
src_prepare() {
default
elibtoolize
}
src_configure() {
# -Werror=lto-type-mismatch
# https://github.com/openpmix/openpmix/issues/3350
filter-lto
local myeconfargs=(
# These are alternatives. We must use the one in DEPEND, and also
# prevent automagic fallbacks.
--with-libevent
# tries to build both zlib and zlib-ng
--without-zlibng
--enable-ipv6
$(use_enable debug)
$(use_with munge)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
# bug #884765
mv "${ED}"/usr/bin/pquery "${ED}"/usr/bin/pmix-pquery || die
}
Manage flags for this package:
euse -i <flag> -p sys-cluster/pmix |
euse -E <flag> -p sys-cluster/pmix |
euse -D <flag> -p sys-cluster/pmix
dev-libs/libevent:= sys-apps/hwloc:= virtual/zlib:= munge? ( sys-auth/munge ) pmi? ( !sys-cluster/slurm )
dev-libs/libevent:= sys-apps/hwloc:= virtual/zlib:= munge? ( sys-auth/munge ) pmi? ( !sys-cluster/slurm )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | pmix-6.1.0.tar.bz2 | 10804652 bytes | https://github.com/openpmix/openpmix/releases/download/v6.1.0/pmix-6.1.0.tar.bz2 |