-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22049 from boegel/20241218133750_new_pr_EasyBuild…
…500beta1 {tools}[system] EasyBuild v0.5.0.0beta1 (initial beta release of EasyBuild v5.0.0)
- Loading branch information
Showing
2 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
easybuild/easyconfigs/e/EasyBuild/EasyBuild-0.5.0.0beta1.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,59 @@ | ||
easyblock = 'EB_EasyBuildMeta' | ||
|
||
name = 'EasyBuild' | ||
version = '0.5.0.0beta1' | ||
|
||
homepage = 'https://easybuild.io' | ||
description = """EasyBuild is a software build and installation framework | ||
written in Python that allows you to install software in a structured, | ||
repeatable and robust way.""" | ||
|
||
toolchain = SYSTEM | ||
|
||
sources = [ | ||
{ | ||
'filename': 'easybuild-framework-v%s.tar.gz' % version[2:], | ||
'git_config': { | ||
'url': 'https://github.com/easybuilders', | ||
'repo_name': 'easybuild-framework', | ||
'tag': 'easybuild-framework-v%s' % version[2:], | ||
'keep_git_dir': True, | ||
}, | ||
}, | ||
{ | ||
'filename': 'easybuild-easyblocks-v%s.tar.gz' % version[2:], | ||
'git_config': { | ||
'url': 'https://github.com/easybuilders', | ||
'repo_name': 'easybuild-easyblocks', | ||
'tag': 'easybuild-easyblocks-v%s' % version[2:], | ||
'keep_git_dir': True, | ||
}, | ||
}, | ||
{ | ||
'filename': 'easybuild-easyconfigs-v%s.tar.gz' % version[2:], | ||
'git_config': { | ||
'url': 'https://github.com/easybuilders', | ||
'repo_name': 'easybuild-easyconfigs', | ||
'tag': 'easybuild-easyconfigs-v%s' % version[2:], | ||
'keep_git_dir': True, | ||
}, | ||
}, | ||
] | ||
checksums = [ | ||
None, | ||
None, | ||
None, | ||
] | ||
|
||
# EasyBuild is a (set of) Python packages, so it depends on Python | ||
# usually, we want to use the system Python, so no actual Python dependency is listed | ||
allow_system_deps = [('Python', SYS_PYTHON_VERSION)] | ||
|
||
local_pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2]) | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/eb'], | ||
'dirs': ['lib/python%s/site-packages' % local_pyshortver], | ||
} | ||
|
||
moduleclass = 'tools' |
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