diff options
author | Martin Kelly <mkelly@xevo.com> | 2017-10-30 13:05:24 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-11-15 16:34:05 -0800 |
commit | d6c40bcaef556e3c67c6214d8fb6933ac224e619 (patch) | |
tree | 07f44b05b83c8d0235460cc032b5e3670d36fd89 /meta-oe/recipes-navigation/gpsd | |
parent | 2913f7073f39a216ba215868f2d7e18a1ed05a2c (diff) | |
download | meta-openembedded-d6c40bcaef556e3c67c6214d8fb6933ac224e619.tar.gz |
gpsd: add missing python-pygps RDEPENDS
Several runtime dependencies are missing from python-pygps. You can
verify this by adding gps-utils to an image and running gpsfake, which
will fail with python import errors. With this patch, gpsfake works
correctly.
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-navigation/gpsd')
-rw-r--r-- | meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb index f8e6a2b13..e23d63033 100644 --- a/meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb +++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb | |||
@@ -120,7 +120,14 @@ RDEPENDS_gps-utils = "python-pygps" | |||
120 | 120 | ||
121 | SUMMARY_python-pygps = "Python bindings to gpsd" | 121 | SUMMARY_python-pygps = "Python bindings to gpsd" |
122 | FILES_python-pygps = "${PYTHON_SITEPACKAGES_DIR}/*" | 122 | FILES_python-pygps = "${PYTHON_SITEPACKAGES_DIR}/*" |
123 | RDEPENDS_python-pygps = "python-core python-curses gpsd python-json" | 123 | RDEPENDS_python-pygps = " \ |
124 | python-core \ | ||
125 | python-io \ | ||
126 | python-threading \ | ||
127 | python-terminal \ | ||
128 | python-curses \ | ||
129 | gpsd \ | ||
130 | python-json" | ||
124 | 131 | ||
125 | RPROVIDES_${PN} += "${PN}-systemd" | 132 | RPROVIDES_${PN} += "${PN}-systemd" |
126 | RREPLACES_${PN} += "${PN}-systemd" | 133 | RREPLACES_${PN} += "${PN}-systemd" |