diff options
author | Trevor Gamblin <trevor.gamblin@windriver.com> | 2020-03-22 12:29:14 -0400 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-03-22 18:51:27 +0000 |
commit | d66fc2776992d3979616c0e692ce10f6a46fb7ef (patch) | |
tree | 6c14ae71cfab15e2342a6ee1fb7c0568d488d052 /meta-python | |
parent | 6eecab74e3466891a1aa096914fff0e273be951e (diff) | |
download | meta-openembedded-d66fc2776992d3979616c0e692ce10f6a46fb7ef.tar.gz |
python3-twisted: add python3-appdirs to RDEPENDS
python3-twisted requires python3-appdirs to support some
submodules:
|root@intel-x86-64:~# python3
|Python 3.7.4 (default, Oct 28 2019, 02:05:50)
|[GCC 9.2.0] on linux
|Type "help", "copyright", "credits" or "license" for more information.
|>>> import twisted.python._appdirs
|
|Error message :
|File "<frozen importlib._bootstrap>", line 219, in
|_call_with_frames_removed
|File "/usr/lib64/python3.7/site-packages/twisted/python/_appdirs.py",
|line 11, in <module>
|import appdirs
|No module named 'appdirs'
Also rearranged the RDEPENDS list for twisted-core to be in alphabetical
order.
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/python-twisted.inc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/meta-python/recipes-devtools/python/python-twisted.inc b/meta-python/recipes-devtools/python/python-twisted.inc index f830dee60..7537bafd3 100644 --- a/meta-python/recipes-devtools/python/python-twisted.inc +++ b/meta-python/recipes-devtools/python/python-twisted.inc | |||
@@ -61,16 +61,17 @@ RDEPENDS_${PN} = "\ | |||
61 | ${PN}-zsh \ | 61 | ${PN}-zsh \ |
62 | " | 62 | " |
63 | 63 | ||
64 | RDEPENDS_${PN}-core = "${PYTHON_PN}-core \ | 64 | RDEPENDS_${PN}-core = "${PYTHON_PN}-appdirs \ |
65 | ${PYTHON_PN}-zopeinterface \ | 65 | ${PYTHON_PN}-automat \ |
66 | ${PYTHON_PN}-incremental \ | ||
67 | ${PYTHON_PN}-constantly \ | 66 | ${PYTHON_PN}-constantly \ |
67 | ${PYTHON_PN}-core \ | ||
68 | ${PYTHON_PN}-debugger \ | ||
68 | ${PYTHON_PN}-hyperlink \ | 69 | ${PYTHON_PN}-hyperlink \ |
69 | ${PYTHON_PN}-automat \ | 70 | ${PYTHON_PN}-incremental \ |
70 | ${PYTHON_PN}-pyserial \ | ||
71 | ${PYTHON_PN}-pyhamcrest \ | 71 | ${PYTHON_PN}-pyhamcrest \ |
72 | ${PYTHON_PN}-debugger \ | 72 | ${PYTHON_PN}-pyserial \ |
73 | ${PYTHON_PN}-unixadmin \ | 73 | ${PYTHON_PN}-unixadmin \ |
74 | ${PYTHON_PN}-zopeinterface \ | ||
74 | " | 75 | " |
75 | RDEPENDS_${PN}-test = "${PN}" | 76 | RDEPENDS_${PN}-test = "${PN}" |
76 | RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols ${PYTHON_PN}-bcrypt ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1 ${PYTHON_PN}-pickle" | 77 | RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols ${PYTHON_PN}-bcrypt ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1 ${PYTHON_PN}-pickle" |