Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH v2 0/1] Fix for OpenSuse build failure
@ 2011-07-21  7:15 Saul Wold
  2011-07-21  7:15 ` [PATCH v2 1/1] gettext: Add depends to gettext to avoid host contamination Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2011-07-21  7:15 UTC (permalink / raw)
  To: openembedded-core

Richard,

This fixes a problem with OpenSuse host contamination.
Adds one depends in the initial depends chain for gettext-native.

Thanks
Sau!

The following changes since commit 0d03800caffc2341b74190d38f7a372223c89f4c:

  lsbsetup_1.0.bb: Change the hardcoded /usr/lib to support multilib (2011-07-20 15:43:43 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/fix
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix

Saul Wold (1):
  gettext: Add depends to gettext to avoid host contamination

 meta/recipes-core/gettext/gettext_0.18.1.1.bb |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

-- 
1.7.3.4




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

* [PATCH v2 1/1] gettext: Add depends to gettext to avoid host contamination
  2011-07-21  7:15 [PATCH v2 0/1] Fix for OpenSuse build failure Saul Wold
@ 2011-07-21  7:15 ` Saul Wold
  2012-09-25 14:25   ` Phil Blundell
  0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2011-07-21  7:15 UTC (permalink / raw)
  To: openembedded-core

[YOCTO #1242]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-core/gettext/gettext_0.18.1.1.bb |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-core/gettext/gettext_0.18.1.1.bb b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
index 0b11a90..cc0129f 100644
--- a/meta/recipes-core/gettext/gettext_0.18.1.1.bb
+++ b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
@@ -5,9 +5,9 @@ SECTION = "libs"
 LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
-PR = "r1"
-DEPENDS = "gettext-native virtual/libiconv ncurses expat"
-DEPENDS_virtclass-native = ""
+PR = "r2"
+DEPENDS = "libxml2-native gettext-native virtual/libiconv ncurses expat"
+DEPENDS_virtclass-native = "libxml2-native"
 PROVIDES = "virtual/libintl virtual/gettext"
 PROVIDES_virtclass-native = ""
 CONFLICTS_${PN} = "proxy-libintl"
-- 
1.7.3.4




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

* Re: [PATCH v2 1/1] gettext: Add depends to gettext to avoid host contamination
  2011-07-21  7:15 ` [PATCH v2 1/1] gettext: Add depends to gettext to avoid host contamination Saul Wold
@ 2012-09-25 14:25   ` Phil Blundell
  2012-09-26 11:01     ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Phil Blundell @ 2012-09-25 14:25 UTC (permalink / raw)
  To: Saul Wold; +Cc: Patches and discussions about the oe-core layer

Can you clarify what exactly is the host contamination issue here?  I
don't quite understand why it's appropriate for the target gettext to be
depending on libxml2-native (which it presumably can't be linking
against).  Also, since gettext-native is configured --with-included-xml,
it doesn't seem as though that one is going to be using libxml2-native
in any meaningful sense either.

thanks

p.

On Thu, 2011-07-21 at 00:15 -0700, Saul Wold wrote:
> [YOCTO #1242]
> 
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  meta/recipes-core/gettext/gettext_0.18.1.1.bb |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/meta/recipes-core/gettext/gettext_0.18.1.1.bb b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
> index 0b11a90..cc0129f 100644
> --- a/meta/recipes-core/gettext/gettext_0.18.1.1.bb
> +++ b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
> @@ -5,9 +5,9 @@ SECTION = "libs"
>  LICENSE = "GPLv3"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
>  
> -PR = "r1"
> -DEPENDS = "gettext-native virtual/libiconv ncurses expat"
> -DEPENDS_virtclass-native = ""
> +PR = "r2"
> +DEPENDS = "libxml2-native gettext-native virtual/libiconv ncurses expat"
> +DEPENDS_virtclass-native = "libxml2-native"
>  PROVIDES = "virtual/libintl virtual/gettext"
>  PROVIDES_virtclass-native = ""
>  CONFLICTS_${PN} = "proxy-libintl"





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

* Re: [PATCH v2 1/1] gettext: Add depends to gettext to avoid host contamination
  2012-09-25 14:25   ` Phil Blundell
@ 2012-09-26 11:01     ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2012-09-26 11:01 UTC (permalink / raw)
  To: Phil Blundell; +Cc: oe-core layer, Patches

On Tue, 2012-09-25 at 15:25 +0100, Phil Blundell wrote:
> Can you clarify what exactly is the host contamination issue here?  I
> don't quite understand why it's appropriate for the target gettext to be
> depending on libxml2-native (which it presumably can't be linking
> against).  Also, since gettext-native is configured --with-included-xml,
> it doesn't seem as though that one is going to be using libxml2-native
> in any meaningful sense either.

I tried to unravel this a bit. I think:

http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=e5e6e761d15e42d94836a2153eda13bdbc4f915e

which added the --with-included-xml came later and should have removed
the DEPENDS but didn't.

(the earlier commit being
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=a0abef4533337faeb2fd991d7ab67f0a94f59568)

So this should be ok to go in and does some nice dependency unravelling.

Cheers,

Richard




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

end of thread, other threads:[~2012-09-26 11:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-21  7:15 [PATCH v2 0/1] Fix for OpenSuse build failure Saul Wold
2011-07-21  7:15 ` [PATCH v2 1/1] gettext: Add depends to gettext to avoid host contamination Saul Wold
2012-09-25 14:25   ` Phil Blundell
2012-09-26 11:01     ` Richard Purdie

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