survey: add v1.0.5 (#31053)

This commit is contained in:
Jim Galarowicz 2022-06-14 07:56:51 -05:00 committed by GitHub
parent e1ad926189
commit c7628d768a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 @@ def setup_run_environment(self, env):
# 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)