new file: g/gnuplot/gnuplot-5.4.2-GCCcore-10.3.0.eb

new file:   i/intel/intel-2020b.eb
This commit is contained in:
Jakub Kropacek 2022-06-01 13:58:52 +02:00 committed by easybuild
parent 9b8f1b6eae
commit 7f4ae57f87
2 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,48 @@
# IT4Innovations
# JK 2022
easyblock = 'ConfigureMake'
name = 'gnuplot'
version = '5.4.2'
homepage = 'http://gnuplot.sourceforge.net/'
description = """Portable interactive, function plotting utility"""
toolchain = {'name': 'GCCcore', 'version': '10.3.0'}
source_urls = [('https://sourceforge.net/projects/gnuplot/files/gnuplot/%(version)s', 'download')]
sources = [SOURCE_TAR_GZ]
checksums = ['e57c75e1318133951d32a83bcdc4aff17fed28722c4e71f2305cfc2ae1cae7ba']
builddependencies = [
('binutils', '2.36.1'),
('pkg-config', '0.29.2'),
('Autotools', '20210128'),
]
dependencies = [
('ncurses', '6.2'),
('cairo', '1.16.0'),
('libjpeg-turbo', '2.0.6'),
('libpng', '1.6.37'),
('libgd', '2.3.1'),
('Pango', '1.48.5'),
('libcerf', '1.17'),
('X11', '20210518'),
('Qt5', '5.15.2'),
('Lua', '5.4.3'),
]
preconfigopts = 'autoreconf && '
configopts = '--with-qt=qt5 --without-latex '
sanity_check_paths = {
'files': ['bin/gnuplot'],
'dirs': []
}
# make sure that pdf terminal type is available
#sanity_check_commands = ["gnuplot -e 'set terminal pdf'"]
moduleclass = 'vis'

21
i/intel/intel-2020b.eb Normal file
View File

@ -0,0 +1,21 @@
easyblock = 'Toolchain'
name = 'intel'
version = '2020b'
homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#intel-toolchain'
description = "Compiler toolchain including Intel compilers, Intel MPI and Intel Math Kernel Library (MKL)."
toolchain = SYSTEM
local_compver = '2020.4.304'
local_gccver = '10.2.0'
dependencies = [
('GCCcore', local_gccver),
('binutils', '2.35', '', ('GCCcore', local_gccver)),
('iccifort', local_compver),
('impi', '2019.9.304', '', ('iccifort', local_compver)),
('imkl', local_compver, '', ('iimpi', version)),
]
moduleclass = 'toolchain'