diff --git a/packages/thallium/package.py b/packages/thallium/package.py index 2d4f0e859fa5760c7e4317b14b88674c7facbe0f..53f7a4e5b2a1494e097ec821f142e0d57806b339 100644 --- a/packages/thallium/package.py +++ b/packages/thallium/package.py @@ -1,13 +1,17 @@ from spack import * class Thallium(CMakePackage): - """Thallium is a C++14 library wrapping Margo, Mercury, and Argobots and providing an object-oriented way to use these libraries.""" + """Thallium is a C++14 library wrapping Margo, Mercury, + and Argobots and providing an object-oriented way to use these libraries.""" + homepage = "https://xgitlab.cels.anl.gov/sds/thallium" url = "https://xgitlab.cels.anl.gov/sds/thallium" + git = "https://xgitlab.cels.anl.gov/sds/thallium.git" - version('master', git='https://xgitlab.cels.anl.gov/sds/thallium.git') + version('develop', branch='master') + version('0.3', tag='v0.3', preferred=True) - depends_on('margo') + depends_on('margo@0.4:') # thallium relies on std::decay_t conflicts('%gcc@:4.9.0');