mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: a/arpack-ng/arpack-ng-3.8.0-intel-2022a.eb new file: c/Code_Aster/Code_Aster-14.6-Python-3.11.3-GCC-12.3.0.eb new file: d/DFTB+/DFTB+-23.1-intel-2022a.eb new file: d/dftd3-lib/dftd3-lib-0.10-GCC-11.3.0.eb new file: d/dftd3-lib/dftd3-lib-0.9.2-GCC-11.3.0.eb new file: d/dftd3-lib/dftd3-lib-0.9.2-GCC-12.2.0.eb new file: e/ELPA/ELPA-2022.05.001-intel-2022b.eb new file: e/ELSI/ELSI-2.9.1-intel-2022a.eb new file: h/HDF5/HDF5-1.10.3-foss-2022b.eb new file: h/HDF5/HDF5-1.10.3.patch new file: m/MEDCoupling/MEDCOUPLING-9.10.0-foss-2022b.eb new file: m/medfile/medfile-4.1.1-foss-2021b.eb new file: m/medfile/medfile-4.1.1-foss-2022b.eb new file: o/ORCA/ORCA-5.0.3-foss-2022a.eb new file: o/ORCA/ORCA-5.0.3-foss-2022b.eb new file: o/OVITO/OVITO-3.9.2-GCCcore-12.2.0-pro.eb new file: o/OpenMPI/OpenMPI-4.1.0-GCC-10.2.0.eb new file: p/Python/Python-3.11.3-GCCcore-12.3.0-test.eb new file: p/Python/Python-3.8.6-GCCcore-10.2.0-alpha.eb new file: p/Python/Python-3.8.6-GCCcore-9.3.0-alpha.eb new file: s/SALOME_CONFIGURATION/SALOME_CONFIGURATION-9.10.0.eb new file: t/tblite/tblite-0.3.0-intel-2022a.eb new file: t/tblite/tblite-0.3.0-intel-2022b.eb new file: x/XZ/XZ-5.4.2-GCCcore-12.3.0.eb
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
name = 'HDF5'
|
|
easyblock = 'CMakeMake'
|
|
version = '1.10.3'
|
|
|
|
homepage = 'https://portal.hdfgroup.org/display/support'
|
|
description = """HDF5 is a data model, library, and file format for storing and
|
|
managing data.
|
|
It supports an unlimited variety of datatypes, and is designed for flexible and
|
|
efficient I/O and for high volume and complex data."""
|
|
|
|
source_urls = ['https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src']
|
|
sources = ['hdf5-%(version)s.tar.gz']
|
|
checksums = [
|
|
'b600d7c914cfa80ae127cd1a1539981213fee9994ac22ebec9e3845e951d9b39',
|
|
'ecd32e24eada9e4bd2ded272addc678bda8812d381aab0b5189bbfaa92c4b6d4'
|
|
]
|
|
|
|
patches = [
|
|
'HDF5-1.10.3.patch' # Pthread patch
|
|
]
|
|
|
|
toolchain = {
|
|
'name': 'foss',
|
|
'version': '2022b'
|
|
}
|
|
|
|
toolchainopts = {'pic': True}
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.12'),
|
|
('Szip', '2.1.1'),
|
|
]
|
|
builddependencies = [('CMake', '3.24.3')]
|
|
|
|
configopts = ' -DBUILD_SHARED_LIBS:BOOL=ON'
|
|
configopts += ' -DHDF5_ALLOW_EXTERNAL_SUPPORT:BOOL=ON'
|
|
configopts += ' -DHDF5_BUILD_HL_LIB:BOOL=ON'
|
|
configopts += ' -DHDF5_ENABLE_THREADSAFE:BOOL=ON'
|
|
configopts += ' -DALLOW_UNSUPPORTED:BOOL=ON'
|
|
configopts += ' -DHDF5_BUILD_CPP_LIB:BOOL=ON'
|
|
|
|
# Disable Parallel
|
|
configopts += ' -DHDF5_ENABLE_PARALLEL:BOOL=OFF'
|
|
|
|
moduleclass = 'data'
|