diff options
author | Severin Strobl <github@severin-strobl.de> | 2020-09-16 17:16:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 10:16:08 -0500 |
commit | e41c3ad1fc5cda3981348a430e46e58ec862c8bb (patch) | |
tree | 4403b86952f9c240b1097efa2abc0b46f34ce623 | |
parent | 1a9f97fd0de21f3a82e20f41e1e411c208ad26be (diff) | |
download | spack-e41c3ad1fc5cda3981348a430e46e58ec862c8bb.tar.gz spack-e41c3ad1fc5cda3981348a430e46e58ec862c8bb.tar.bz2 spack-e41c3ad1fc5cda3981348a430e46e58ec862c8bb.tar.xz spack-e41c3ad1fc5cda3981348a430e46e58ec862c8bb.zip |
Likwid versions >= 5.0.0 depend on Lua 5.2. (#18675)
* Likwid versions >= 5.0.0 depend on Lua 5.2.
According to https://github.com/RRZE-HPC/likwid/issues/324 recent
versions of Likwid require Lua 5.2.
* Update var/spack/repos/builtin/packages/likwid/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/likwid/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/likwid/package.py b/var/spack/repos/builtin/packages/likwid/package.py index 0bbf69a89b..c1772c4e84 100644 --- a/var/spack/repos/builtin/packages/likwid/package.py +++ b/var/spack/repos/builtin/packages/likwid/package.py @@ -38,7 +38,8 @@ class Likwid(Package): # The reason is that the internal hwloc is patched to contain extra # functionality and functions are prefixed with "likwid_". - depends_on('lua', when='@4.2.0:') + depends_on('lua', when='@:4') + depends_on('lua@5.2:', when='@5:') # TODO: check # depends_on('gnuplot', type='run') |