mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-04-13 19:10:01 +08:00
Finds runtime and build dependencies in PDC UnreleasedVariant objects
in the fields 'runtime_deps' and 'build_deps'. Both are lists of
dictionaries, each with currently one field 'dependency' which contains
the name of the other variant on which this one depends, with an
optional version constraint. E.g.:
{
"variant_id": ...,
...
"runtime_deps": [
{
"dependency": "foo>=2"
}
],
"build_deps": [
{
"dependency": "foo>=2"
}
]
}
Signed-off-by: Nils Philippsen <nils@redhat.com>