sys-cluster/prrte: add 3.0.12

Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/45111
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Paul Zander
2025-11-25 17:24:41 +01:00
committed by Sam James
parent 8b99a3db10
commit 1ab5f6bcf0
2 changed files with 47 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST prrte-3.0.12.tar.gz 10324635 BLAKE2B 36c638bef25a8dd2011ebef802c41ec05557bfa4f56139567f70d7a2a7a0e40d35b618e55e477fec4b2af4209bd47583baeb996fd9b4e5a12529e55326474056 SHA512 3a6ee3907e232078bcd2e82585e76e58577f1f2896ae0025fed6c32781b522bd20dff95509ad38625ac395f038002d737c054858fa9445e042971bce7c41f266
DIST prrte-3.0.6.tar.gz 5976755 BLAKE2B 62cff51ebb7e72c32a237eb36db925f5bf5811cf5f409619128fa8ef490d3ba9e6ba4a1701edd21486878974088ff17645c98dab12904abd48c4a4b50453f807 SHA512 f7d3a1bedc0029fcb0e4e906a099d1de07b171805f0cc8d6e443826b8c321e3d5e7fa80867d8ab9ae1f628446a1a8f663231d8b67e243650582225805adc6e9d
DIST prrte-3.0.7.tar.gz 5592294 BLAKE2B e12133f2d6515620bce639faa1b439947a5fd50bfdbf5d0c855e9ce138b82da452776bb92a326dcfe1b2b43be8b31dade528f0230b40ad5b38586ca6c0ee5c42 SHA512 34b032ba461d095d549af0580fa7366290cdb54c22056dad71a24c85a6dcbd3614f69bc01892a8b2505f406ae728f6d7520a0f03a597ee0ab0208091d5319e18

View File

@@ -0,0 +1,46 @@
# Copyright 2024-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic libtool
DESCRIPTION="PMIx Reference RunTime Environment"
HOMEPAGE="https://openpmix.github.io/"
SRC_URI="https://github.com/openpmix/prrte/releases/download/v${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/$(ver_cut 1)"
KEYWORDS="~amd64 ~arm64 ~ppc64"
DEPEND="
dev-libs/libevent:=
sys-apps/hwloc:=
>=sys-cluster/pmix-4.2.4
"
RDEPEND="${DEPEND}"
# Tests are only in the repo, not in release tarballs
# They also seem to be just examples
RESTRICT="test"
src_prepare() {
default
elibtoolize
}
src_configure() {
# -Werror=lto-type-mismatch
#
# Same issue as its companion project sys-cluster/pmix, and logically
# solvable in tandem (or never).
# https://github.com/openpmix/openpmix/issues/3350
filter-lto
econf
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}