summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cbtf/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/cbtf/package.py')
-rw-r--r--var/spack/repos/builtin/packages/cbtf/package.py78
1 files changed, 29 insertions, 49 deletions
diff --git a/var/spack/repos/builtin/packages/cbtf/package.py b/var/spack/repos/builtin/packages/cbtf/package.py
index 2f0b3b275d..ba6cbd7477 100644
--- a/var/spack/repos/builtin/packages/cbtf/package.py
+++ b/var/spack/repos/builtin/packages/cbtf/package.py
@@ -1,44 +1,7 @@
-##############################################################################
-# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
-# Produced at the Lawrence Livermore National Laboratory.
+# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
-# This file is part of Spack.
-# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
-# LLNL-CODE-647188
-#
-# For details, see https://github.com/spack/spack
-# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License (as
-# published by the Free Software Foundation) version 2.1, February 1999.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
-# conditions of the GNU Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-##############################################################################
-##########################################################################
-# Copyright (c) 2015-2017 Krell Institute. All Rights Reserved.
-#
-# This program is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or (at your option) any later
-# version.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-# details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-# Place, Suite 330, Boston, MA 02111-1307 USA
-##########################################################################
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
@@ -51,22 +14,38 @@ class Cbtf(CMakePackage):
"""
homepage = "http://sourceforge.net/p/cbtf/wiki/Home"
+ git = "https://github.com/OpenSpeedShop/cbtf.git"
- # Use when the git repository is available
- version('1.8', branch='master',
- git='https://github.com/OpenSpeedShop/cbtf.git')
+ version('develop', branch='master')
+ version('1.9.2', branch='1.9.2')
+ version('1.9.1.2', branch='1.9.1.2')
+ version('1.9.1.1', branch='1.9.1.1')
+ version('1.9.1.0', branch='1.9.1.0')
+
+ variant('cti', default=False,
+ description="Build MRNet with the CTI startup option")
variant('runtime', default=False,
description="build only the runtime libraries and collectors.")
+
variant('build_type', default='None', values=('None'),
description='CMake build type')
depends_on("cmake@3.0.2:", type='build')
- depends_on("boost@1.50.0:1.59.0")
- depends_on("mrnet@5.0.1:+lwthreads")
- depends_on("xerces-c@3.1.1:")
- # Work around for spack libxml2 package bug, take off python when fixed
- depends_on("libxml2+python")
+
+ depends_on("boost@1.66.0:")
+
+ # For MRNet
+ depends_on("mrnet@5.0.1-3:+cti", when='@develop+cti')
+ depends_on("mrnet@5.0.1-3:+lwthreads", when='@develop')
+ depends_on("mrnet@5.0.1-3+cti", when='@1.9.1.0:9999+cti')
+ depends_on("mrnet@5.0.1-3+lwthreads", when='@1.9.1.0:9999')
+
+ # For Xerces-C
+ depends_on("xerces-c")
+
+ # For XML2
+ depends_on("libxml2")
parallel = False
@@ -83,7 +62,8 @@ class Cbtf(CMakePackage):
compile_flags = "-O2 -g"
- if '+runtime' in spec:
+ if spec.satisfies('+runtime'):
+
# Install message tag include file for use in Intel MIC
# cbtf-krell build
# FIXME