modified: f/fontconfig/fontconfig-2.13.0.eb

new file:   l/libGLU/libGLU-9.0.0-GCC-8.3.0-2.32.eb
	modified:   l/libGLU/libGLU-9.0.0.eb
	modified:   l/libdrm/libdrm-2.4.76.eb
	modified:   m/Mako/Mako-1.0.6-Py-2.7.eb
	modified:   m/Mesa/Mesa-18.3.1.eb
	new file:   v/VirtualGL/VirtualGL-2.6.1-GCC-8.3.0-2.32.eb
	new file:   v/VirtualGL/VirtualGL-2.6.3.eb
This commit is contained in:
Lukáš Krupčík 2020-03-02 10:24:29 +01:00
parent 4cdab77347
commit ce2d3a0ba3
8 changed files with 109 additions and 7 deletions

View File

@ -22,6 +22,7 @@ dependencies = [
('freetype', '2.9.1'),
('expat', '2.2.0'),
('LibUUID', '1.0.3'),
('gperf', '3.1'),
]
configopts = '--disable-docs '

View File

@ -0,0 +1,29 @@
# IT4Innovations 2020
easyblock = 'ConfigureMake'
name = 'libGLU'
version = '9.0.0'
homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/'
description = """The OpenGL Utility Library (GLU) is a local_computer graphics library for OpenGL. """
toolchain = {'name': 'GCC', 'version': '8.3.0-2.32'}
toolchainopts = {'pic': True}
source_urls = [
'http://ftp.iij.ad.jp/pub/X11/x.org/pub/mesa/glu/'
]
sources = ['glu-%(version)s.tar.gz']
dependencies = [
('Mesa', '18.3.1', '', True)
]
sanity_check_paths = {
'files': ['lib/libGLU.so.1'],
'dirs': [],
}
moduleclass = 'vis'

View File

@ -8,7 +8,7 @@ version = '9.0.0'
homepage = 'ftp://ftp.freedesktop.org/pub/mesa/glu/'
description = """The OpenGL Utility Library (GLU) is a local_computer graphics library for OpenGL. """
toolchain = SYSTEM
toolchain = {
toolchainopts = {'pic': True}
source_urls = [

View File

@ -1,3 +1,5 @@
# IT4Innovations 2020
easyblock = 'ConfigureMake'
name = 'libdrm'
@ -12,7 +14,7 @@ sources = [SOURCELOWER_TAR_GZ]
toolchain = SYSTEM
dependencies = [
('X11', '20170314'),
('X11', '20190717'),
]
sanity_check_paths = {

View File

@ -18,7 +18,7 @@ dependencies = [('Py', '2.7')]
sanity_check_paths = {
'files': ['bin/mako-render'],
'dirs': ['lib/python2.7s/site-packages/%(name)s-%(version)s-py2.7.egg'],
'dirs': ['lib/python2.7/site-packages'],
}
moduleclass = 'devel'

View File

@ -1,4 +1,4 @@
# IT4Innovations 2018
# IT4Innovations 2020
easyblock = 'ConfigureMake'
@ -28,7 +28,7 @@ builddependencies = [
('Bison', '3.0.5', '', True),
('Autotools', '20180311', '', True),
('pkg-config', '0.29.2', '', True),
('Mako', '1.0.6', '-Python-2.7.14-base', True),
('Mako', '1.0.6', '-Py-2.7', True),
('libxml2', '2.9.4', '', True),
]
@ -36,8 +36,8 @@ dependencies = [
('zlib', '1.2.11', '', True),
('nettle', '3.4.1'),
('libdrm', '2.4.76', '', True),
('LLVM', '6.0.1'),
('X11', '20170314', '', True),
('LLVM', '9.0.0', '', ('GCCcore' , '8.3.0')),
('X11', '20190717', '', True),
('expat', '2.2.0', '', True),
]

View File

@ -0,0 +1,35 @@
# IT4Innovations 2020
easyblock = 'CMakeMake'
name = "VirtualGL"
version = '2.6.1'
homepage = 'http://www.virtualgl.org'
description = """VirtualGL is an open source toolkit that gives any Unix or Linux remote display software the
ability to run OpenGL applications with full 3D hardware acceleration."""
# empty version to ensure that dependencies are loaded
toolchain = {'name': 'GCC', 'version': '8.3.0-2.32'}
sources = ['%(version)s.tar.gz']
source_urls = ['https://github.com/VirtualGL/virtualgl/archive']
dependencies = [
('Mesa', '18.3.1', '', True),
('libjpeg-turbo', '1.5.3', '', True),
('libGLU', '9.0.0'),
]
builddependencies = [
('CMake', '3.16.2', '', True),
]
#skipsteps = ['source', 'patch', 'prepare', 'configure', 'build', 'test']
sanity_check_paths = {
'files': ['bin/vglrun'],
'dirs': ['']
}
moduleclass = 'tools'

View File

@ -0,0 +1,35 @@
# IT4Innovations 2020
easyblock = 'CMakeMake'
name = "VirtualGL"
version = '2.6.3'
homepage = 'http://www.virtualgl.org'
description = """VirtualGL is an open source toolkit that gives any Unix or Linux remote display software the
ability to run OpenGL applications with full 3D hardware acceleration."""
# empty version to ensure that dependencies are loaded
toolchain = SYSTEM
sources = ['%(version)s.tar.gz']
source_urls = ['https://github.com/VirtualGL/virtualgl/archive']
dependencies = [
('Mesa', '18.3.1'),
('libjpeg-turbo', '1.5.3'),
('libGLU', '9.0.0', '', ('GCC', '8.3.0-2.32')),
]
builddependencies = [
('CMake', '3.16.2'),
]
#skipsteps = ['source', 'patch', 'prepare', 'configure', 'build', 'test']
sanity_check_paths = {
'files': ['bin/vglrun'],
'dirs': ['']
}
moduleclass = 'tools'