depsolve: import dnf-json

Import the `dnf-json` Python script that is included in the "images" and
"osbuild-composer" repository into "osbuild".

`dnf-json` provides dependency solving capabilities by taking in some
JSON and then outputting the package set that JSON resolves to. Since it
is a Python script it moves into a subpackage of `osbuild`.

The script is renamed to `osbuild-depsolve-dnf`.
This commit is contained in:
Simon de Vlieger 2023-10-04 12:35:34 +02:00 committed by Achilleas Koutsou
parent 980ca03685
commit 7c35b945ee
3 changed files with 400 additions and 1 deletions

View file

@ -16,6 +16,6 @@ setuptools.setup(
},
scripts=[
"tools/osbuild-mpp",
"tools/osbuild-dev"
"tools/osbuild-dev",
],
)