-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/easybuilders/easybuild-e…
…asyconfigs into wxWidgets-3.2.6
- Loading branch information
Showing
51 changed files
with
1,740 additions
and
63 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
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' |
40 changes: 40 additions & 0 deletions
40
easybuild/easyconfigs/b/BCFtools/BCFtools-1.21-GCC-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,40 @@ | ||
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
# | ||
# Author: Jonas Demeulemeester | ||
# The Francis Crick Insitute, London, UK | ||
# Updated to 1.21 jpecar / EMBL | ||
|
||
easyblock = 'ConfigureMake' | ||
|
||
name = 'BCFtools' | ||
version = '1.21' | ||
|
||
homepage = 'https://www.htslib.org/' | ||
description = """Samtools is a suite of programs for interacting with high-throughput sequencing data. | ||
BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence | ||
variants""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '13.3.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s'] | ||
sources = [SOURCELOWER_TAR_BZ2] | ||
checksums = ['528a4cc1d3555368db75a700b22a3c95da893fd1827f6d304716dfd45ea4e282'] | ||
|
||
dependencies = [ | ||
('zlib', '1.3.1'), | ||
('HTSlib', '1.21'), | ||
('bzip2', '1.0.8'), | ||
('XZ', '5.4.5'), | ||
('GSL', '2.8'), | ||
] | ||
|
||
configopts = "--with-htslib=$EBROOTHTSLIB --enable-libgsl" | ||
|
||
|
||
sanity_check_paths = { | ||
'files': ['bin/%(namelower)s', 'bin/plot-vcfstats', 'bin/vcfutils.pl'], | ||
'dirs': ['libexec/%(namelower)s'], | ||
} | ||
|
||
moduleclass = 'bio' |
50 changes: 50 additions & 0 deletions
50
easybuild/easyconfigs/d/Dask-ML/Dask-ML-2024.4.4-foss-2023a.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,50 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'Dask-ML' | ||
version = '2024.4.4' | ||
|
||
homepage = 'http://ml.dask.org/' | ||
description = """ | ||
Dask-ML provides scalable machine learning in Python using Dask alongside popular machine | ||
learning libraries like Scikit-Learn, XGBoost, and others. | ||
""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023a'} | ||
|
||
builddependencies = [('hatchling', '1.18.0')] | ||
|
||
dependencies = [ | ||
('Python', '3.11.3'), | ||
('scikit-learn', '1.3.1'), | ||
('dask', '2023.9.2'), | ||
('numba', '0.58.1'), | ||
('SciPy-bundle', '2023.07'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('sparse', '0.15.4', { | ||
# replace use of 'version_file' (which requires setuptools-scm >= 8.0) with 'write_to' | ||
'preinstallopts': "sed -i 's/^version_file/write_to/' pyproject.toml && ", | ||
'checksums': ['d4b1c57d24ff0f64f2fd5b5a95b49b7fb84ed207a26d7d58ce2764dcc5c72b84'], | ||
}), | ||
('dask-glm', '0.3.2', { | ||
'checksums': ['c947a566866698a01d79978ae73233cb5e838ad5ead6085143582c5e930b9a4a'], | ||
}), | ||
('distributed', '2023.9.2', { | ||
'checksums': ['b76b43be6a297c6cc6dc4eac7f5a05a8c6834aaf025ed37395d1d830448d540e'], | ||
}), | ||
('multipledispatch', '1.0.0', { | ||
'checksums': ['5c839915465c68206c3e9c473357908216c28383b425361e5d144594bf85a7e0'], | ||
}), | ||
('packaging', '24.1', { | ||
'checksums': ['026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002'], | ||
}), | ||
('dask_ml', version, { | ||
'checksums': ['7956910a49e1e31944280fdb311adf245da11ef410d67deb7a05c67c7d0c4498'], | ||
}), | ||
] | ||
|
||
moduleclass = 'ai' |
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,25 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'GSL' | ||
version = '2.8' | ||
|
||
homepage = 'https://www.gnu.org/software/gsl/' | ||
description = """The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. | ||
The library provides a wide range of mathematical routines such as random number generators, special functions | ||
and least-squares fitting.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '13.3.0'} | ||
toolchainopts = {'unroll': True, 'pic': True} | ||
|
||
source_urls = [GNU_SOURCE] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['6a99eeed15632c6354895b1dd542ed5a855c0f15d9ad1326c6fe2b2c9e423190'] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/%s' % x for x in ['gsl-config', 'gsl-histogram', 'gsl-randist']] + | ||
['include/gsl/gsl_types.h'] + | ||
['lib/lib%s.%s' % (x, SHLIB_EXT) for x in ['gsl', 'gslcblas']], | ||
'dirs': [], | ||
} | ||
|
||
moduleclass = 'numlib' |
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
Oops, something went wrong.