Add missing package dependency for yaml

This element was assuming that yaml was included as package,
but there are systems not including it. So properly add yaml
as a dependency.

Change-Id: I72da2776674a3963657052b9a9715abcb4fab1e2
Partially-Fixes-Bug: #1715686
This commit is contained in:
Yolanda Robla 2017-09-11 14:32:19 +02:00
parent 72d0d22cdf
commit da5c926fe9
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,8 @@
PyYAML:
phase: pre-install.d
dib_python_version: 2
python3-PyYAML:
phase: pre-install.d
installtype: package
dib_python_version: 3

View File

@ -0,0 +1,23 @@
{
"family": {
"gentoo": {
"PyYAML": "dev-python/pyyaml"
},
"suse": {
"PyYAML": "python-PyYAML",
"python3-PyYAML": "python3-PyYAML"
},
"redhat": {
"PyYAML": "PyYAML",
"python3-PyYAML": "python3-PyYAML"
},
"debian": {
"PyYAML": "python-yaml",
"python3-PyYAML": "python3-yaml"
}
},
"default": {
"PyYAML": "",
"python3-PyYAML": ""
}
}