From d6c40bcaef556e3c67c6214d8fb6933ac224e619 Mon Sep 17 00:00:00 2001 From: Martin Kelly Date: Mon, 30 Oct 2017 13:05:24 -0700 Subject: 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 Signed-off-by: Armin Kuster --- meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.16.bb index f8e6a2b137..e23d63033d 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" SUMMARY_python-pygps = "Python bindings to gpsd" FILES_python-pygps = "${PYTHON_SITEPACKAGES_DIR}/*" -RDEPENDS_python-pygps = "python-core python-curses gpsd python-json" +RDEPENDS_python-pygps = " \ + python-core \ + python-io \ + python-threading \ + python-terminal \ + python-curses \ + gpsd \ + python-json" RPROVIDES_${PN} += "${PN}-systemd" RREPLACES_${PN} += "${PN}-systemd" -- cgit 1.2.3-korg i/BUG8314'>ChenQi/BUG8314 OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
blob: 83f4959d6ce147bc102c80106941be0e14c090d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75