Merge branch 'it4i-karolina'

This commit is contained in:
Jakub Kropacek 2022-09-06 15:06:18 +02:00 committed by anselmicz
commit 9a8d51e064
No known key found for this signature in database
GPG Key ID: 5271768D6FEA96BC
3 changed files with 61 additions and 25 deletions

View File

@ -0,0 +1,31 @@
# IT4Innovations 2022
# JK
easyblock = 'ConfigureMake'
name = 'fio'
version = '3.32'
homepage = 'https://github.com/axboe/fio'
description = 'Flexible I/O tester'
toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
github_account = 'axboe'
source_urls = [GITHUB_SOURCE]
sources = [SOURCELOWER_TAR_GZ]
checksums = ['409e459840912e68be487dbbda9a7a1b3f6ddf1478e3f456f278f957ce4f7b66']
builddependencies = [
('binutils', '2.38'),
]
sanity_check_paths = {
'files': ['bin/fio'],
'dirs': [],
}
sanity_check_commands = ['fio -h']
moduleclass = 'tools'

View File

@ -1,25 +0,0 @@
# IT4Innovations 2022
# JK LK
easyblock = 'ConfigureMake'
name = 'nano'
version = '6.3'
homepage = 'http://www.nano-editor.org/'
description = """Small and friendly text editor"""
toolchain = SYSTEM
source_urls = ['https://www.nano-editor.org/dist/v6/']
sources = [SOURCE_TAR_GZ]
checksums = ['24c51bb2bddc682f95ae745c743cbceebd836549de66bdfd6af80a40333cc6a7']
dependencies = [('ncurses', '6.2')]
sanity_check_paths = {
'files': ['bin/nano'],
'dirs': [],
}
moduleclass = 'tools'

30
n/nano/nano-6.4.eb Normal file
View File

@ -0,0 +1,30 @@
# IT4Innovations 2022
# JK
easyblock = 'ConfigureMake'
name = 'nano'
version = '6.4'
homepage = 'https://www.nano-editor.org/'
docurls = 'https://www.nano-editor.org/docs.php'
description = """a simple editor, inspired by Pico"""
toolchain = SYSTEM
source_urls = ['https://www.nano-editor.org/dist/v6/']
sources = [SOURCE_TAR_GZ]
checksums = ['85ebd9b4dba49839821d529bea16ac1acae0c9b9db2157531e40c9dffeb1b656']
dependencies = [('ncurses', '6.2')]
configopts = '--enable-color --enable-extra --enable-multibuffer --enable-nanorc --enable-utf8'
sanity_check_paths = {
'files': ['bin/nano'],
'dirs': [],
}
sanity_check_commands = ['nano --version']
moduleclass = 'tools'