Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add easyconfig Fiona-1.10.1-foss-2023b.eb and Shapely-2.0.6-gfbf-2023b.eb #22070

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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/f/Fiona/Fiona-1.10.1-foss-2023b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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': '2023b'}

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

dependencies = [
('Python', '3.11.5'),
('GDAL', '3.9.0'),
('Shapely', '2.0.6'), # optional for 'calc' extras
]

sanity_pip_check = True
use_pip = True

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'
31 changes: 31 additions & 0 deletions easybuild/easyconfigs/s/Shapely/Shapely-2.0.6-gfbf-2023b.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
# Updated: Denis Kristak
easyblock = 'PythonPackage'

name = 'Shapely'
version = '2.0.6'

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': '2023b'}

sources = [SOURCELOWER_TAR_GZ]
checksums = ['997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6']

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

dependencies = [
('Python', '3.11.5'),
('SciPy-bundle', '2023.11'),
('GEOS', '3.12.1'),
]

download_dep_fail = True
sanity_pip_check = True
use_pip = True

moduleclass = 'math'
Loading