diff options
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2016-09-10 11:43:30 -0400 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2016-09-10 11:43:30 -0400 |
commit | 8b49f2a969b0e5431a7f4abfa03ca73e65bd7f35 (patch) | |
tree | 50cf596d992450199b48b5d645bb48dd5bb2d093 /meta-phosphor/common/recipes-devtools/python | |
parent | 28bb38b3086ebeade40f3a20d3e006015c205589 (diff) | |
download | talos-openbmc-8b49f2a969b0e5431a7f4abfa03ca73e65bd7f35.tar.gz talos-openbmc-8b49f2a969b0e5431a7f4abfa03ca73e65bd7f35.zip |
Fix more missing package dependencies
Found a couple missing from Rocket and Bottle.
Change-Id: I5ee3c882c3182a20c907f8e8a13f40eec36731fa
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'meta-phosphor/common/recipes-devtools/python')
-rw-r--r-- | meta-phosphor/common/recipes-devtools/python/python-bottle.inc | 6 | ||||
-rw-r--r-- | meta-phosphor/common/recipes-devtools/python/python-rocket.inc | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/meta-phosphor/common/recipes-devtools/python/python-bottle.inc b/meta-phosphor/common/recipes-devtools/python/python-bottle.inc index cc9599877..37526f7eb 100644 --- a/meta-phosphor/common/recipes-devtools/python/python-bottle.inc +++ b/meta-phosphor/common/recipes-devtools/python/python-bottle.inc @@ -13,7 +13,11 @@ inherit allarch inherit setuptools S = "${WORKDIR}/${SRCNAME}-${PV}" -RDEPENDS_${PN} += "python-email-utils" +RDEPENDS_${PN} += " \ + python-email-utils \ + python-json \ + python-netserver \ + " PROVIDES += "${PN}-app" PACKAGES += "${PN}-app" diff --git a/meta-phosphor/common/recipes-devtools/python/python-rocket.inc b/meta-phosphor/common/recipes-devtools/python/python-rocket.inc index 73e7d1d38..72e055542 100644 --- a/meta-phosphor/common/recipes-devtools/python/python-rocket.inc +++ b/meta-phosphor/common/recipes-devtools/python/python-rocket.inc @@ -18,6 +18,7 @@ RDEPENDS_${PN} += "\ python-wsgiref-util \ python-wsgiref-headers \ python-email-utils \ - " + python-netserver \ + " BBCLASSEXTEND = "nativesdk" |