summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/python3-manifest.json
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-04-13 11:15:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-04-14 16:44:24 +0100
commita3ff0f2d4b74f913f58ed58861f1d82f2b55a6ec (patch)
treea27ceaa0ee54c041bc03e25c262e0a6076b93915 /meta/recipes-devtools/python/python3/python3-manifest.json
parent28b08e55b31abf4800c591625991d35d51a93901 (diff)
downloadpoky-a3ff0f2d4b74f913f58ed58861f1d82f2b55a6ec.tar.gz
python3-manifest: add ensurepip
Add the pip bootstrapping module from the standard library to the manifest. This module is a run-time requirement of python3-build. (From OE-Core rev: 7013ddda8f249377c00bc4efb40c34dd5fcfe15a) Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/python3-manifest.json')
-rw-r--r--meta/recipes-devtools/python/python3/python3-manifest.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 9e91270a50..f278b18775 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -610,6 +610,28 @@
610 "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imaplib.*.pyc" 610 "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imaplib.*.pyc"
611 ] 611 ]
612 }, 612 },
613 "ensurepip": {
614 "summary": "Support for bootstrapping the pip installer",
615 "rdepends": [
616 "asyncio",
617 "compile",
618 "core",
619 "ctypes",
620 "image",
621 "io",
622 "mmap",
623 "plistlib",
624 "pprint",
625 "unixadmin",
626 "xmlrpc"
627 ],
628 "files": [
629 "${libdir}/python${PYTHON_MAJMIN}/ensurepip/"
630 ],
631 "cached": [
632 "${libdir}/python${PYTHON_MAJMIN}/ensurepip/_uninstall.*.pyc"
633 ]
634 },
613 "fcntl": { 635 "fcntl": {
614 "summary": "Python's fcntl interface", 636 "summary": "Python's fcntl interface",
615 "rdepends": [ 637 "rdepends": [
@@ -800,6 +822,7 @@
800 "distutils", 822 "distutils",
801 "doctest", 823 "doctest",
802 "email", 824 "email",
825 "ensurepip",
803 "fcntl", 826 "fcntl",
804 "html", 827 "html",
805 "idle", 828 "idle",