mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

The recently added python3-jsonschema depends on vcversioner. The setuptools tries to fetch it but fails with bitbake if run behind proxies. Explicitly set DEPENDS to ensure the dependency is installed before running setup.py for python3-jsonschema. Signed-off-by: Mikko Ylinen <mikko.ylinen@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
9 lines
138 B
BlitzBasic
9 lines
138 B
BlitzBasic
inherit pypi setuptools3
|
|
require python-jsonschema.inc
|
|
|
|
DEPENDS += "python3-vcversioner"
|
|
|
|
RDEPENDS_${PN} += " \
|
|
${PYTHON_PN}-misc \
|
|
"
|