From: Bartosz Golaszewski Date: Thu, 13 Apr 2023 09:15:56 +0000 (+0200) Subject: python3-manifest: add ensurepip X-Git-Tag: uninative-3.10~279 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7013ddda8f249377c00bc4efb40c34dd5fcfe15a;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git 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. Signed-off-by: Bartosz Golaszewski Signed-off-by: Luca Ceresoli --- diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json index 9e91270a502..f278b187756 100644 --- a/meta/recipes-devtools/python/python3/python3-manifest.json +++ b/meta/recipes-devtools/python/python3/python3-manifest.json @@ -610,6 +610,28 @@ "${libdir}/python${PYTHON_MAJMIN}/__pycache__/imaplib.*.pyc" ] }, + "ensurepip": { + "summary": "Support for bootstrapping the pip installer", + "rdepends": [ + "asyncio", + "compile", + "core", + "ctypes", + "image", + "io", + "mmap", + "plistlib", + "pprint", + "unixadmin", + "xmlrpc" + ], + "files": [ + "${libdir}/python${PYTHON_MAJMIN}/ensurepip/" + ], + "cached": [ + "${libdir}/python${PYTHON_MAJMIN}/ensurepip/_uninstall.*.pyc" + ] + }, "fcntl": { "summary": "Python's fcntl interface", "rdepends": [ @@ -800,6 +822,7 @@ "distutils", "doctest", "email", + "ensurepip", "fcntl", "html", "idle",