Update hpctoolkit and externals to latest release

This commit is contained in:
Pramod S Kumbhar 2017-09-15 21:58:33 +02:00 committed by scheibelp
parent 393e355c39
commit 54d0cef5c4
2 changed files with 8 additions and 8 deletions

View File

@ -30,11 +30,10 @@ class HpctoolkitExternals(Package):
HpctoolkitExternals package provides all these prerequisites.""" HpctoolkitExternals package provides all these prerequisites."""
homepage = "http://hpctoolkit.org" homepage = "http://hpctoolkit.org"
url = "https://github.com/HPCToolkit/hpctoolkit-externals"
# Note: No precise release tags/branches provided version('2017.06', git=url, tag='release-2017.06')
version('5.4', version('master', git=url)
git='https://github.com/HPCToolkit/hpctoolkit-externals.git',
commit='3d2953623357bb06e9a4b51eca90a4b039c2710e')
parallel = False parallel = False

View File

@ -34,17 +34,18 @@ class Hpctoolkit(Package):
and attributes them to the full calling context in which they occur.""" and attributes them to the full calling context in which they occur."""
homepage = "http://hpctoolkit.org" homepage = "http://hpctoolkit.org"
url = "https://github.com/HPCToolkit/hpctoolkit"
# Note: No precise release tags/branches provided version('2017.06', git=url, tag='release-2017.06')
version('5.4', git='https://github.com/HPCToolkit/hpctoolkit.git', version('master', git=url)
commit='d9ca2112762e5a06ea31b5295d793e4a83272d19')
variant('mpi', default=True, description='Enable MPI supoort') variant('mpi', default=True, description='Enable MPI supoort')
variant('papi', default=True, description='Enable PAPI counter support') variant('papi', default=True, description='Enable PAPI counter support')
depends_on('hpctoolkit-externals')
depends_on('papi', when='+papi') depends_on('papi', when='+papi')
depends_on('mpi', when='+mpi') depends_on('mpi', when='+mpi')
depends_on('hpctoolkit-externals@2017.06', when='@2017.06')
depends_on('hpctoolkit-externals@master', when='@master')
def install(self, spec, prefix): def install(self, spec, prefix):