[oe-commits] [openembedded-core] 02/02: python*-setuptools: add separate packages for pkg_resources module

git at git.openembedded.org git at git.openembedded.org
Mon May 20 13:41:50 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 019e074862737a77881db54dd060cb2ea4b37b30
Author: Luca Boccassi <luca.boccassi at microsoft.com>
AuthorDate: Thu May 16 22:09:56 2019 +0100

    python*-setuptools: add separate packages for pkg_resources module
    
    The pkg_resources Python module is useful by itself, for example for
    automatic loading of resources shipped in a Python package.
    Add separate packages for it, so that users can depend on them
    individually and avoid pulling in the entire setuptools, which
    include scripts to download other packages, which might not be
    desired on minimal images.
    
    Other distributions like Debian and Ubuntu already split setuptools
    and pkg-resources in this way.
    
    The setuptools packages now depend on the new pkg-resources packages,
    to avoid regressions for other packages that depend on them
    already.
    
    Signed-off-by: Luca Boccassi <luca.boccassi at microsoft.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/python/python-setuptools.inc | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/recipes-devtools/python/python-setuptools.inc b/meta/recipes-devtools/python/python-setuptools.inc
index 357aa07..ad00cbe 100644
--- a/meta/recipes-devtools/python/python-setuptools.inc
+++ b/meta/recipes-devtools/python/python-setuptools.inc
@@ -24,6 +24,7 @@ RDEPENDS_${PN} = "\
   ${PYTHON_PN}-html \
   ${PYTHON_PN}-netserver \
   ${PYTHON_PN}-numbers \
+  ${PYTHON_PN}-pkg-resources \
   ${PYTHON_PN}-pkgutil \
   ${PYTHON_PN}-plistlib \
   ${PYTHON_PN}-shell \
@@ -37,3 +38,6 @@ do_install_prepend() {
 }
 
 BBCLASSEXTEND = "native nativesdk"
+
+PACKAGES =+ "${PYTHON_PN}-pkg-resources "
+FILES_${PYTHON_PN}-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list