summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/iwyu/package.py
blob: e7876ee0b028e8314c9c5f388c89fff23b443198 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2013-2021 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 Iwyu(CMakePackage):
    """include-what-you-use: A tool for use with clang to analyze #includes in
    C and C++ source files
    """

    homepage = "https://include-what-you-use.org"
    url      = "https://include-what-you-use.org/downloads/include-what-you-use-0.13.src.tar.gz"

    maintainers = ['sethrj']

    version('0.14', sha256='43184397db57660c32e3298a6b1fd5ab82e808a1f5ab0591d6745f8d256200ef')
    version('0.13', sha256='49294270aa64e8c04182369212cd919f3b3e0e47601b1f935f038c761c265bc9')
    version('0.12', sha256='a5892fb0abccb820c394e4e245c00ef30fc94e4ae58a048b23f94047c0816025')
    version('0.11', sha256='2d2877726c4aed9518cbb37673ffbc2b7da9c239bf8fe29432da35c1c0ec367a')

    patch('iwyu-013-cmake.patch', when='@0.13:0.14')

    depends_on('llvm+clang@10.0:10.999', when='@0.14')
    depends_on('llvm+clang@9.0:9.999', when='@0.13')
    depends_on('llvm+clang@8.0:8.999', when='@0.12')
    depends_on('llvm+clang@7.0:7.999', when='@0.11')

    # Non-X86 CPU use all_targets variants because iwyu use X86AsmParser
    depends_on('llvm+all_targets', when='target=aarch64:')
    depends_on('llvm+all_targets', when='target=arm:')
    depends_on('llvm+all_targets', when='target=ppc:')
    depends_on('llvm+all_targets', when='target=ppcle:')
    depends_on('llvm+all_targets', when='target=ppc64:')
    depends_on('llvm+all_targets', when='target=ppc64le:')
    depends_on('llvm+all_targets', when='target=sparc:')
    depends_on('llvm+all_targets', when='target=sparc64:')

    @when('@0.14:')
    def cmake_args(self):
        return [self.define('CMAKE_CXX_STANDARD', 14),
                self.define('CMAKE_CXX_EXTENSIONS', False)]