mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-08 00:10:15 +03:00
Update done using: ``` git grep -l sys-libs/zlib sys-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git grep -l virtual/zlib-ng sys-* | xargs sed -i -e s@virtual/zlib-ng@sys-libs/zlib-ng@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Plus reverts in sys-libs/minizip-ng and sys-libs/zlib-ng. Signed-off-by: Michał Górny <mgorny@gentoo.org>
37 lines
735 B
Bash
37 lines
735 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="The Process Management Interface (PMI) Exascale"
|
|
HOMEPAGE="https://openpmix.github.io/"
|
|
SRC_URI="https://github.com/openpmix/openpmix/releases/download/v${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE="debug +munge pmi"
|
|
|
|
RDEPEND="
|
|
dev-libs/libevent:=
|
|
sys-apps/hwloc:=
|
|
sys-cluster/ucx
|
|
virtual/zlib:=
|
|
munge? ( sys-auth/munge )
|
|
pmi? ( !sys-cluster/slurm )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable debug) \
|
|
$(use_with munge)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# bug #884765
|
|
mv "${ED}"/usr/bin/pquery "${ED}"/usr/bin/pmix-pquery || die
|
|
}
|