summaryrefslogtreecommitdiff
path: root/mdbp/build_schema.json
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2021-04-23 12:35:43 +0200
committerHelmut Grohne <helmut@subdivi.de>2021-04-23 12:35:43 +0200
commit1fc8b5604778c46a8f867827077034f4660b74f2 (patch)
tree438fca7e2b7595b248f7925ec6ee583efdaf3d01 /mdbp/build_schema.json
parent3cf6fa1cc6e50fffbc75add3b5f55a7c91b42517 (diff)
downloadmdbp-1fc8b5604778c46a8f867827077034f4660b74f2.tar.gz
remove redundant values from schema
The bd-uninstallable-explainer value null is equivalent to skipping the option and thus dropped. The network value "undefined" is equivalent to skipping the option and thus dropped. Reported-by: David Kalnischkies <donkult@debian.org>
Diffstat (limited to 'mdbp/build_schema.json')
-rw-r--r--mdbp/build_schema.json10
1 files changed, 4 insertions, 6 deletions
diff --git a/mdbp/build_schema.json b/mdbp/build_schema.json
index baa38ef..7997f2e 100644
--- a/mdbp/build_schema.json
+++ b/mdbp/build_schema.json
@@ -106,14 +106,12 @@
}
},
"bd-uninstallable-explainer": {
- "enum": [ null, "apt", "dose3" ],
- "default": null,
- "description": "when installing Build-Depends fails, an explainer can be used to give details"
+ "enum": [ "apt", "dose3" ],
+ "description": "When installing Build-Depends fails, an explainer can be used to give details. Without this property, no explainer is run."
},
"network": {
- "enum": [ "enable", "disable", "try-disable", "try-enable", "undefined" ],
- "default": "undefined",
- "description": "whether the build should be able to access the internet"
+ "enum": [ "enable", "disable", "try-disable", "try-enable" ],
+ "description": "Decide whether the build should be able to access the internet. Without this property, the backend picks its own default. A try-prefixed value does not cause a failure when the request cannot be fulfilled."
},
"output": {
"type": "object",