summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark W. Krentel <krentel@rice.edu>2022-03-21 17:30:36 -0500
committerGitHub <noreply@github.com>2022-03-21 22:30:36 +0000
commit26ff44388f52531f875bae25a98766b59ed3eb3d (patch)
tree8abdb08993099337468b7029f20064e07e79035b
parent075c76128ab5b9402577dc71f40132eb748b0145 (diff)
downloadspack-26ff44388f52531f875bae25a98766b59ed3eb3d.tar.gz
spack-26ff44388f52531f875bae25a98766b59ed3eb3d.tar.bz2
spack-26ff44388f52531f875bae25a98766b59ed3eb3d.tar.xz
spack-26ff44388f52531f875bae25a98766b59ed3eb3d.zip
libunwind: add versions 1.6.2 and 1.6-stable (#29639)
-rw-r--r--var/spack/repos/builtin/packages/libunwind/package.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/libunwind/package.py b/var/spack/repos/builtin/packages/libunwind/package.py
index 09ea68730e..755bf25cdc 100644
--- a/var/spack/repos/builtin/packages/libunwind/package.py
+++ b/var/spack/repos/builtin/packages/libunwind/package.py
@@ -16,6 +16,8 @@ class Libunwind(AutotoolsPackage):
maintainers = ['mwkrentel']
version('master', branch='master')
+ version('1.6-stable', branch='v1.6-stable')
+ version('1.6.2', sha256='4a6aec666991fb45d0889c44aede8ad6eb108071c3554fcdff671f9c94794976')
version('1.5-stable', branch='v1.5-stable')
version('1.5.0', sha256='90337653d92d4a13de590781371c604f9031cdb50520366aa1e3a91e1efb1017')
version('1.4.0', sha256='df59c931bd4d7ebfd83ee481c943edf015138089b8e50abed8d9c57ba9338435')
@@ -62,10 +64,10 @@ class Libunwind(AutotoolsPackage):
# The libunwind releases contain the autotools generated files,
# but the git repo snapshots do not.
- depends_on('autoconf', type='build', when='@master,1.5-stable')
- depends_on('automake', type='build', when='@master,1.5-stable')
- depends_on('libtool', type='build', when='@master,1.5-stable')
- depends_on('m4', type='build', when='@master,1.5-stable')
+ depends_on('autoconf', type='build', when='@master,1.5-stable,1.6-stable')
+ depends_on('automake', type='build', when='@master,1.5-stable,1.6-stable')
+ depends_on('libtool', type='build', when='@master,1.5-stable,1.6-stable')
+ depends_on('m4', type='build', when='@master,1.5-stable,1.6-stable')
depends_on('xz', type='link', when='+xz')
depends_on('zlib', type='link', when='+zlib')