new file: b/Bazel/Bazel-0.5.0-GCC-4.9.3-tf.eb

modified:   g/GDAL/GDAL-2.1.3-Python-2.7.13.eb
	new file:   t/Tensorflow/Tensorflow-1.1.0-Python-3.6.1.eb
This commit is contained in:
Lukáš Krupčík 2017-05-31 11:59:46 +02:00
parent ef00508861
commit 25e040a720
3 changed files with 65 additions and 1 deletions

View File

@ -0,0 +1,31 @@
# @author: Robert Schmidt (OHRI)
# @author: Guilherme Peretti-Pezzi (CSCS)
easyblock = "CmdCp"
name = 'Bazel'
version = '0.5.0'
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': '4.9.3-tf'}
sources = ['%(namelower)s-%(version)s-dist.zip']
source_urls = ['https://github.com/bazelbuild/bazel/releases/download/%(version)s']
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'

View File

@ -28,7 +28,7 @@ dependencies = [
('JasPer', '2.0.12', '', ('intel', '2017a')),
('LibTIFF', '4.0.7'),
('zlib', '1.2.11'),
('cURL', '7.53.1'),
# ('cURL', '7.53.1'),
('PCRE', '8.40'),
]

View File

@ -0,0 +1,33 @@
easyblock = 'PythonPackage'
name = 'Tensorflow'
version = '1.1.0'
homepage = 'https://www.tensorflow.org/'
description = "An open-source software library for Machine Intelligence"
toolchain = {'name': 'dummy', 'version': ''}
pymaj = '3'
pymin = '6'
pymajmin = pymaj + pymin
#source_urls = ['https://pypi.python.org/packages/1f/38/c255432f18005362dd2459e3bff2b2411eb7d02ca09fa20ee1dd1311f69f/']
sources = [
'tensorflow-%(version)s-cp36-cp36m-linux_x86_64.whl',
]
dependencies = [
('Python', '%s.%s.1' % (pymaj, pymin)),
('GCC', '4.9.3', '-tf'),
]
use_pip = True
unpack_sources = False
sanity_check_paths = {
'files': ['bin/tensorboard'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}
moduleclass = 'lib'