-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathPMIx-6.0.0-GCCcore-14.3.0.eb
More file actions
49 lines (39 loc) · 1.53 KB
/
PMIx-6.0.0-GCCcore-14.3.0.eb
File metadata and controls
49 lines (39 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
easyblock = 'ConfigureMake'
name = 'PMIx'
version = '6.0.0'
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.3.0'}
toolchainopts = {'pic': True}
source_urls = ['https://github.com/openpmix/openpmix/releases/download/v%(version)s']
sources = ['%(namelower)s-%(version)s.tar.bz2']
checksums = ['bfe969966d0ce82e032739cac286239bd5ad74a831d7adae013284919f125318']
builddependencies = [
('binutils', '2.44'),
('Perl', '5.40.2'),
('pkgconf', '2.4.3'),
]
dependencies = [
('libevent', '2.1.12'),
('zlib', '1.3.1'),
('hwloc', '2.12.1'),
]
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'