mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: l/libevent/libevent-2.1.12-GCCcore-14.2.0.eb new file: l/libfabric/libfabric-1.16.1-GCCcore-14.2.0.eb new file: l/libffi/libffi-3.4.5-GCCcore-14.2.0.eb new file: l/libpciaccess/libpciaccess-0.18.1-GCCcore-14.2.0.eb new file: l/libreadline/libreadline-8.2-GCCcore-13.3.0.eb new file: l/libreadline/libreadline-8.2-GCCcore-14.2.0.eb new file: l/libtool/libtool-2.4.7-GCCcore-14.2.0.eb new file: l/libxml2/libxml2-2.12.7-GCCcore-14.2.0.eb new file: m/Meson/Meson-1.4.0-GCCcore-14.2.0.eb new file: n/Ninja/Ninja-1.12.1-GCCcore-14.2.0.eb modified: o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb new file: p/PMIx/PMIx-5.0.2-GCCcore-14.2.0.eb new file: p/Python/Python-3.12.3-GCCcore-14.2.0.eb new file: s/SQLite/SQLite-3.45.3-GCCcore-14.2.0.eb new file: t/Tcl/Tcl-8.6.14-GCCcore-14.2.0.eb new file: u/UCC/UCC-1.3.0-GCCcore-14.2.0.eb new file: u/UCX/UCX-1.16.0-GCCcore-14.2.0.eb new file: u/UnZip/UnZip-6.0-GCCcore-14.2.0.eb new file: x/xorg-macros/xorg-macros-1.20.1-GCCcore-14.2.0.eb
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'PMIx'
|
|
version = '5.0.2'
|
|
|
|
homepage = 'https://pmix.org/'
|
|
description = """Process Management for Exascale Environments
|
|
PMI Exascale (PMIx) represents an attempt to
|
|
provide an extended version of the PMI standard specifically designed
|
|
to support clusters up to and including exascale sizes. The overall
|
|
objective of the project is not to branch the existing pseudo-standard
|
|
definitions - in fact, PMIx fully supports both of the existing PMI-1
|
|
and PMI-2 APIs - but rather to (a) augment and extend those APIs to
|
|
eliminate some current restrictions that impact scalability, and (b)
|
|
provide a reference implementation of the PMI-server that demonstrates
|
|
the desired level of scalability.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['https://github.com/openpmix/openpmix/releases/download/v%(version)s']
|
|
sources = ['%(namelower)s-%(version)s.tar.bz2']
|
|
checksums = ['28227ff2ba925da2c3fece44502f23a91446017de0f5a58f5cea9370c514b83c']
|
|
|
|
builddependencies = [('binutils', '2.42')]
|
|
|
|
dependencies = [
|
|
('zlib', '1.3.1'),
|
|
('libevent', '2.1.12'),
|
|
('hwloc', '2.10.0'),
|
|
]
|
|
|
|
configopts = ' --with-libevent=$EBROOTLIBEVENT --with-zlib=$EBROOTZLIB'
|
|
configopts += ' --with-hwloc=$EBROOTHWLOC'
|
|
configopts += ' --enable-pmix-binaries'
|
|
|
|
buildopts = 'V=1'
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/pevent', 'bin/plookup', 'bin/pmix_info', 'bin/pps'],
|
|
'dirs': ['etc', 'include', 'lib', 'share']
|
|
}
|
|
|
|
moduleclass = 'lib'
|