From c9c473309d90a0c267d6544d81dc58087eebcd7f Mon Sep 17 00:00:00 2001 From: Pavel Holba Date: Wed, 25 Sep 2024 09:34:40 +0200 Subject: [PATCH] new file: h/HyperQueue/HyperQueue-0.20.0.eb --- h/HyperQueue/HyperQueue-0.20.0.eb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 h/HyperQueue/HyperQueue-0.20.0.eb diff --git a/h/HyperQueue/HyperQueue-0.20.0.eb b/h/HyperQueue/HyperQueue-0.20.0.eb new file mode 100644 index 00000000..6707ec21 --- /dev/null +++ b/h/HyperQueue/HyperQueue-0.20.0.eb @@ -0,0 +1,28 @@ +# IT4Innovations +# PH 2024 + +easyblock = 'PackedBinary' + +name = 'HyperQueue' +version = '0.20.0' + +homepage = 'https://it4innovations.github.io/hyperqueue/' +description = """HyperQueue lets you build a computation plan consisting of a large amount of tasks + and then execute it transparently over a system like SLURM/PBS. It dynamically groups jobs into SLURM/PBS jobs + and distributes them to fully utilize allocated notes. + You thus do not have to manually aggregate your tasks into SLURM/PBS jobs.""" + +toolchain = SYSTEM + +source_urls = ['https://github.com/It4innovations/hyperqueue/releases/download/v%(version)s/'] +sources = ['hq-v%(version)s-linux-x64.tar.gz'] +checksums = ['1b05177c9dd562a7ce1480796da2e8db169f963608719d398f21899d4f79f934'] + +sanity_check_paths = { + 'files': ['hq'], + 'dirs': [], +} + +sanity_check_commands = ['hq --version'] + +moduleclass = 'devel'