summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJim Galarowicz <jeg@trenzasynergy.com>2022-06-14 07:56:51 -0500
committerGitHub <noreply@github.com>2022-06-14 14:56:51 +0200
commitc7628d768a096333fd94c01ccdf756313cab7dab (patch)
tree5481f0ec8f5d5c8d525b644d20011faf5c011a3a /var
parente1ad9261890027e276ae502bf198b078196a010e (diff)
downloadspack-c7628d768a096333fd94c01ccdf756313cab7dab.tar.gz
spack-c7628d768a096333fd94c01ccdf756313cab7dab.tar.bz2
spack-c7628d768a096333fd94c01ccdf756313cab7dab.tar.xz
spack-c7628d768a096333fd94c01ccdf756313cab7dab.zip
survey: add v1.0.5 (#31053)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/survey/package.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/survey/package.py b/var/spack/repos/builtin/packages/survey/package.py
index 234374b2e1..b0f248dccc 100644
--- a/var/spack/repos/builtin/packages/survey/package.py
+++ b/var/spack/repos/builtin/packages/survey/package.py
@@ -33,7 +33,8 @@ class Survey(CMakePackage):
maintainers = ['jgalarowicz']
version('master', branch='master')
- version('1.0.4', branch='1.0.4')
+ version('1.0.5', branch='1.0.5')
+ version('1.0.4', tag='1.0.4')
version('1.0.3', tag='1.0.3')
version('1.0.2', tag='1.0.2')
version('1.0.1.1', tag='1.0.1.1')
@@ -73,6 +74,7 @@ class Survey(CMakePackage):
depends_on("py-jinja2", type=('build', 'run'), when='@1.0.3:')
depends_on("py-matplotlib", type=('build', 'run'), when='@1.0.3:')
depends_on("py-more-itertools", type=('build', 'run'), when='@1.0.4:')
+ depends_on("py-versioneer", type=('build', 'run'), when='@1.0.5:')
extends('python')
@@ -121,3 +123,6 @@ class Survey(CMakePackage):
# For compatibility reasons we need
env.prepend_path('PATH', self.spec['python'].prefix.bin)
+ # Add paths for sub-tools that are used by survey
+ env.prepend_path('PATH', self.spec['papi'].prefix.bin)
+ env.prepend_path('PATH', self.spec['libmonitor'].prefix.bin)