diff options
author | Richarda Butler <39577672+RikkiButler20@users.noreply.github.com> | 2021-06-15 17:50:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 17:50:04 -0700 |
commit | 1c44912f9bec9f5a7a9602b0bec8efe903385d7f (patch) | |
tree | 166609c176742fe5936b327733fc4b265b99149b /etc | |
parent | 5971372be75e25dfc00947d48f353bdd52cddbd1 (diff) | |
download | spack-1c44912f9bec9f5a7a9602b0bec8efe903385d7f.tar.gz spack-1c44912f9bec9f5a7a9602b0bec8efe903385d7f.tar.bz2 spack-1c44912f9bec9f5a7a9602b0bec8efe903385d7f.tar.xz spack-1c44912f9bec9f5a7a9602b0bec8efe903385d7f.zip |
add irep and lua-lang virtual dependency (#22492)
This adds a package for `irep`, a tool for reading `lua` input decks from
Fortran, C, and C++.
`irep` can be built with either `lua` or `luajit`. To address this, we also add
a virtual package for lua called `lua-lang`. `luajit` isn't, by default, a drop-in
replacement for `lua`, but we add a `+lualinks` variant to it that adds symlinks
that make it behave like `lua@5.1`. With this variant enabled, it provides the
`lua-lang` virtual. `lua` always provides `lua-lang`.
- [x] add `irep` package
- [x] add `+lualinks` variant to `lua-luajit`
- [x] create `lua-lang` virtual, provided by `lua` and `luajit+lualinks`
Co-authored-by: Kayla Richarda Butler <butler59@quartz1148.llnl.gov>
Co-authored-by: Todd Gamblin <tgamblin@llnl.gov>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/spack/defaults/packages.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/spack/defaults/packages.yaml b/etc/spack/defaults/packages.yaml index 17fb4e2be1..2d6b3da9be 100644 --- a/etc/spack/defaults/packages.yaml +++ b/etc/spack/defaults/packages.yaml @@ -34,6 +34,7 @@ packages: java: [openjdk, jdk, ibm-java] jpeg: [libjpeg-turbo, libjpeg] lapack: [openblas, amdlibflame] + lua-lang: [lua, lua-luajit] mariadb-client: [mariadb-c-client, mariadb] mkl: [intel-mkl] mpe: [mpe2] |