diff --git a/f/fio/fio-3.32-GCCcore-11.3.0.eb b/f/fio/fio-3.32-GCCcore-11.3.0.eb new file mode 100644 index 00000000..54b9c333 --- /dev/null +++ b/f/fio/fio-3.32-GCCcore-11.3.0.eb @@ -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' diff --git a/n/nano/nano-6.3.eb b/n/nano/nano-6.3.eb deleted file mode 100644 index ddc01bbe..00000000 --- a/n/nano/nano-6.3.eb +++ /dev/null @@ -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' diff --git a/n/nano/nano-6.4.eb b/n/nano/nano-6.4.eb new file mode 100644 index 00000000..a760fa2d --- /dev/null +++ b/n/nano/nano-6.4.eb @@ -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'