summaryrefslogtreecommitdiff
path: root/lib/spack/spack/schema/buildcache_spec.py
blob: 8ae1112381a0ca8753c94d67798986803a0c0a3f (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
# 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)

"""Schema for a buildcache spec.yaml file

.. literalinclude:: _spack_root/lib/spack/spack/schema/buildcache_spec.py
   :lines: 14-
"""
import spack.schema.spec

schema = {
    '$schema': 'http://json-schema.org/draft-07/schema#',
    'title': 'Spack buildcache specfile schema',
    'type': 'object',
    'additionalProperties': False,
    'properties': {
        'buildinfo': {
            'type': 'object',
            'additionalProperties': False,
            'required': ['relative_prefix'],
            'properties': {
                'relative_prefix': {'type': 'string'},
                'relative_rpaths': {'type': 'boolean'},
            },
        },
        'spec': {
            'type': 'object',
            'additionalProperties': True,
            'items': spack.schema.spec.properties,
        },
        'binary_cache_checksum': {
            'type': 'object',
            'properties': {
                'hash_algorithm': {'type': 'string'},
                'hash': {'type': 'string'},
            },
        },
        'buildcache_layout_version': {'type': 'number'}
    },
}