Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2][PULL] Multilib: Fix bug 1340
@ 2011-08-08  7:35 Dongxiao Xu
  2011-08-08  7:35 ` [PATCH 1/2] gnome-doc-utils: Avoid RDEPENDS on bash in native case Dongxiao Xu
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Dongxiao Xu @ 2011-08-08  7:35 UTC (permalink / raw)
  To: openembedded-core

Hi Richard,

The following two commits fix the issue that, some normal packages are
built out when building pure multilib image "lib32-core-image-sato".

Please help to review and pull.

[YOCTO #1340]

The following changes since commit 7a278238d9b08e0315e92d386282cb488cc0c7b4:

  bitbake.conf/powerpc64: Set baselib to 'lib64' for ppc64 (2011-08-05 17:48:23 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib dxu4/ml2
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/ml2

Dongxiao Xu (2):
  gnome-doc-utils: Avoid RDEPENDS on bash in native case.
  module-init-tools-cross: Clean the RDEPENDS value

 meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    1 +
 .../module-init-tools-cross_3.16.bb                |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)




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

* [PATCH 1/2] gnome-doc-utils: Avoid RDEPENDS on bash in native case.
  2011-08-08  7:35 [PATCH 0/2][PULL] Multilib: Fix bug 1340 Dongxiao Xu
@ 2011-08-08  7:35 ` Dongxiao Xu
  2011-08-08  7:35 ` [PATCH 2/2] module-init-tools-cross: Clean the RDEPENDS value Dongxiao Xu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Dongxiao Xu @ 2011-08-08  7:35 UTC (permalink / raw)
  To: openembedded-core

gnome-doc-utils-native should not RDEPENDS on bash, thus add RDEPENDS
override to fix the issue.

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
---
 meta/recipes-gnome/gnome/gnome-doc-utils.inc |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
index bd7c615..7c28eab 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
@@ -16,5 +16,6 @@ do_install_append() {
 FILES_${PN} += "${datadir}/xml* ${PYTHON_SITEPACKAGES_DIR}/*"
 
 RDEPENDS_${PN} = "bash"
+RDEPENDS_${PN}_virtclass-native = ""
 
 BBCLASSEXTEND = "native"
-- 
1.7.1




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

* [PATCH 2/2] module-init-tools-cross: Clean the RDEPENDS value
  2011-08-08  7:35 [PATCH 0/2][PULL] Multilib: Fix bug 1340 Dongxiao Xu
  2011-08-08  7:35 ` [PATCH 1/2] gnome-doc-utils: Avoid RDEPENDS on bash in native case Dongxiao Xu
