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

new file: c/CGAL/CGAL-5.2.4-gompi-2022b.eb new file: c/CGAL/CGAL-5.2.4-iimpi-2022b.eb new file: g/gcccuda/gcccuda-2022b.eb new file: g/glibc/glibc-2.37-GCCcore-12.2.0.eb new file: h/HDF5/HDF5-1.14.0-iimpi-2022b.eb new file: k/KaHIP/KaHIP-3.14-iimpi-2022b.eb new file: n/netCDF/netCDF-4.9.0-iimpi-2022b.eb new file: o/OpenFOAM/OpenFOAM-v2206-foss-2022a.eb new file: o/OpenFOAM/OpenFOAM-v2212-cleanup.patch new file: o/OpenFOAM/OpenFOAM-v2212-intel-2022b.eb new file: o/OpenMPI/OpenMPI-4.1.4-GCC-11.3.0-CUDA-11.7.0.eb new file: p/ParaView/ParaView-5.11.0-intel-2022b-mpi.eb new file: p/pkg-config/pkg-config-0.29.2-GCCcore-12.2.0.eb new file: s/SCOTCH/SCOTCH-7.0.3-gompi-2022b.eb new file: s/SCOTCH/SCOTCH-7.0.3-iimpi-2022b.eb new file: t/texinfo/texinfo-7.0.2-GCCcore-12.2.0.eb
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
name = 'netCDF'
|
|
version = '4.9.0'
|
|
|
|
homepage = 'https://www.unidata.ucar.edu/software/netcdf/'
|
|
description = """NetCDF (network Common Data Form) is a set of software libraries
|
|
and machine-independent data formats that support the creation, access, and sharing of array-oriented
|
|
scientific data."""
|
|
|
|
toolchain = {'name': 'iimpi', 'version': '2022b'}
|
|
toolchainopts = {'pic': True, 'usempi': True}
|
|
|
|
source_urls = ['https://github.com/Unidata/netcdf-c/archive/']
|
|
sources = ['v%(version)s.tar.gz']
|
|
patches = [
|
|
'netCDF-%(version)s_fix-lib-name.patch',
|
|
'netCDF-%(version)s_fix-linking-errors.patch',
|
|
'netCDF-%(version)s_skip-nasa-test.patch',
|
|
]
|
|
checksums = [
|
|
'9f4cb864f3ab54adb75409984c6202323d2fc66c003e5308f3cdf224ed41c0a6', # v4.9.0.tar.gz
|
|
'ed45ae6c49cf8dcddaadef4c5cf403049bf3f761187413d7b03754d319345d6a', # netCDF-4.9.0_fix-lib-name.patch
|
|
'2b9579c149579d137eb16ae5d790787774033dcec49c0d4993d9859f224e7b15', # netCDF-4.9.0_fix-linking-errors.patch
|
|
'19d99e03c048b037dc01f03f5b8ddc910ebaceb076d0f050540d348f26dfcd2a', # netCDF-4.9.0_skip-nasa-test.patch
|
|
]
|
|
|
|
builddependencies = [
|
|
('Autotools', '20220317'),
|
|
('CMake', '3.24.3'),
|
|
('Doxygen', '1.9.5'),
|
|
]
|
|
|
|
dependencies = [
|
|
('HDF5', '1.14.0'),
|
|
('cURL', '7.86.0'),
|
|
('Szip', '2.1.1'),
|
|
('zstd', '1.5.2'),
|
|
('bzip2', '1.0.8'),
|
|
('libxml2', '2.10.3'),
|
|
]
|
|
|
|
# make sure both static and shared libs are built
|
|
# and disable "remote" tests that access a unreliable external test server over internet
|
|
configopts = [
|
|
"-DENABLE_DAP_REMOTE_TESTS=OFF -DBUILD_SHARED_LIBS=OFF",
|
|
"-DENABLE_DAP_REMOTE_TESTS=OFF -DBUILD_SHARED_LIBS=ON",
|
|
]
|
|
|
|
# some tests try to start 16 MPI ranks, so we need to allow oversubscription to avoid failing tests
|
|
pretestopts = "OMPI_MCA_rmaps_base_oversubscribe=1 "
|
|
|
|
runtest = 'test'
|
|
|
|
moduleclass = 'data'
|