easyconfigs-it4i/g/GDAL/GDAL-3.3.1-foss-2021a.eb
Lukas Krupcik 1f2c7b3d95 new file: b/BerkeleyGW/BerkeleyGW-3.0.1-intel-2020b-Python-3.8.6.eb
new file:   g/GDAL/GDAL-3.3.1-foss-2021a.eb
	new file:   g/GDRCopy/GDRCopy-2.1-GCCcore-9.3.0-CUDA-11.2.2.eb
	new file:   g/GDRCopy/GDRCopy-2.2-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   j/JUBE/JUBE-2.4.1.eb
	new file:   o/ORCA/ORCA-5.0.0-OpenMPI-4.1.1.eb
	new file:   o/ORCA/ORCA-5.0.1-OpenMPI-4.1.1.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-GCCcore-9.3.0-CUDA-11.2.2-devel.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-GCCcore-9.3.0-CUDA-11.2.2.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-NVHPC-21.2-CUDA-11.2.2-UCX-11.1.0-rc2.eb
	new file:   o/OpenMPI/OpenMPI-4.0.5-NVHPC-21.2-CUDA-11.2.2-test.eb
	new file:   o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   s/Schrodinger/Schrodinger_2021-3_Linux-x86_64.eb
	new file:   s/spirit/spirit-2.1.1-CUDA-10.2.89.eb
	new file:   t/Trim_Galore/Trim_Galore-0.6.6-GCC-10.2.0-Python-2.7.18.eb
	new file:   u/UCX/:
	new file:   u/UCX/UCX-1.11.0-rc1-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   u/UCX/UCX-1.9.0-GCCcore-9.3.0-CUDA-11.2.2-devel.eb
	new file:   u/UCX/UCX-1.9.0-GCCcore-9.3.0-CUDA-11.2.2.eb
	modified:   u/UCX/UCX-1.9.0-NVHPC-21.2-CUDA-11.2.2.eb
	new file:   u/UCX/UCX-1.9.0-m4.patch
	new file:   v/VASP/VASP-6.2.1-intel-2020b-mkl=sequential.eb
	new file:   y/Yambo/Yambo-5.0.3-intel-2020a.eb
2021-08-09 08:31:32 +02:00

61 lines
2.1 KiB
Plaintext

easyblock = 'ConfigureMake'
name = 'GDAL'
version = '3.3.1'
homepage = 'https://www.gdal.org'
description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
data translation and processing."""
toolchain = {'name': 'foss', 'version': '2021a'}
toolchainopts = {'usempi': True}
source_urls = ['https://download.osgeo.org/gdal/%(version)s/']
sources = [SOURCELOWER_TAR_XZ]
builddependencies = [
('pkg-config', '0.29.2'),
]
dependencies = [
('Python', '3.9.5'),
('netCDF', '4.8.0'),
('expat', '2.2.9'),
('GEOS', '3.9.1'),
('SQLite', '3.35.4'),
('libxml2', '2.9.10'),
('libpng', '1.6.37'),
('libjpeg-turbo', '2.0.6'),
('JasPer', '2.0.28'),
('LibTIFF', '4.2.0'),
('zlib', '1.2.11'),
('cURL', '7.76.0'),
('PCRE2', '10.36'),
('PROJ', '8.0.1'),
('libgeotiff', '1.6.0'),
('SciPy-bundle', '2021.05'),
('HDF5', '1.10.7'),
('HDF', '4.2.15'),
]
preconfigopts = "sed -e 's/-llapack/\$LIBLAPACK/g' -i.eb configure && "
configopts = '--with-expat=$EBROOTEXPAT --with-libz=$EBROOTLIBZ'
configopts += ' --with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF'
configopts += ' --with-xml2=yes --with-geos=$EBROOTGEOS/bin/geos-config --with-jpeg=$EBROOTLIBJPEGMINTURBO'
configopts += ' --with-png=$EBROOTLIBPNG --with-sqlite3=$EBROOTSQLITE --with-jasper=$EBROOTJASPER'
configopts += ' --with-libtiff=$EBROOTLIBTIFF --with-pcre=$EBROOTPCRE2 --with-python=$EBROOTPYTHON/bin/python'
configopts += ' --with-geotiff=$EBROOTLIBGEOTIFF --with-hdf4=$EBROOTHDF'
modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
sanity_check_paths = {
'files': ['lib/libgdal.a', 'lib/libgdal.%s' % SHLIB_EXT],
'dirs': ['bin', 'include', 'lib/python%(pyshortver)s/site-packages']
}
sanity_check_commands = ["python -c 'import osgeo.gdal'"]
moduleclass = 'data'