summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorTrevor Gamblin <trevor.gamblin@windriver.com>2020-05-12 19:20:16 -0400
committerKhem Raj <raj.khem@gmail.com>2020-05-12 16:53:45 -0700
commit5fceaa4964fdbc2a76aec6d774843914c57221ee (patch)
tree0bfdbc0811145dc9dc2cae2bbb42104ea5b80a65 /meta-python
parent0acb9d90bcd2dadce2102fc3b98635b942e2042b (diff)
downloadmeta-openembedded-5fceaa4964fdbc2a76aec6d774843914c57221ee.tar.gz
python3-pyyaml: add python3-netclient to RDEPENDS
pyyaml relies on the base64 module (which is in python3-netclient), but it is not in RDEPENDS, so add it: |Python 3.8.2 (default, Apr 27 2020, 08:51:00) |[GCC 9.3.0] on linux |Type "help", "copyright", "credits" or "license" for more information. |>>> import yaml |Traceback (most recent call last): |File "<stdin>", line 1, in <module> |File "/usr/lib64/python3.8/site-packages/yaml/_init_.py", line 8, in <module> |from .loader import * |File "/usr/lib64/python3.8/site-packages/yaml/loader.py", line 8, in <module> |from .constructor import * |File "/usr/lib64/python3.8/site-packages/yaml/constructor.py", line 14, in <module> |import collections.abc, datetime, base64, binascii, re, sys, types |ModuleNotFoundError: No module named 'base64' Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-devtools/python/python3-pyyaml_5.3.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyyaml_5.3.bb b/meta-python/recipes-devtools/python/python3-pyyaml_5.3.bb
index b5425b8c95..17868a25dd 100644
--- a/meta-python/recipes-devtools/python/python3-pyyaml_5.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pyyaml_5.3.bb
@@ -13,6 +13,7 @@ SRC_URI[sha256sum] = "e9f45bd5b92c7974e59bcd2dcc8631a6b6cc380a904725fce7bc08872e
13 13
14RDEPENDS_${PN} += "\ 14RDEPENDS_${PN} += "\
15 ${PYTHON_PN}-datetime \ 15 ${PYTHON_PN}-datetime \
16 ${PYTHON_PN}-netclient \
16" 17"
17 18
18BBCLASSEXTEND = "native nativesdk" 19BBCLASSEXTEND = "native nativesdk"