@ 2011-08-08  7:35 ` Dongxiao Xu
  2011-08-09 14:16 ` [PATCH 0/2][PULL] Multilib: Fix bug 1340 Richard Purdie
  2011-08-11 17:46 ` Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Dongxiao Xu @ 2011-08-08  7:35 UTC (permalink / raw)
  To: openembedded-core

cross recipes should not RDEPENDS on any package. Cross recipe has no
"PACKAGES" define, thus clean RDEPENDS_${PN} value to ensure correctness
in multilib.

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
---
 .../module-init-tools-cross_3.16.bb                |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-kernel/module-init-tools/module-init-tools-cross_3.16.bb b/meta/recipes-kernel/module-init-tools/module-init-tools-cross_3.16.bb
index a6c5d21..dee163d 100644
--- a/meta/recipes-kernel/module-init-tools/module-init-tools-cross_3.16.bb
+++ b/meta/recipes-kernel/module-init-tools/module-init-tools-cross_3.16.bb
@@ -2,6 +2,7 @@ require module-init-tools.inc
 PR = "r0"
 inherit cross
 PROVIDES += "virtual/${TARGET_PREFIX}depmod"
+RDEPENDS_${PN} = ""
 
 SRC_URI[md5sum] = "bc44832c6e41707b8447e2847d2019f5"
 SRC_URI[sha256sum] = "e1f2cdcae64a8effc25e545a5e0bdaf312f816ebbcd0916e4e87450755fab64b"
-- 
1.7.1




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

* Re: [PATCH 0/2][PULL] Multilib: Fix bug 1340
  2011-08-08  7:35 [PATCH 0/2][PULL] Multilib: Fix bug 1340 Dongxiao Xu
  2011-08-08  7:35 ` [PATCH 1/2] gnome-doc-utils: Avoid RDEPENDS on bash in native case Dongxiao Xu
  2011-08-08  7:35 ` [PATCH 2/2] module-init-tools-cross: Clean the RDEPENDS value Dongxiao Xu
@ 2011-08-09 14:16 ` Richard Purdie
  2011-08-11 17:46 ` Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2011-08-09 14:16 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, 2011-08-08 at 15:35 +0800, Dongxiao Xu wrote:
> Hi Richard,
> 
> The following two commits fix the issue that, some normal packages are
> built out when building pure multilib image "lib32-core-image-sato".
> 
> Please help to review and pull.
> 
> [YOCTO #1340]
> 
> The following changes since commit 7a278238d9b08e0315e92d386282cb488cc0c7b4:
> 
>   bitbake.conf/powerpc64: Set baselib to 'lib64' for ppc64 (2011-08-05 17:48:23 +0100)
> 
> are available in the git repository at:
>   git://git.pokylinux.org/poky-contrib dxu4/ml2
>   http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/ml2
> 
> Dongxiao Xu (2):
>   gnome-doc-utils: Avoid RDEPENDS on bash in native case.
>   module-init-tools-cross: Clean the RDEPENDS value

Merged to master, thanks.

Richard




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

* Re: [PATCH 0/2][PULL] Multilib: Fix bug 1340
  2011-08-08  7:35 [PATCH 0/2][PULL] Multilib: Fix bug 1340 Dongxiao Xu
                   ` (2 preceding siblings ...)
  2011-08-09 14:16 ` [PATCH 0/2][PULL] Multilib: Fix bug 1340 Richard Purdie
@ 2011-08-11 17:46 ` Saul Wold
  3 siblings, 0 replies; 5+ messages in thread
From: Saul Wold @ 2011-08-11 17:46 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 08/08/2011 12:35 AM, Dongxiao Xu wrote:
> Hi Richard,
>
> The following two commits fix the issue that, some normal packages are
> built out when building pure multilib image "lib32-core-image-sato".
>
> Please help to review and pull.
>
> [YOCTO #1340]
>
In the future, please include this Bug Fix ID in the commit message 
itself, not in the Header. This way when someone looks at the actual 
commit log we can find the bug info.

Thanks
	Sau!

> The following changes since commit 7a278238d9b08e0315e92d386282cb488cc0c7b4:
>
>    bitbake.conf/powerpc64: Set baselib to 'lib64' for ppc64 (2011-08-05 17:48:23 +0100)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib dxu4/ml2
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=dxu4/ml2
>
> Dongxiao Xu (2):
>    gnome-doc-utils: Avoid RDEPENDS on bash in native case.
>    module-init-tools-cross: Clean the RDEPENDS value
>
>   meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    1 +
>   .../module-init-tools-cross_3.16.bb                |    1 +
>   2 files changed, 2 insertions(+), 0 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>



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

end of thread, other threads:[~2011-08-11 17:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-08  7:35 [PATCH 0/2][PULL] Multilib: Fix bug 1340 Dongxiao Xu
2011-08-08  7:35 ` [PATCH 1/2] gnome-doc-utils: Avoid RDEPENDS on bash in native case Dongxiao Xu
2011-08-08  7:35 ` [PATCH 2/2] module-init-tools-cross: Clean the RDEPENDS value Dongxiao Xu
2011-08-09 14:16 ` [PATCH 0/2][PULL] Multilib: Fix bug 1340 Richard Purdie
2011-08-11 17:46 ` Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox