forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ecs for deps and remove them from exts_list
- Loading branch information
1 parent
11bc9c0
commit 10cf300
Showing
8 changed files
with
235 additions
and
48 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
easybuild/easyconfigs/b/black/black-24.10.0-GCCcore-13.2.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,42 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'black' | ||
version = '24.10.0' | ||
|
||
homepage = 'https://black.readthedocs.io' | ||
description = """Black is the uncompromising Python code formatter. | ||
By using it, you agree to cede control over minutiae of hand-formatting. | ||
In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. | ||
You will save time and mental energy for more important matters. | ||
Blackened code looks the same regardless of the project you're reading. | ||
Formatting becomes transparent after a while and you can focus on the content instead. | ||
Black makes code review faster by producing the smallest diffs possible. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
('hatchling', '1.18.0'), | ||
] | ||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Python-bundle-PyPI', '2023.10'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('mypy-extensions', '1.0.0', { | ||
'source_tmpl': 'mypy_extensions-%(version)s.tar.gz', | ||
'checksums': ['75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782'], | ||
}), | ||
(name, version, { | ||
'checksums': ['846ea64c97afe3bc677b761787993be4991810ecc7a4a937816dd6bddedc4875'], | ||
}), | ||
] | ||
|
||
moduleclass = 'devel' |
39 changes: 39 additions & 0 deletions
39
easybuild/easyconfigs/c/cookiecutter/cookiecutter-2.6.0-GCCcore-13.2.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,39 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'cookiecutter' | ||
version = '2.6.0' | ||
|
||
homepage = 'https://github.com/cookiecutter/cookiecutter' | ||
description = """A command-line utility that creates projects from project templates. | ||
E.g. creating a Python package project from a Python package project template.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Python-bundle-PyPI', '2023.10'), | ||
('PyYAML', '6.0.1'), | ||
('python-slugify', '8.0.4'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('types-python-dateutil', '2.9.0.20241003', { | ||
'modulename': False, | ||
'checksums': ['58cb85449b2a56d6684e41aeefb4c4280631246a0da1a719bdbe6f3fb0317446'], | ||
}), | ||
('arrow', '1.3.0', { | ||
'checksums': ['d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85'], | ||
}), | ||
('binaryornot', '0.4.4', { | ||
'checksums': ['359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061'], | ||
}), | ||
(name, version, { | ||
'checksums': ['db21f8169ea4f4fdc2408d48ca44859349de2647fbe494a9d6c3edfc0542c21c'], | ||
}), | ||
] | ||
|
||
moduleclass = 'devel' |
29 changes: 29 additions & 0 deletions
29
easybuild/easyconfigs/n/numpydoc/numpydoc-1.8.0-GCCcore-13.2.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,29 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'numpydoc' | ||
version = '1.8.0' | ||
|
||
homepage = 'https://numpydoc.readthedocs.io/' | ||
description = """Sphinx extension to support docstrings in Numpy format | ||
This package provides the numpydoc Sphinx extension for handling docstrings formatted | ||
according to the NumPy documentation format. | ||
The extension also adds the code description directives np:function, np-c:function, etc.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['022390ab7464a44f8737f79f8b31ce1d3cfa4b4af79ccaa1aac5e8368db587fb'] | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
|
||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Python-bundle-PyPI', '2023.10'), | ||
] | ||
|
||
use_pip = True | ||
download_dep_fail = True | ||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |
43 changes: 43 additions & 0 deletions
43
easybuild/easyconfigs/p/python-lsp-server/python-lsp-server-1.12.0-GCCcore-13.2.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,43 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'python-lsp-server' | ||
version = '1.12.0' | ||
|
||
homepage = 'https://github.com/spyder-ide/spyder' | ||
description = """Python Language Server for the Language Server Protocol | ||
A Python 3.8+ implementation of the Language Server Protocol. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Pylint', '3.2.5'), | ||
('black', '24.10.0'), | ||
('jedi', '0.19.1'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('docstring-to-markdown', '0.15', { | ||
'checksums': ['e146114d9c50c181b1d25505054a8d0f7a476837f0da2c19f07e06eaed52b73d'], | ||
}), | ||
('python-lsp-jsonrpc', '1.1.2', { | ||
'modulename': 'pylsp_jsonrpc', | ||
'checksums': ['4688e453eef55cd952bff762c705cedefa12055c0aec17a06f595bcc002cc912'], | ||
}), | ||
('python-lsp-black', '2.0.0', { | ||
'modulename': 'pylsp_black', | ||
'checksums': ['8286d2d310c566844b3c116b824ada6fccfa6ba228b1a09a0526b74c04e0805f'], | ||
}), | ||
(name, version, { | ||
'modulename': 'pylsp', | ||
'source_tmpl': 'python_lsp_server-%(version)s.tar.gz', | ||
'checksums': ['b6a336f128da03bd9bac1e61c3acca6e84242b8b31055a1ccf49d83df9dc053b'], | ||
}), | ||
] | ||
|
||
moduleclass = 'devel' |
27 changes: 27 additions & 0 deletions
27
easybuild/easyconfigs/p/python-slugify/python-slugify-8.0.4-GCCcore-13.2.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,27 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'python-slugify' | ||
version = '8.0.4' | ||
|
||
homepage = 'https://github.com/un33k/python-slugify' | ||
description = """Best attempt to create slugs from unicode strings while keeping it DRY.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('text-unidecode', '1.3'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'modulename': 'slugify', | ||
'checksums': ['59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856'], | ||
}), | ||
] | ||
|
||
moduleclass = 'devel' |
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
25 changes: 25 additions & 0 deletions
25
easybuild/easyconfigs/t/text-unidecode/text-unidecode-1.3-GCCcore-13.2.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,25 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'text-unidecode' | ||
version = '1.3' | ||
|
||
homepage = 'https://github.com/kmike/text-unidecode' | ||
description = """Text-unidecode is the most basic port of the Text::Unidecode Perl library.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
dependencies = [ | ||
('Python', '3.11.5'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'checksums': ['bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93'], | ||
}), | ||
] | ||
|
||
moduleclass = 'devel' |
26 changes: 26 additions & 0 deletions
26
easybuild/easyconfigs/w/wurlitzer/wurlitzer-3.1.1-GCCcore-13.2.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,26 @@ | ||
easyblock = 'PythonPackage' | ||
|
||
name = 'wurlitzer' | ||
version = '3.1.1' | ||
|
||
homepage = 'https://github.com/minrk/wurlitzer' | ||
description = """Capture C-level output in context managers | ||
For more details on why this is needed, please read this blog post: | ||
https://eli.thegreenplace.net/2015/redirecting-all-kinds-of-stdout-in-python | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['bfb9144ab9f02487d802b9ff89dbd3fa382d08f73e12db8adc4c2fb00cd39bd9'] | ||
|
||
builddependencies = [('binutils', '2.40')] | ||
|
||
dependencies = [('Python', '3.11.5')] | ||
|
||
use_pip = True | ||
download_dep_fail = True | ||
sanity_pip_check = True | ||
|
||
moduleclass = 'devel' |