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
51 changes: 51 additions & 0 deletions easybuild/easyconfigs/c/Cartopy/Cartopy-0.24.1-foss-2025a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
easyblock = 'PythonBundle'

name = 'Cartopy'
version = '0.24.1'

homepage = 'https://scitools.org.uk/cartopy/docs/latest/'
description = """Cartopy is a Python package designed to make drawing maps for data analysis and visualisation easy."""

toolchain = {'name': 'foss', 'version': '2025a'}

builddependencies = [
('Cython', '3.1.1'),
]
dependencies = [
('Python', '3.13.1'),
('Python-bundle-PyPI', '2025.04'),
('SciPy-bundle', '2025.06'),
('Fiona', '1.10.1'),
('GDAL', '3.11.1'),
('GEOS', '3.13.1'),
('matplotlib', '3.10.3'),
('pyproj', '3.7.1'),
('Shapely', '2.1.1'),
('lxml', '5.3.0'),
('Pillow', '11.3.0'),
('PROJ', '9.6.2'),
('PyYAML', '6.0.2'),
]

exts_list = [
('OWSLib', '0.34.1', {
'sources': ['%(namelower)s-%(version)s.tar.gz'],
'checksums': ['9c46d59dc03c753912fc3ef3136dbc843dad7572feb1af2cdf0fc5d1a0959028'],
}),
('pyepsg', '0.4.0', {
'checksums': ['2d08fad1e7a8b47a90a4e43da485ba95705923425aefc4e2a3efa540dbd470d7'],
}),
('pykdtree', '1.4.2', {
'checksums': ['bd2b967a16a5510efa873ee52d959d0d821389cc749bb51673ae68316eeb65f5'],
}),
('pyshp', '2.3.1', {
'modulename': 'shapefile',
'checksums': ['4caec82fd8dd096feba8217858068bacb2a3b5950f43c048c6dc32a3489d5af1'],
}),
(name, version, {
'sources': ['%(namelower)s-%(version)s.tar.gz'],
'checksums': ['01c910d5634c69a7efdec46e0a17d473d2328767f001d4dc0b5c4b48e585c8bd'],
}),
]

moduleclass = 'geo'
48 changes: 48 additions & 0 deletions easybuild/easyconfigs/f/Fiona/Fiona-1.10.1-foss-2025a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
easyblock = 'PythonBundle'

name = 'Fiona'
version = '1.10.1'

homepage = 'https://github.com/Toblerity/Fiona'
description = """Fiona is designed to be simple and dependable. It focuses on reading and writing data
in standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries,
mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data using
multi-layered GIS formats and zipped virtual file systems and integrates readily with other Python GIS
packages such as pyproj, Rtree, and Shapely."""

toolchain = {'name': 'foss', 'version': '2025a'}

builddependencies = [
('Cython', '3.1.1'),
]

dependencies = [
('Python', '3.13.1'),
('GDAL', '3.11.1'),
('Shapely', '2.1.1'), # optional for 'calc' extras
]

exts_list = [
('cligj', '0.7.2', {
'checksums': ['a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27'],
}),
('click-plugins', '1.1.1', {
'checksums': ['46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b'],
}),
('munch', '4.0.0', {
'checksums': ['542cb151461263216a4e37c3fd9afc425feeaf38aaa3025cd2a981fadb422235'],
}),
('%(namelower)s', version, {
'use_pip_extras': 'calc',
'checksums': ['b00ae357669460c6491caba29c2022ff0acfcbde86a95361ea8ff5cd14a86b68'],
}),
]

sanity_check_paths = {
'files': ['bin/fio'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}

sanity_check_commands = ['fio --help']

moduleclass = 'data'
34 changes: 34 additions & 0 deletions easybuild/easyconfigs/p/pyproj/pyproj-3.7.1-GCCcore-14.2.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
easyblock = 'PythonPackage'

name = 'pyproj'
version = '3.7.1'

homepage = 'https://pyproj4.github.io/pyproj'
description = "Python interface to PROJ4 library for cartographic transformations"

toolchain = {'name': 'GCCcore', 'version': '14.2.0'}

sources = [SOURCE_TAR_GZ]
checksums = ['60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47']

builddependencies = [
('binutils', '2.42'),
('Cython', '3.1.1'),
]

dependencies = [
('Python', '3.13.1'),
('Python-bundle-PyPI', '2025.04'),
('PROJ', '9.6.2'),
]

preinstallopts = "export PROJ_DIR=$EBROOTPROJ && "

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

sanity_check_commands = [f'{name} --help']

moduleclass = 'data'
27 changes: 27 additions & 0 deletions easybuild/easyconfigs/s/Shapely/Shapely-2.1.1-gfbf-2025a.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
# Updated: Denis Kristak
easyblock = 'PythonPackage'

name = 'Shapely'
version = '2.1.1'

homepage = 'https://github.com/Toblerity/Shapely'
description = """Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects.
It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries."""

toolchain = {'name': 'gfbf', 'version': '2025a'}

sources = [SOURCELOWER_TAR_GZ]
checksums = ['500621967f2ffe9642454808009044c21e5b35db89ce69f8a2042c2ffd0e2772']

builddependencies = [
('Cython', '3.1.1'),
]

dependencies = [
('Python', '3.13.1'),
('SciPy-bundle', '2025.06'),
('GEOS', '3.13.1'),
]

moduleclass = 'math'