summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGregor <dan.mcgregor@usask.ca>2024-11-26 12:06:42 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-28 12:27:11 +0000
commit3abce65a7910518f426e15ca48147f12cebc0208 (patch)
treeebf70da9e050e5621a2676cc5ee0c427b2abcfb7
parentf2f1782258fc91848057b6ed4d758192c76c61ab (diff)
downloadpoky-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.bb1
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
428FILES:${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" 428FILES:${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3"
429FILES:${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" 429FILES:${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}"
430FILES:${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
432RPROVIDES:${PN}-venv += "${MLPREFIX}python3-pyvenv" 433RPROVIDES:${PN}-venv += "${MLPREFIX}python3-pyvenv"