From 25e040a720b15fbe1632575f2bda6f57f7939fe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= Date: Wed, 31 May 2017 11:59:46 +0200 Subject: [PATCH] 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 --- b/Bazel/Bazel-0.5.0-GCC-4.9.3-tf.eb | 31 +++++++++++++++++ g/GDAL/GDAL-2.1.3-Python-2.7.13.eb | 2 +- t/Tensorflow/Tensorflow-1.1.0-Python-3.6.1.eb | 33 +++++++++++++++++++ 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 b/Bazel/Bazel-0.5.0-GCC-4.9.3-tf.eb create mode 100644 t/Tensorflow/Tensorflow-1.1.0-Python-3.6.1.eb diff --git a/b/Bazel/Bazel-0.5.0-GCC-4.9.3-tf.eb b/b/Bazel/Bazel-0.5.0-GCC-4.9.3-tf.eb new file mode 100644 index 00000000..480bace3 --- /dev/null +++ b/b/Bazel/Bazel-0.5.0-GCC-4.9.3-tf.eb @@ -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' diff --git a/g/GDAL/GDAL-2.1.3-Python-2.7.13.eb b/g/GDAL/GDAL-2.1.3-Python-2.7.13.eb index f9a364c4..afaf62ee 100644 --- a/g/GDAL/GDAL-2.1.3-Python-2.7.13.eb +++ b/g/GDAL/GDAL-2.1.3-Python-2.7.13.eb @@ -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'), ] diff --git a/t/Tensorflow/Tensorflow-1.1.0-Python-3.6.1.eb b/t/Tensorflow/Tensorflow-1.1.0-Python-3.6.1.eb new file mode 100644 index 00000000..2e0deba2 --- /dev/null +++ b/t/Tensorflow/Tensorflow-1.1.0-Python-3.6.1.eb @@ -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'