summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sip/package.py
blob: 427e450abab2d6038ab7c3d3fcf7d9f8831087fd (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright 2013-2022 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)

import os

from spack import *


class PySip(PythonPackage):
    """A Python bindings generator for C/C++ libraries."""

    homepage = "https://www.riverbankcomputing.com/software/sip"
    pypi = "sip/sip-6.4.0.tar.gz"

    version('6.4.0', sha256='42ec368520b8da4a0987218510b1b520b4981e4405086c1be384733affc2bcb0')
    version('5.5.0', sha256='5d024c419b30fea8a6de8c71a560c7ab0bc3c221fbfb14d55a5b865bd58eaac5')
    version('4.19.21', sha256='3bfd58e875a87471c00e008f25a01d8312885aa01efc4f688e5cac861c8676e4')
    version('4.19.20', sha256='475f85277a6601c406ade508b6c935b9f2a170c16fd3ae9dd4cdee7a4f7f340d')
    version('4.19.19', sha256='348cd6229b095a3090e851555814f5147bffcb601cec891f1038eb6b38c9d856')
    version('4.19.18', sha256='e274a8b9424047c094a40a8e70fc5e596c191cb8820472846d7bf739e461b2e8')
    version('4.19.15', sha256='02bff1ac89253e12cdf1406ad39f841d0e264b0d96a7de13dfe9e29740df2053')
    version('4.19.13', sha256='92193fcf990503bf29f03e290efc4ee1812d556efc18acf5c8b88c090177a630')

    variant('module', default='sip', when='@:4', description='Name of private SIP module',
            values=str, multi=False)

    depends_on('python@3.6:', when='@6:', type=('build', 'run'))

    with when('@5:'):
        depends_on('python@3.5.1:', type=('build', 'run'))
        depends_on('py-packaging', type='build')
        depends_on('py-setuptools@30.3:', type='build')
        depends_on('py-toml', type='build')

    with when('@:4'):
        depends_on('flex', type='build')
        depends_on('bison', type='build')

    def url_for_version(self, version):
        if version < Version('5.0.0'):
            return "https://www.riverbankcomputing.com/hg/sip/archive/{0}.tar.gz".format(version.dotted)
        return super(PySip, self).url_for_version(version)

    @when('@:4')
    def install(self, spec, prefix):
        if not os.path.exists('configure.py'):
            python('build.py', 'prepare')

        args = [
            '--sip-module={0}'.format(spec.variants['module'].value),
            '--bindir={0}'.format(prefix.bin),
            '--destdir={0}'.format(python_platlib),
            '--incdir={0}'.format(join_path(
                prefix, spec['python'].package.include)),
            '--sipdir={0}'.format(prefix.share.sip),
            '--stubsdir={0}'.format(python_platlib),
        ]
        python('configure.py', *args)
        make()
        make('install')

    @run_after('install')
    def extend_path_setup(self):
        if self.spec.satisfies('@:4'):
            # See github issue #14121 and PR #15297
            module = self.spec.variants['module'].value
            if module != 'sip':
                module = module.split('.')[0]
                with working_dir(python_platlib):
                    with open(os.path.join(module, '__init__.py'), 'w') as f:
                        f.write('from pkgutil import extend_path\n')
                        f.write('__path__ = extend_path(__path__, __name__)\n')