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

{tools} EasyBuild v4.3.4 #12554

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
44 changes: 44 additions & 0 deletions easybuild/easyconfigs/e/EasyBuild/EasyBuild-4.3.4.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
easyblock = 'EB_EasyBuildMeta'

name = 'EasyBuild'
version = '4.3.4'

homepage = 'https://easybuilders.github.io/easybuild'
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 = {'name': 'dummy', 'version': 'dummy'}

source_urls = [
# easybuild-framework
'https://files.pythonhosted.org/packages/3f/b3/00819590aae375c96f0acc0526163fe0422be0feec2ed04dc6722d0f0559/',
# easybuild-easyblocks
'https://files.pythonhosted.org/packages/6e/bf/c29680ac2d2364955e71096f9732b2bc40647d0c1d7ab9c262a35efd9a1d/',
# easybuild-easyconfigs
'https://files.pythonhosted.org/packages/6c/d9/960d38512f3b921b06ae8c41def16930044a1f9d8732dcb9aa311438469f/',
]
sources = [
'easybuild-framework-%(version)s.tar.gz',
'easybuild-easyblocks-%(version)s.tar.gz',
'easybuild-easyconfigs-%(version)s.tar.gz',
]
checksums = [
'c59579ba91c6788d24bb63d4e763cd57e0fb5464226dbe17d53f4a863272b414', # easybuild-framework-4.3.4.tar.gz
'c8d31d09d5db1b67ee9656392649bc5accc34b2d288fa7c3223bdba1a2b993ac', # easybuild-easyblocks-4.3.4.tar.gz
'7100963753b4a316ab39b84c32fc5fa4b192e893f8414068d10d30060697a61f', # easybuild-easyconfigs-4.3.4.tar.gz
]

# order matters a lot, to avoid having dependencies auto-resolved (--no-deps easy_install option doesn't work?)
# 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'