[oe-commits] [meta-openembedded] 04/42: libreport: fix Nothing RPROVIDES 'lib32-python3-libreport'

git at git.openembedded.org git at git.openembedded.org
Sun Feb 4 10:09:36 UTC 2018


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

armin_kuster pushed a commit to branch rocko-next
in repository meta-openembedded.

commit 2a5d1690ae0ff48b0fcb504c241dff9a12f6c3b1
Author: Hongxu Jia <hongxu.jia at windriver.com>
AuthorDate: Wed Oct 18 21:45:17 2017 -0400

    libreport: fix Nothing RPROVIDES 'lib32-python3-libreport'
    
    While multilib enabled, if other recipe RDEPENDS python3-libreport,
    it failed with:
    ...
    ERROR: Nothing RPROVIDES 'lib32-python3-libreport'
    ...
    
    Do not use python3-${PN} could fix the issue.
    
    Signed-off-by: Hongxu Jia <hongxu.jia at windriver.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    (cherry picked from commit 5d6d21e98ed594809169d2b2f6964e90a3369a96)
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-extended/libreport/libreport_2.9.2.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb b/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb
index 2fdfd7d..525437b 100644
--- a/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb
+++ b/meta-oe/recipes-extended/libreport/libreport_2.9.2.bb
@@ -26,7 +26,7 @@ REQUIRED_DISTRO_FEATURES = "systemd"
 
 inherit gettext autotools python3native pkgconfig
 
-RDEPENDS_${PN}-python3 += "${PN}"
+RDEPENDS_python3-libreport += "${PN}"
 
 do_patch[prefuncs] += "do_gen_version"
 do_gen_version() {
@@ -34,9 +34,9 @@ do_gen_version() {
     ./gen-version
 }
 
-PACKAGES += "python3-${PN}"
+PACKAGES += "python3-libreport"
 
 FILES_${PN} += "${datadir}/*"
 FILES_${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*/.debug"
-FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/*"
+FILES_python3-libreport = "${PYTHON_SITEPACKAGES_DIR}/*"
 

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


More information about the Openembedded-commits mailing list