All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/3] fix "Nothing RPROVIDES" when multilib enabled
@ 2019-07-11  5:52 changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 1/3] volume-key: " changqing.li
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: changqing.li @ 2019-07-11  5:52 UTC (permalink / raw)
  To: openembedded-devel

From: Changqing Li <changqing.li@windriver.com>

These 3 recipe have similar problem, when multilib is enabled,
Eg, for satyr, PN is expaned to lib32-satyr, so packages will
name like lib32-python3-lib32-satyr, fixed by use BPN.


Changqing Li (3):
  volume-key: fix "Nothing RPROVIDES" when multilib enabled
  isomd5sum: fix "Nothing RPROVIDES" when multilib enabled
  satyr: fix "Nothing RPROVIDES" when multilib enabled

 meta-oe/recipes-extended/isomd5sum/isomd5sum_1.2.3.bb    | 8 ++++----
 meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb | 7 +++----
 meta-oe/recipes-support/satyr/satyr_0.27.bb              | 4 ++--
 3 files changed, 9 insertions(+), 10 deletions(-)

-- 
2.7.4



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [meta-oe][PATCH 1/3] volume-key: fix "Nothing RPROVIDES" when multilib enabled
  2019-07-11  5:52 [meta-oe][PATCH 0/3] fix "Nothing RPROVIDES" when multilib enabled changqing.li
@ 2019-07-11  5:52 ` changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 2/3] isomd5sum: " changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 3/3] satyr: " changqing.li
  2 siblings, 0 replies; 4+ messages in thread
From: changqing.li @ 2019-07-11  5:52 UTC (permalink / raw)
  To: openembedded-devel

From: Changqing Li <changqing.li@windriver.com>

Multilib enabled, and add IMAGE_INSTALL_append = " python3-volume-key"
in local.conf

fix below problem:
ERROR: Required build target 'lib32-core-image-minimal' has no buildable providers.
Missing or unbuildable dependency chain was: ['lib32-core-image-minimal', 'lib32-python3-volume-key']

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb b/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb
index 398ca5c..3103748 100644
--- a/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb
+++ b/meta-oe/recipes-extended/volume_key/volume-key_0.3.12.bb
@@ -31,8 +31,7 @@ PACKAGECONFIG ??= "python3"
 PACKAGECONFIG[python] = "--with-python,--without-python,python,python"
 PACKAGECONFIG[python3] = "--with-python3,--without-python3,python3,python3"
 
-RDEPENDS_python3-${PN} += "${PN}"
-
-PACKAGES += "python3-${PN}"
-FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/*"
+RDEPENDS_python3-${BPN} += "${PN}"
 
+PACKAGES += "python3-${BPN}"
+FILES_python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/*"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [meta-oe][PATCH 2/3] isomd5sum: fix "Nothing RPROVIDES" when multilib enabled
  2019-07-11  5:52 [meta-oe][PATCH 0/3] fix "Nothing RPROVIDES" when multilib enabled changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 1/3] volume-key: " changqing.li
@ 2019-07-11  5:52 ` changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 3/3] satyr: " changqing.li
  2 siblings, 0 replies; 4+ messages in thread
From: changqing.li @ 2019-07-11  5:52 UTC (permalink / raw)
  To: openembedded-devel

From: Changqing Li <changqing.li@windriver.com>

Multilib enabled, and add IMAGE_INSTALL_append = " python3-isomd5sum"
in local.conf

fix below problem:
ERROR: Required build target 'lib32-core-image-minimal' has no buildable providers.
Missing or unbuildable dependency chain was: ['lib32-core-image-minimal', 'lib32-python3-isomd5sum']

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta-oe/recipes-extended/isomd5sum/isomd5sum_1.2.3.bb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-extended/isomd5sum/isomd5sum_1.2.3.bb b/meta-oe/recipes-extended/isomd5sum/isomd5sum_1.2.3.bb
index 83e8385..b7899a1 100644
--- a/meta-oe/recipes-extended/isomd5sum/isomd5sum_1.2.3.bb
+++ b/meta-oe/recipes-extended/isomd5sum/isomd5sum_1.2.3.bb
@@ -2,7 +2,7 @@ SUMMARY = "Tools for taking the MD5 sum of ISO images"
 DESCRIPTION = "Tools for taking the MD5 sum of ISO images"
 
 DEPENDS = "popt python3 openssl curl popt-native"
-RDEPENDS_${PN} = "openssl curl"
+RDEPENDS_${BPN} = "openssl curl"
 
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
@@ -25,11 +25,11 @@ do_install () {
     oe_runmake install
 }
 
-PACKAGES += "${PYTHON_PN}-${PN}"
+PACKAGES += "${PYTHON_PN}-${BPN}"
 
-RPROVIDES_${PN}-dbg += "${PYTHON_PN}-${PN}-dbg"
+RPROVIDES_${BPN}-dbg += "${PYTHON_PN}-${BPN}-dbg"
 
-FILES_${PYTHON_PN}-${PN} = "${PYTHON_SITEPACKAGES_DIR}/pyisomd5sum.so"
+FILES_${PYTHON_PN}-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/pyisomd5sum.so"
 
 SRCREV = "7860901f726f5d92689cb67243cc7f981f21f74b"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [meta-oe][PATCH 3/3] satyr: fix "Nothing RPROVIDES" when multilib enabled
  2019-07-11  5:52 [meta-oe][PATCH 0/3] fix "Nothing RPROVIDES" when multilib enabled changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 1/3] volume-key: " changqing.li
  2019-07-11  5:52 ` [meta-oe][PATCH 2/3] isomd5sum: " changqing.li
@ 2019-07-11  5:52 ` changqing.li
  2 siblings, 0 replies; 4+ messages in thread
From: changqing.li @ 2019-07-11  5:52 UTC (permalink / raw)
  To: openembedded-devel

From: Changqing Li <changqing.li@windriver.com>

Multilib enabled, and add IMAGE_INSTALL_append = " python3-satyr"
in local.conf

fix below problem:
ERROR: Required build target 'lib32-core-image-minimal' has no buildable providers.
Missing or unbuildable dependency chain was: ['lib32-core-image-minimal', 'lib32-python3-satyr']

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 meta-oe/recipes-support/satyr/satyr_0.27.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/satyr/satyr_0.27.bb b/meta-oe/recipes-support/satyr/satyr_0.27.bb
index 10dfc2b..cc07dcb 100644
--- a/meta-oe/recipes-support/satyr/satyr_0.27.bb
+++ b/meta-oe/recipes-support/satyr/satyr_0.27.bb
@@ -19,8 +19,8 @@ DEPENDS += " \
     gdb \
 "
 
-PACKAGES += "python3-${PN}"
-FILES_python3-${PN} = "${PYTHON_SITEPACKAGES_DIR}/${BPN}"
+PACKAGES += "python3-${BPN}"
+FILES_python3-${BPN} = "${PYTHON_SITEPACKAGES_DIR}/${BPN}"
 
 PACKAGECONFIG ??= "python3 rpm"
 PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python2"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-07-11  5:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-11  5:52 [meta-oe][PATCH 0/3] fix "Nothing RPROVIDES" when multilib enabled changqing.li
2019-07-11  5:52 ` [meta-oe][PATCH 1/3] volume-key: " changqing.li
2019-07-11  5:52 ` [meta-oe][PATCH 2/3] isomd5sum: " changqing.li
2019-07-11  5:52 ` [meta-oe][PATCH 3/3] satyr: " changqing.li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.