new file: t/Tensorflow/Tensorflow-1.2.0-intel-2017.05-Python-3.6.1.eb

new file:   x/Xvfb/Xvfb-1.17.4.eb
This commit is contained in:
Lukáš Krupčík 2017-06-28 11:23:31 +02:00
parent d3bb4dc88f
commit 87b1e7dbac
2 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,34 @@
easyblock = 'PythonPackage'
name = 'Tensorflow'
version = '1.2.0'
versionsuffix = '-mkl'
homepage = 'https://www.tensorflow.org/'
description = "An open-source software library for Machine Intelligence"
toolchain = {'name': 'intel', 'version': '2017.05'}
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 = [
('Java', '1.8.0_121', '', True),
('protobuf', '3.2.0', '-GCC-7.1.0-2.28-Python-3.6.1', True)
]
use_pip = True
unpack_sources = False
sanity_check_paths = {
'files': ['bin/tensorboard'],
'dirs': [''],
}
moduleclass = 'lib'

32
x/Xvfb/Xvfb-1.17.4.eb Normal file
View File

@ -0,0 +1,32 @@
easyblock = 'CmdCp'
name = 'Xvfb'
version = '1.17.4'
homepage = 'http://www.x.org'
description = """Xvfb is an X server that can run on machines with no display
hardware and no physical input devices. It emulates a dumb framebuffer
using virtual memory."""
toolchain = {'name': 'dummy', 'version': ''}
source_urls = ['http://195.220.108.108/linux/centos/6.9/os/x86_64/Packages']
sources = [{
'filename': 'xorg-x11-server-Xvfb-%(version)s-16.el6.centos.x86_64.rpm',
'extract_cmd': "rpm2cpio %s | cpio -idmv",
}]
skipsteps = ['build']
#start_dir = 'bin'
#cmds_map = []
files_to_copy = [(['Xvfb', 'xvfb-run'], 'bin')]
sanity_check_paths = {
'files': ['bin/Xvfb'],
'dirs': [],
}
moduleclass = 'vis'