From: Matthias Kruk Date: Fri, 11 Aug 2023 08:09:41 +0000 (+0900) Subject: debian: Add dependencies for JSON Schema validation script X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=68391dd0c874e23700ca79d783488c63f1b3165f;p=toolbox 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. --- 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.