From 271f5ea5660b4ab665ed0b4ab8a4b0266f4a1957 Mon Sep 17 00:00:00 2001 From: Jakub Kropacek Date: Mon, 13 Feb 2023 14:43:34 +0100 Subject: [PATCH] modified: q/QMCPACK/QMCPACK-3.16.0-foss-2022a-Python-3.10.4.eb new file: v/VirtualGL/VirtualGL-3.0-GCC-10.2.0.eb --- ...QMCPACK-3.16.0-foss-2022a-Python-3.10.4.eb | 2 +- v/VirtualGL/VirtualGL-3.0-GCC-10.2.0.eb | 44 +++++++++++++++++++ 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 v/VirtualGL/VirtualGL-3.0-GCC-10.2.0.eb diff --git a/q/QMCPACK/QMCPACK-3.16.0-foss-2022a-Python-3.10.4.eb b/q/QMCPACK/QMCPACK-3.16.0-foss-2022a-Python-3.10.4.eb index b23a3136..5d2616e7 100644 --- a/q/QMCPACK/QMCPACK-3.16.0-foss-2022a-Python-3.10.4.eb +++ b/q/QMCPACK/QMCPACK-3.16.0-foss-2022a-Python-3.10.4.eb @@ -47,8 +47,8 @@ configopts += ' -DBUILD_AFQMC=ON ' # FCIQMC fails #configopts += '-DQMC_COMPLEX=1' preinstallopts = [ -# 'ctest -j32 -V -R short -LE unstable && ', ' ctest -j32 -V -R unit && ' # run CMake tests in parallel + 'ctest -j32 -V -R short -LE unstable || /usr/bin/true && ', ' mkdir -p %(installdir)s/nexus && ', ' mkdir -p %(installdir)s/QMCTools && ', ' cp -r %(builddir)s/qmcpack-%(version)s/nexus %(installdir)s/ && ', diff --git a/v/VirtualGL/VirtualGL-3.0-GCC-10.2.0.eb b/v/VirtualGL/VirtualGL-3.0-GCC-10.2.0.eb new file mode 100644 index 00000000..c8913ae9 --- /dev/null +++ b/v/VirtualGL/VirtualGL-3.0-GCC-10.2.0.eb @@ -0,0 +1,44 @@ +# Contribution from the Crick HPC team +# uploaded by J. Sassmannshausen +# updated by Valentin Plugaru 2019-09-26 + +easyblock = 'CMakeMake' + +name = 'VirtualGL' +version = '3.0' + +homepage = 'https://virtualgl.org/' +description = """VirtualGL is an open source toolkit that gives any Linux or +Unix remote display software the ability to run OpenGL applications with full +hardware acceleration.""" + +toolchain = {'name': 'GCC', 'version': '10.2.0'} + +source_urls = ['https://github.com/VirtualGL/virtualgl/archive/'] +sources = ['%(version)s.tar.gz'] +checksums = ['d6e00a8d0596cafa67955d6211e0dab6c8aa8239bd718f7eca6eb0b032711f9b'] + +builddependencies = [ + ('CMake', '3.20.1'), + ('binutils', '2.35'), +] + +dependencies = [ + ('libjpeg-turbo', '2.0.5'), + ('Mesa', '20.2.1'), + ('libGLU', '9.0.1'), + ('pocl', '1.6'), +] + +local_binaries = [ + 'cpustat', 'glreadtest', 'glxinfo', 'glxspheres64', 'nettest', 'tcbench', + 'vglclient', 'vglconfig', 'vglconnect', 'vglgenkey', 'vgllogin', 'vglrun', + 'vglserver_config' +] + +sanity_check_paths = { + 'files': ['bin/%s' % x for x in local_binaries], + 'dirs': ['lib64', 'share', 'include'], +} + +moduleclass = 'vis'