-
Notifications
You must be signed in to change notification settings - Fork 704
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'easybuild-easyconfigs-basemap' of github.com:julianmori…
…llo/easybuild-easyconfigs-ASE into easybuild-easyconfigs-basemap
- Loading branch information
Showing
246 changed files
with
10,629 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,43 @@ | ||
name: Tagbot | ||
on: [pull_request] | ||
on: [pull_request_target] | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.event.pull_request.number }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tagbot: | ||
# Note: can't rely on github.event.pull_request.merge_commit_sha because pull_request_target | ||
# does not wait for github mergability check, and the value is outdated. | ||
# Instead we merge manually in a temporary subdir "pr" | ||
runs-on: ubuntu-24.04 | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Checkout base branch for workflow scripts | ||
uses: actions/checkout@v4 | ||
|
||
- name: Checkout PR for computing diff into "pr" subdirectory | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: "${{ github.event.pull_request.head.sha }}" | ||
path: 'pr' | ||
fetch-depth: 0 | ||
|
||
- name: Attempt test merge | ||
id: merge | ||
run: | | ||
git config user.name "github-workflow" | ||
git config user.email "[email protected]" | ||
git merge --no-edit --no-ff origin/${{ github.event.pull_request.base.ref }} | ||
continue-on-error: true | ||
working-directory: pr | ||
|
||
- run: | | ||
# Make sure the script is unmodified | ||
echo "8be2d295e8436ce557acc8a4d3b82a639913ae65de0d1a76871f21359b4e8d9f .github/workflows/tagbot.py"|sha256sum --check --status | ||
- name: Abort if merge failed | ||
if: steps.merge.outcome == 'failure' | ||
run: | | ||
echo "Merge conflict detected, failing job." | ||
exit 1 | ||
- name: set up Python | ||
uses: actions/setup-python@v5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'ASE' | ||
version = '3.23.0' | ||
|
||
homepage = 'https://wiki.fysik.dtu.dk/ase' | ||
description = """ASE is a python package providing an open source Atomic Simulation Environment | ||
in the Python scripting language. | ||
From version 3.20.1 we also include the ase-ext package, it contains optional reimplementations | ||
in C of functions in ASE. ASE uses it automatically when installed.""" | ||
|
||
toolchain = {'name': 'gfbf', 'version': '2023b'} | ||
|
||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Python-bundle-PyPI', '2023.10'), | ||
('SciPy-bundle', '2023.11'), | ||
('Flask', '3.0.0'), | ||
('matplotlib', '3.8.2'), | ||
('Tkinter', '%(pyver)s'), # Needed by GUI of ASE | ||
('spglib-python', '2.5.0'), # optional | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('pytest-mock', '3.14.0', { | ||
'checksums': ['2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0'], | ||
}), | ||
('ase', version, { | ||
'checksums': ['91a2aa31d89bd90b0efdfe4a7e84264f32828b2abfc9f38e65e041ad76fec8ae'], | ||
}), | ||
('ase-ext', '20.9.0', { | ||
'checksums': ['a348b0e42cf9fdd11f04b3df002b0bf150002c8df2698ff08d3c8fc7a1223aed'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/ase'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages'], | ||
} | ||
|
||
# make sure Tkinter is available, otherwise 'ase gui' will not work | ||
sanity_check_commands = ["python -c 'import tkinter' "] | ||
|
||
moduleclass = 'chem' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'ASE' | ||
version = '3.23.0' | ||
|
||
homepage = 'https://wiki.fysik.dtu.dk/ase' | ||
description = """ASE is a python package providing an open source Atomic Simulation Environment | ||
in the Python scripting language. | ||
From version 3.20.1 we also include the ase-ext package, it contains optional reimplementations | ||
in C of functions in ASE. ASE uses it automatically when installed.""" | ||
|
||
toolchain = {'name': 'gfbf', 'version': '2024a'} | ||
|
||
dependencies = [ | ||
('Python', '3.12.3'), | ||
('Python-bundle-PyPI', '2024.06'), | ||
('SciPy-bundle', '2024.05'), | ||
('Flask', '3.0.3'), | ||
('matplotlib', '3.9.2'), | ||
('Tkinter', '%(pyver)s'), # Needed by GUI of ASE | ||
('spglib-python', '2.5.0'), # optional | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('pytest-mock', '3.14.0', { | ||
'checksums': ['2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0'], | ||
}), | ||
('ase', version, { | ||
'checksums': ['91a2aa31d89bd90b0efdfe4a7e84264f32828b2abfc9f38e65e041ad76fec8ae'], | ||
}), | ||
('ase-ext', '20.9.0', { | ||
'checksums': ['a348b0e42cf9fdd11f04b3df002b0bf150002c8df2698ff08d3c8fc7a1223aed'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/ase'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages'], | ||
} | ||
|
||
# make sure Tkinter is available, otherwise 'ase gui' will not work | ||
sanity_check_commands = ["python -c 'import tkinter' "] | ||
|
||
moduleclass = 'chem' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name = 'Advisor' | ||
version = '2025.0.0' | ||
|
||
homepage = 'https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/advisor.html' | ||
description = """Vectorization Optimization and Thread Prototyping | ||
- Vectorize & thread code or performance “dies” | ||
- Easy workflow + data + tips = faster code faster | ||
- Prioritize, Prototype & Predict performance gain | ||
""" | ||
|
||
toolchain = SYSTEM | ||
|
||
source_urls = [ | ||
'https://registrationcenter-download.intel.com/akdlm/IRC_NAS/fe95ae4a-3692-4e31-919d-3e7bdf5832f1/'] | ||
sources = ['intel-advisor-%(version)s.798_offline.sh'] | ||
checksums = ['bf85d4b0bd199a2babdff6b4bd3885ce569a3ad0e992b99b2e14dbb30af88cd4'] | ||
|
||
dontcreateinstalldir = True | ||
|
||
sanity_check_paths = { | ||
'files': ['%(namelower)s/%(version_major_minor)s/bin64/advisor'], | ||
'dirs': ['%(namelower)s/%(version_major_minor)s/bin64', | ||
'%(namelower)s/%(version_major_minor)s/lib64', | ||
'%(namelower)s/%(version_major_minor)s/include/intel64'] | ||
} | ||
|
||
moduleclass = 'perf' |
28 changes: 28 additions & 0 deletions
28
easybuild/easyconfigs/a/absl-py/absl-py-2.1.0-GCCcore-13.3.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'absl-py' | ||
version = '2.1.0' | ||
|
||
homepage = 'https://github.com/abseil/abseil-py' | ||
description = """absl-py is a collection of Python library code for building Python | ||
applications. The code is collected from Google's own Python code base, and has | ||
been extensively tested and used in production.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.3.0'} | ||
|
||
builddependencies = [('binutils', '2.42')] | ||
|
||
dependencies = [('Python', '3.12.3')] | ||
|
||
use_pip = True | ||
|
||
exts_list = [ | ||
('absl-py', version, { | ||
'modulename': 'absl', | ||
'checksums': ['7820790efbb316739cde8b4e19357243fc3608a152024288513dd968d7d959ff'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
moduleclass = 'tools' |
45 changes: 45 additions & 0 deletions
45
easybuild/easyconfigs/a/anndata/anndata-0.11.1-foss-2023b.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'anndata' | ||
version = '0.11.1' | ||
|
||
homepage = 'https://github.com/scverse/anndata' | ||
description = """anndata is a Python package for handling annotated data matrices in memory and on disk, | ||
positioned between pandas and xarray""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023b'} | ||
|
||
builddependencies = [ | ||
('hatchling', '1.18.0'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Python-bundle-PyPI', '2023.10'), | ||
('SciPy-bundle', '2023.11'), | ||
('h5py', '3.11.0'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('array_api_compat', '1.9.1', { | ||
'checksums': ['17bab828c93c79a5bb8b867145b71fcb889686607c5672b060aef437e0359ea8'], | ||
}), | ||
('natsort', '8.4.0', { | ||
'checksums': ['45312c4a0e5507593da193dedd04abb1469253b601ecaf63445ad80f0a1ea581'], | ||
}), | ||
(name, version, { | ||
'checksums': ['36bff9a85276fc5f1b9fd01f15aff9aa49408129985f42e0fca4e2c5b7fa909f'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/natsort'], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages'], | ||
} | ||
|
||
sanity_check_commands = ["natsort --help"] | ||
|
||
moduleclass = 'bio' |
Oops, something went wrong.