2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2015-02-12 07:26:53 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
class Ravel(CMakePackage):
|
2015-02-12 07:26:53 +08:00
|
|
|
"""Ravel is a parallel communication trace visualization tool that
|
|
|
|
orders events according to logical time."""
|
|
|
|
|
2015-12-09 17:24:15 +08:00
|
|
|
homepage = "https://github.com/llnl/ravel"
|
|
|
|
url = 'https://github.com/llnl/ravel/archive/v1.0.0.tar.gz'
|
2015-02-12 07:26:53 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.0.0', sha256='e1e1ac6d70c9aae915623d81a8f1258488fd26f880612fe21f2e032827aa93eb')
|
2015-02-12 07:26:53 +08:00
|
|
|
|
2016-03-09 23:46:56 +08:00
|
|
|
depends_on('cmake@2.8.9:', type='build')
|
2015-02-12 07:26:53 +08:00
|
|
|
|
|
|
|
depends_on('muster@1.0.1:')
|
|
|
|
depends_on('otf')
|
|
|
|
depends_on('otf2')
|
|
|
|
depends_on('qt@5:')
|
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
def cmake_args(self):
|
|
|
|
return ['-Wno-dev']
|