mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-18 12:40:58 +01:00

new file: b/Bazel/CROSSTOOL.patch new file: b/Bazel/cc_configure.patch new file: l/libepoxy/libepoxy-1.4.3.eb modified: o/OpenMPI/OpenMPI-2.1.0-GCC-6.3.0-2.27.eb modified: o/OpenMPI/OpenMPI-2.1.1-GCC-7.1.0-2.28.eb new file: t/Tensorflow/Tensorflow-1.2.0-Python-3.6.1.eb new file: x/X11/X11-20160819-test.eb new file: x/X11/X11-20170314-test.eb new file: x/xf86-video-dummy/xf86-video-dummy-0.3.5.eb new file: x/xf86-video-fbdev/xf86-video-fbdev-0.4.4.eb new file: x/xorg-macros/xorg-macros-1.19.1.eb new file: x/xorg-server/xorg-server-1.19.3.eb
39 lines
934 B
Plaintext
39 lines
934 B
Plaintext
# @author: Robert Schmidt (OHRI)
|
|
# @author: Guilherme Peretti-Pezzi (CSCS)
|
|
|
|
easyblock = "CmdCp"
|
|
|
|
name = 'Bazel'
|
|
version = '0.5.1'
|
|
|
|
homepage = 'http://bazel.io/'
|
|
description = """Bazel is a build tool that builds code quickly and reliably.
|
|
It is used to build the majority of Google's software."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '7.1.0-2.28'}
|
|
|
|
sources = ['%(namelower)s-%(version)s-dist.zip']
|
|
source_urls = ['https://github.com/bazelbuild/bazel/releases/download/%(version)s']
|
|
|
|
patches = [
|
|
('cc_configure.patch'),
|
|
('CROSSTOOL.patch'),
|
|
]
|
|
|
|
prebuildopts = "export EXTRA_BAZEL_ARGS='--ignore_unsupported_sandboxing --genrule_strategy=standalone --spawn_strategy=standalone --jobs=24' && "
|
|
|
|
dependencies = [
|
|
('Java', '1.8.0_121', '', True),
|
|
]
|
|
|
|
cmds_map = [('.*', "./compile.sh")]
|
|
|
|
files_to_copy = [(['output/bazel'], 'bin')]
|
|
|
|
sanity_check_paths={
|
|
'files': ['bin/bazel'],
|
|
'dirs': [],
|
|
}
|
|
|
|
moduleclass = 'devel'
|