summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/openpmd-api/package.py
blob: 36b86182fa91ae24fd305d2b6e01b92f7819b86b (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# 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 OpenpmdApi(CMakePackage):
    """C++ & Python API for Scientific I/O"""

    homepage = "http://www.openPMD.org"
    url      = "https://github.com/openPMD/openPMD-api/archive/0.13.3.tar.gz"
    git      = "https://github.com/openPMD/openPMD-api.git"

    maintainers = ['ax3l']

    # C++14 up until here
    version('develop', branch='dev')
    version('0.14.1', sha256='172fd1d785627d01c77f1170adc5a18bd8a6302e804d0f271dc0d616a5156791')
    version('0.14.0', sha256='7bb561c1a6f54e9a6a1b56aaf1d4d098bbe290d204f84ebe5a6f11b3cab2be6e')
    #   temporary, pre 0.14.0 version for HiPACE++
    version('hipace', commit='ac083025ee662469b8cad1adf93eef48cde35f58')
    version('0.13.4', preferred=True,
            sha256='46c013be5cda670f21969675ce839315d4f5ada0406a6546a91ec3441402cf5e')
    version('0.13.3', sha256='4b8f84bd89cd540c73ffe8c21085970453cb7f0e4f125f11a4e288433f64b58c')
    version('0.13.2', sha256='2e5170d41bb7b2c0608ec833eee7f9adf8175b46734743f6e46dcce6f6685fb0')
    version('0.13.1', sha256='81ff79419982eb1b0865d1736f73f950f5d4c356d3c78200ceeab7f54dc07fd7')
    version('0.13.0', sha256='97c2e43d80ee5c5288f278bd54f0dcb40e7f48a575b278fcef9660214b779bb0')
    # C++11 up until here
    version('0.12.0',  tag='0.12.0-alpha')
    version('0.11.1',  tag='0.11.1-alpha')

    variant('shared', default=True,
            description='Build a shared version of the library')
    variant('mpi', default=True,
            description='Enable parallel I/O')
    variant('hdf5', default=True,
            description='Enable HDF5 support')
    variant('adios1', default=False,
            description='Enable ADIOS1 support')
    variant('adios2', default=True,
            description='Enable ADIOS2 support')
    variant('python', default=False,
            description='Enable Python bindings')

    depends_on('cmake@3.15.0:', type='build')
    depends_on('mpark-variant@1.4.0:')
    depends_on('catch2@2.6.1:', type='test')
    depends_on('catch2@2.13.4:', type='test', when='@0.14.0:')
    depends_on('mpi@2.3:', when='+mpi')  # might become MPI 3.0+
    depends_on('hdf5@1.8.13:', when='+hdf5')
    depends_on('hdf5@1.8.13: ~mpi', when='~mpi +hdf5')
    depends_on('hdf5@1.8.13: +mpi', when='+mpi +hdf5')
    depends_on('adios@1.13.1: ~sz', when='+adios1')
    depends_on('adios@1.13.1: ~mpi ~sz', when='~mpi +adios1')
    depends_on('adios@1.13.1: +mpi ~sz', when='+mpi +adios1')
    depends_on('adios2@2.5.0:', when='+adios2')
    depends_on('adios2@2.6.0:', when='+adios2 @0.12.0:')
    depends_on('adios2@2.7.0:', when='+adios2 @0.14.0:')
    depends_on('adios2@2.5.0: ~mpi', when='~mpi +adios2')
    depends_on('adios2@2.5.0: +mpi', when='+mpi +adios2')
    depends_on('nlohmann-json@3.9.1:')
    depends_on('py-pybind11@2.6.2:', when='+python', type='link')
    depends_on('py-numpy@1.15.1:', when='+python', type=['test', 'run'])
    depends_on('py-mpi4py@2.1.0:', when='+python +mpi', type=['test', 'run'])
    depends_on('python@3.6:', when='+python', type=['link', 'test', 'run'])

    conflicts('^hdf5 api=v16', msg='openPMD-api requires HDF5 APIs for 1.8+')

    # Fix breaking HDF5 1.12.0 API when build with legacy api options
    # https://github.com/openPMD/openPMD-api/pull/1012
    patch('hdf5-1.12.0.patch', when='@:0.13.99 +hdf5')

    extends('python', when='+python')

    def cmake_args(self):
        spec = self.spec

        args = [
            self.define_from_variant('BUILD_SHARED_LIBS', 'shared'),
            # variants
            self.define_from_variant('openPMD_USE_MPI', 'mpi'),
            self.define_from_variant('openPMD_USE_HDF5', 'hdf5'),
            self.define_from_variant('openPMD_USE_ADIOS1', 'adios1'),
            self.define_from_variant('openPMD_USE_ADIOS2', 'adios2'),
            self.define_from_variant('openPMD_USE_PYTHON', 'python'),
            # tests and examples
            self.define('BUILD_TESTING', self.run_tests),
            self.define('BUILD_EXAMPLES', self.run_tests)
        ]

        # switch internally shipped third-party libraries for spack
        if spec.satisfies('+python'):
            py_exe_define = 'Python_EXECUTABLE' \
                if spec.version >= Version('0.13.0') else 'PYTHON_EXECUTABLE'
            args += [
                self.define(py_exe_define, self.spec['python'].command.path),
                self.define('openPMD_USE_INTERNAL_PYBIND11', False)
            ]

        args += [
            self.define('openPMD_USE_INTERNAL_JSON', False),
            self.define('openPMD_USE_INTERNAL_VARIANT', False)
        ]
        if self.run_tests:
            args.append(self.define('openPMD_USE_INTERNAL_CATCH', False))

        return args

    def setup_run_environment(self, env):
        spec = self.spec
        # pre-load dependent CMake-PUBLIC header-only libs
        env.prepend_path('CMAKE_PREFIX_PATH', spec['mpark-variant'].prefix)
        env.prepend_path('CPATH', spec['mpark-variant'].prefix.include)

        # more deps searched in openPMDConfig.cmake
        if spec.satisfies("+mpi"):
            env.prepend_path('CMAKE_PREFIX_PATH', spec['mpi'].prefix)
        if spec.satisfies("+adios1"):
            env.prepend_path('CMAKE_PREFIX_PATH', spec['adios'].prefix)
            env.prepend_path('PATH', spec['adios'].prefix.bin)  # adios-config
        if spec.satisfies("+adios2"):
            env.prepend_path('CMAKE_PREFIX_PATH', spec['adios2'].prefix)
        if spec.satisfies("+hdf5"):
            env.prepend_path('CMAKE_PREFIX_PATH', spec['hdf5'].prefix)

    def setup_dependent_build_environment(self, env, dependent_spec):
        # pre-load dependent CMake-PUBLIC header-only libs
        env.prepend_path('CMAKE_PREFIX_PATH',
                         self.spec['mpark-variant'].prefix)
        env.prepend_path('CPATH', self.spec['mpark-variant'].prefix.include)