[oe-commits] [meta-openembedded] 03/36: libpwquality: fix Nothing RPROVIDES 'lib32-python3-libpwquality'

git at git.openembedded.org git at git.openembedded.org
Thu Feb 1 16:01:21 UTC 2018


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

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

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

    libpwquality: fix Nothing RPROVIDES 'lib32-python3-libpwquality'
    
    While multilib enabled, if other recipe RDEPENDS python3-libpwquality,
    it failed with:
    ...
    ERROR: Nothing RPROVIDES 'lib32-python3-libpwquality'
    ...
    
    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 3c73befc036fed4506c9bb8adc6c615dd2d2999c)
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-extended/libpwquality/libpwquality_1.4.0.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.0.bb b/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.0.bb
index daf6604..2c96063 100644
--- a/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.0.bb
+++ b/meta-oe/recipes-extended/libpwquality/libpwquality_1.4.0.bb
@@ -15,7 +15,7 @@ SRC_URI[sha256sum] = "1de6ff046cf2172d265a2cb6f8da439d894f3e4e8157b056c515515232
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 DEPENDS = "cracklib virtual/gettext python3"
-RDEPENDS_python3-${PN} = "${PN}"
+RDEPENDS_python3-libpwquality = "${PN}"
 
 inherit autotools python3native gettext
 
@@ -36,7 +36,7 @@ EXTRA_OECONF += "--with-python-rev=${PYTHON_BASEVERSION} \
 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}"
 PACKAGECONFIG[pam] = "--enable-pam, --disable-pam, libpam"
 
-PACKAGES += "python3-${PN} python3-${PN}-dbg"
+PACKAGES += "python3-libpwquality python3-libpwquality-dbg"
 FILES_${PN} += "${libdir}/security/pam_pwquality.so"
 FILES_${PN}-dbg += "${libdir}/security/.debug"
 FILES_${PN}-staticdev += "${libdir}/security/pam_pwquality.a"

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


More information about the Openembedded-commits mailing list