summaryrefslogtreecommitdiff
path: root/lib/spack/spack/schema/cray_manifest.py
blob: 39529fc48f96ab6246311641d48c86baf89e624a (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
# Copyright 2013-2023 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 Cray descriptive manifest: this describes a set of
   installed packages on the system and also specifies dependency
   relationships between them (so this provides more information than
   external entries in packages configuration).

   This does not specify a configuration - it is an input format
   that is consumed and transformed into Spack DB records.
"""

schema = {
    "$schema": "http://json-schema.org/schema#",
    "title": "CPE manifest schema",
    "type": "object",
    "additionalProperties": False,
    "properties": {
        "_meta": {
            "type": "object",
            "additionalProperties": False,
            "properties": {
                "file-type": {"type": "string", "minLength": 1},
                "cpe-version": {"type": "string", "minLength": 1},
                "system-type": {"type": "string", "minLength": 1},
                "schema-version": {"type": "string", "minLength": 1},
                # Older schemas use did not have "cpe-version", just the
                # schema version; in that case it was just called "version"
                "version": {"type": "string", "minLength": 1},
            },
        },
        "compilers": {
            "type": "array",
            "items": {
                "type": "object",
                "additionalProperties": False,
                "properties": {
                    "name": {"type": "string", "minLength": 1},
                    "version": {"type": "string", "minLength": 1},
                    "prefix": {"type": "string", "minLength": 1},
                    "executables": {
                        "type": "object",
                        "additionalProperties": False,
                        "properties": {
                            "cc": {"type": "string", "minLength": 1},
                            "cxx": {"type": "string", "minLength": 1},
                            "fc": {"type": "string", "minLength": 1},
                        },
                    },
                    "arch": {
                        "type": "object",
                        "required": ["os", "target"],
                        "additionalProperties": False,
                        "properties": {
                            "os": {"type": "string", "minLength": 1},
                            "target": {"type": "string", "minLength": 1},
                        },
                    },
                },
            },
        },
        "specs": {
            "type": "array",
            "items": {
                "type": "object",
                "required": ["name", "version", "arch", "compiler", "prefix", "hash"],
                "additionalProperties": False,
                "properties": {
                    "name": {"type": "string", "minLength": 1},
                    "version": {"type": "string", "minLength": 1},
                    "arch": {
                        "type": "object",
                        "required": ["platform", "platform_os", "target"],
                        "additioanlProperties": False,
                        "properties": {
                            "platform": {"type": "string", "minLength": 1},
                            "platform_os": {"type": "string", "minLength": 1},
                            "target": {
                                "type": "object",
                                "additionalProperties": False,
                                "required": ["name"],
                                "properties": {"name": {"type": "string", "minLength": 1}},
                            },
                        },
                    },
                    "compiler": {
                        "type": "object",
                        "required": ["name", "version"],
                        "additionalProperties": False,
                        "properties": {
                            "name": {"type": "string", "minLength": 1},
                            "version": {"type": "string", "minLength": 1},
                        },
                    },
                    "dependencies": {
                        "type": "object",
                        "patternProperties": {
                            "\\w[\\w-]*": {
                                "type": "object",
                                "required": ["hash"],
                                "additionalProperties": False,
                                "properties": {
                                    "hash": {"type": "string", "minLength": 1},
                                    "type": {
                                        "type": "array",
                                        "items": {"type": "string", "minLength": 1},
                                    },
                                },
                            }
                        },
                    },
                    "prefix": {"type": "string", "minLength": 1},
                    "rpm": {"type": "string", "minLength": 1},
                    "hash": {"type": "string", "minLength": 1},
                    "parameters": {"type": "object"},
                },
            },
        },
    },
}