diff options
author | Dan McGregor <dan.mcgregor@usask.ca> | 2024-11-26 12:06:42 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-28 12:27:11 +0000 |
commit | 3abce65a7910518f426e15ca48147f12cebc0208 (patch) | |
tree | ebf70da9e050e5621a2676cc5ee0c427b2abcfb7 | |
parent | f2f1782258fc91848057b6ed4d758192c76c61ab (diff) | |
download | poky-3abce65a7910518f426e15ca48147f12cebc0208.tar.gz |
python3: package tkinter's shared objects
Seems every time python is updated this gets removed. That's likely
because the tk option can't be enabled in python3-native without
creating a dependency loop.
Instead of manually editing the manifest every time, explicitly
add it in the recipe as suggested by Alexander Kanavin.
(From OE-Core rev: d2e82fc12509950ea30fa20fcbe9fc148b6cff1c)
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3_3.13.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3_3.13.0.bb b/meta/recipes-devtools/python/python3_3.13.0.bb index fd926811a7..a393b5e4a0 100644 --- a/meta/recipes-devtools/python/python3_3.13.0.bb +++ b/meta/recipes-devtools/python/python3_3.13.0.bb | |||
@@ -427,6 +427,7 @@ RPROVIDES:${PN}-modules = "${PN}" | |||
427 | 427 | ||
428 | FILES:${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" | 428 | FILES:${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" |
429 | FILES:${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" | 429 | FILES:${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" |
430 | FILES:${PN}-tkinter += "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_tkinter.*.so" | ||
430 | 431 | ||
431 | # provide python-pyvenv from python3-venv | 432 | # provide python-pyvenv from python3-venv |
432 | RPROVIDES:${PN}-venv += "${MLPREFIX}python3-pyvenv" | 433 | RPROVIDES:${PN}-venv += "${MLPREFIX}python3-pyvenv" |