From 68391dd0c874e23700ca79d783488c63f1b3165f Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Fri, 11 Aug 2023 17:09:41 +0900 Subject: [PATCH] debian: Add dependencies for JSON Schema validation script The script for JSON Schema validation requires the python3 and python3-jsonschema packages to be installed, but because the toolbox debian package does not depend on them, they may not be installed. This commit makes the toolbox debian package depend on python3 and python3-jsonschema, making sure that the JSON Schema validator can be executed. --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index e671d6b..895af27 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Homepage: https://m10k.eu/toolbox.html Package: toolbox Section: shells Architecture: all -Depends: bash (>= 4.0), coreutils, findutils, grep, sed, git, jq, gnupg2, ${misc:Depends} +Depends: bash (>= 4.0), coreutils, findutils, grep, sed, git, jq, gnupg2, python3, python3-jsonschema, ${misc:Depends} Description: Module management for bash scripts Provides the necessary infrastructure to use loadable modules in shell scripts, and a set of basic modules for common tasks. -- 2.47.3