Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions easybuild/easyconfigs/a/Armadillo/Armadillo-15.0.1-intel-2025b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
easyblock = 'CMakeMake'

name = 'Armadillo'
version = '15.0.1'

homepage = 'https://arma.sourceforge.net/'
description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards
a good balance between speed and ease of use. Integer, floating point and complex numbers are supported,
as well as a subset of trigonometric and statistics functions."""

toolchain = {'name': 'intel', 'version': '2025b'}

source_urls = ['https://sourceforge.net/projects/arma/files']
sources = [SOURCELOWER_TAR_XZ]
checksums = ['f520a0d50bbafccd7b9e793321cd7ffed374695c2e38bbdfd428841745e04c37']

builddependencies = [
('CMake', '4.0.3'),
]
dependencies = [
('HDF5', '1.14.6'),
('arpack-ng', '3.9.1'),
]

configopts = '-DBLAS_LIBRARY:PATH="$LIBBLAS" -DLAPACK_LIBRARY:PATH="$LIBLAPACK"'

sanity_check_paths = {
'files': ['include/armadillo', f'lib/libarmadillo.{SHLIB_EXT}'],
'dirs': ['include/armadillo_bits'],
}

moduleclass = 'numlib'
39 changes: 39 additions & 0 deletions easybuild/easyconfigs/a/arpack-ng/arpack-ng-3.9.1-intel-2025b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Author: Robert Mijakovic <[email protected]>

easyblock = 'ConfigureMake'

name = 'arpack-ng'
version = '3.9.1'

homepage = 'https://github.com/opencollab/arpack-ng'
description = "ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."

toolchain = {'name': 'intel', 'version': '2025b'}
toolchainopts = {'pic': True, 'usempi': True}

source_urls = [GITHUB_SOURCE]
sources = ['%(version)s.tar.gz']
checksums = ['f6641deb07fa69165b7815de9008af3ea47eb39b2bb97521fbf74c97aba6e844']

builddependencies = [
('Autotools', '20250527'),
('pkgconf', '2.4.3'),
]
dependencies = [
('Eigen', '3.4.0'),
]

preconfigopts = "sh bootstrap && "
configopts = '--enable-mpi --with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"'

github_account = 'opencollab'

sanity_check_paths = {
'files': [
'lib64/libarpack.la', f'lib64/libarpack.{SHLIB_EXT}',
'lib64/libparpack.la', f'lib64/libparpack.{SHLIB_EXT}'
],
'dirs': [],
}

moduleclass = 'numlib'
79 changes: 79 additions & 0 deletions easybuild/easyconfigs/g/GDAL/GDAL-3.11.3-intel-2025b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
easyblock = 'CMakeMake'

name = 'GDAL'
version = '3.11.3'

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': 'intel', 'version': '2025b'}
toolchainopts = {'usempi': True, 'pic': True, 'precise': True}

source_urls = ['https://download.osgeo.org/%(namelower)s/%(version)s/']
sources = [SOURCELOWER_TAR_XZ]
patches = ['%(name)s-3.6.2_fix-python-CC-CXX.patch']
checksums = [
{'gdal-3.11.3.tar.xz': 'ba0807729fa681eed55bb6d5588bb9e4bde2b691c46e8d6d375ff5eaf789b16a'},
{'GDAL-3.6.2_fix-python-CC-CXX.patch': '859b874b0c8ff7626a76d51f008bf05b7f89a35b325bdd1d126d2364154acc63'},
]

builddependencies = [
('CMake', '4.0.3'),
('pkgconf', '2.4.3'),
('Bison', '3.8.2'),
]
dependencies = [
('Python', '3.13.5'),
('SciPy-bundle', '2025.07'),
('netCDF', '4.9.3'),
('expat', '2.7.1'),
('GEOS', '3.13.1'),
('SQLite', '3.50.1'),
('libarchive', '3.8.1'),
('libxml2', '2.14.3'),
('libpng', '1.6.50'),
('libjpeg-turbo', '3.1.1'),
('LibTIFF', '4.7.0'),
('zlib', '1.3.1'),
('cURL', '8.14.1'),
('PCRE', '8.45'),
('PROJ', '9.6.2'),
('libgeotiff', '1.7.4'),
('HDF5', '1.14.6'),
('HDF', '4.3.1'),
('Armadillo', '15.0.1'),
('CFITSIO', '4.6.2'),
('zstd', '1.5.7'),
('giflib', '5.2.2'),
('json-c', '0.18'),
('Xerces-C++', '3.3.0'),
('PCRE2', '10.45'),
('OpenEXR', '3.3.4'),
('Brunsli', '0.1'),
('Qhull', '2020.2'),
('LERC', '4.0.0'),
('OpenJPEG', '2.5.3'),
('SWIG', '4.3.1'),
]

# iterative build for both static and shared libraries
local_configopts_common = "-DGDAL_USE_INTERNAL_LIBS=OFF -DGDAL_USE_MYSQL=OFF -DGDAL_USE_POPPLER=OFF "
local_configopts_common += "-DGEOTIFF_INCLUDE_DIR=$EBROOTLIBGEOTIFF/include -DPython_ROOT=$EBROOTPYTHON "

configopts = [
local_configopts_common + "-DBUILD_SHARED_LIBS=OFF",
local_configopts_common
]


sanity_check_paths = {
'files': ['lib/libgdal.a', f'lib/libgdal.{SHLIB_EXT}'],
'dirs': ['bin', 'include', 'lib/python%(pyshortver)s/site-packages'],
}

sanity_check_commands = ["python -s -c 'import osgeo.%(namelower)s'"]

moduleclass = 'data'