Files
spack/var/spack/repos/builtin/packages/gotcha/package.py
Todd Gamblin 1571d6240b style: ensure that all packages pass spack style -a
- fix trailing whitespace and other issues uncovered by better flake8
  checking.

- fix extra whitespace printed by `spack style` command
2020-12-23 16:17:54 -08:00

33 lines
1.1 KiB
Python

# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Gotcha(CMakePackage):
"""C software library for shared library function wrapping,
enables tools to intercept calls into shared libraries"""
homepage = "http://github.com/LLNL/gotcha"
git = "https://github.com/LLNL/gotcha.git"
version('develop', branch='develop')
version('master', branch='master')
version('1.0.3', tag='1.0.3')
version('1.0.2', tag='1.0.2')
version('0.0.2', tag='0.0.2')
variant('test', default=False, description='Build tests for Gotcha')
patch(
'https://github.com/LLNL/GOTCHA/commit/e82b4a1ecb634075d8f5334b796c888c86da0427.patch',
sha256='9f7814fd3c3362c156bc617c755e7e50c2f9125ed4540e36f60e4d93884f1ce6',
when='@0.0.2:1.0.2')
def configure_args(self):
spec = self.spec
return [
'-DGOTCHA_ENABLE_TESTS=%s' % ('ON' if '+test' in spec else 'OFF')
]