summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2024-07-23 15:51:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-07-24 22:51:39 +0100
commit14e487aad97d7f03c89da321edd9ed6bdc0c2c7c (patch)
tree9ce4208435973d8faac5a3dc1789595e6da85764
parent1665084fc49cdb10c5033fd80d234441818079ec (diff)
downloadpoky-14e487aad97d7f03c89da321edd9ed6bdc0c2c7c.tar.gz
python3: add dependency on -compression to -core
importlib.metadata is part of -core, but that will import zipfile which is part of -compression. Obviously this shows that our packaging of the Python modules is not optimal. I plan to follow up with a redesign of the splitting which focuses on simply pulling out the larger or esoteric modules and having a more featureful core. (From OE-Core rev: 0f8d985b290def1fbb356aede152a10424c9d2f1) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3/python3-manifest.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 46092d4004..292c5bbc5d 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -216,7 +216,7 @@
216 }, 216 },
217 "core": { 217 "core": {
218 "summary": "Python interpreter and core modules", 218 "summary": "Python interpreter and core modules",
219 "rdepends": [], 219 "rdepends": ["compression"],
220 "files": [ 220 "files": [
221 "${bindir}/python${PYTHON_MAJMIN}", 221 "${bindir}/python${PYTHON_MAJMIN}",
222 "${bindir}/python${PYTHON_MAJMIN}.real", 222 "${bindir}/python${PYTHON_MAJMIN}.real",