diff --git a/g/git/git-2.23.0.eb b/g/git/git-2.23.0.eb new file mode 100644 index 00000000..dc404ee1 --- /dev/null +++ b/g/git/git-2.23.0.eb @@ -0,0 +1,28 @@ +# IT4Innovations 2019 + +easyblock = 'ConfigureMake' + +name = 'git' +version = "2.23.0" + +homepage = 'http://git-scm.com/' +description = """Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency.""" + +toolchain = {'name': 'system', 'version': ''} + +source_urls = ['https://www.kernel.org/pub/software/scm/git/'] +sources = ['%(name)s-%(version)s.tar.gz'] + +builddependencies = [ + ('Autoconf', '2.69', '', True) +] + +preconfigopts = 'make configure && ' + +sanity_check_paths = { + 'files': ['bin/git'], + 'dirs': [], +} + +moduleclass = 'tools' diff --git a/k/Keras/Keras-2.3.0-Tensorflow-1.13.1-Python-3.7.2.eb b/k/Keras/Keras-2.3.0-Tensorflow-1.13.1-Python-3.7.2.eb new file mode 100644 index 00000000..ee2f3a33 --- /dev/null +++ b/k/Keras/Keras-2.3.0-Tensorflow-1.13.1-Python-3.7.2.eb @@ -0,0 +1,35 @@ +# IT4Innovations 2019 + +easyblock = 'PythonPackage' + +name = 'Keras' +version = '2.3.0' +versionsuffix = '-Tensorflow-1.13.1-Python-%(pyver)s' + +homepage = 'https://keras.io/' +description = """Keras is a minimalist, highly modular neural networks library, written in Python and +capable of running on top of either TensorFlow or Theano.""" + +toolchain = {'name': 'dummy', 'version': ''} + +source_urls = ['https://github.com/keras-team/keras/archive'] +sources = ['%(version)s.tar.gz'] + +use_pip = True + +dependencies = [ + ('Python', '3.7.2', '', ('GCCcore', '8.2.0')), + ('TensorFlow', '1.13.1', '-Python-3.7.2', ('foss', '2019a')), + # ('h5py', '2.7.0', '%(versionsuffix)s'), internal Python 3.7.2 + # ('PyYAML', '3.12', versionsuffix), internal Python 3.7.2 +] + +# it defaults to Tensorflow +modextravars = {'KERAS_BACKEND': 'tensorflow'} + +sanity_check_paths = { + 'files': [], + 'dirs': ['lib/python%(pyshortver)s/site-packages'], +} + +moduleclass = 'math'