Add top-level attributes for hg, svn, and git A-L packages

This commit is contained in:
Adam J. Stewart
2018-07-23 00:00:15 -07:00
committed by Todd Gamblin
parent 5f00056490
commit 4c6aca533a
152 changed files with 468 additions and 493 deletions

View File

@@ -36,18 +36,18 @@ class Caliper(CMakePackage):
"""
homepage = "https://github.com/LLNL/Caliper"
url = ""
git = "https://github.com/LLNL/Caliper.git"
version('master', git='https://github.com/LLNL/Caliper.git')
version('1.7.0', git='https://github.com/LLNL/Caliper.git', tag='v1.7.0')
version('master')
version('1.7.0', tag='v1.7.0')
# version 1.6.0 is broken b/c it downloads the wrong gotcha version
version('1.6.0', git='https://github.com/LLNL/Caliper.git', tag='v1.6.0')
version('1.6.0', tag='v1.6.0')
is_linux = sys.platform.startswith('linux')
variant('mpi', default=True,
variant('mpi', default=True,
description='Enable MPI wrappers')
variant('dyninst', default=False,
variant('dyninst', default=False,
description='Enable symbol translation support with dyninst')
# libunwind has some issues on Mac
variant('callpath', default=sys.platform != 'darwin',