All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dbus: remove uneeded RDEPENDS on ptest
@ 2013-03-21 23:39 Saul Wold
  2013-03-22 16:24 ` Richard Purdie
  0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2013-03-21 23:39 UTC (permalink / raw)
  To: openembedded-core

This solves a multiple provider issue along with a build failure with ptest enabled

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-core/dbus/dbus.inc | 2 --
 1 file changed, 2 deletions(-)

diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index affffbc..a1b56a5 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -9,8 +9,6 @@ X11DEPENDS = "virtual/libx11 libsm"
 DEPENDS = "expat virtual/libintl ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
 DEPENDS_class-native = "expat-native virtual/libintl-native"
 DEPENDS_class-nativesdk = "nativesdk-expat virtual/nativesdk-libintl"
-RDEPENDS_dbus = "${@base_contains('DISTRO_FEATURES', 'ptest', 'dbus-ptest', '', d)}"
-RDEPENDS_class-native = ""
 
 INC_PR = "r6"
 
-- 
1.8.0.2




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

* Re: [PATCH] dbus: remove uneeded RDEPENDS on ptest
  2013-03-21 23:39 [PATCH] dbus: remove uneeded RDEPENDS on ptest Saul Wold
@ 2013-03-22 16:24 ` Richard Purdie
  2013-03-25 14:24   ` [PATCH 1/2] dbus: Depend on dbus-ptest-ptest Björn Stenberg
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Purdie @ 2013-03-22 16:24 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

On Thu, 2013-03-21 at 16:39 -0700, Saul Wold wrote:
> This solves a multiple provider issue along with a build failure with ptest enabled
> 
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  meta/recipes-core/dbus/dbus.inc | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
> index affffbc..a1b56a5 100644
> --- a/meta/recipes-core/dbus/dbus.inc
> +++ b/meta/recipes-core/dbus/dbus.inc
> @@ -9,8 +9,6 @@ X11DEPENDS = "virtual/libx11 libsm"
>  DEPENDS = "expat virtual/libintl ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
>  DEPENDS_class-native = "expat-native virtual/libintl-native"
>  DEPENDS_class-nativesdk = "nativesdk-expat virtual/nativesdk-libintl"
> -RDEPENDS_dbus = "${@base_contains('DISTRO_FEATURES', 'ptest', 'dbus-ptest', '', d)}"
> -RDEPENDS_class-native = ""
>  
>  INC_PR = "r6"

We need to fix this but the idea was to trigger a dependency on
dbus-ptest being built, if dbus was built...

Cheers,

Richard





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

* [PATCH 1/2] dbus: Depend on dbus-ptest-ptest
  2013-03-22 16:24 ` Richard Purdie
@ 2013-03-25 14:24   ` Björn Stenberg
  2013-03-25 14:26     ` Björn Stenberg
  0 siblings, 1 reply; 4+ messages in thread
From: Björn Stenberg @ 2013-03-25 14:24 UTC (permalink / raw)
  To: openembedded-core

The dbus-ptest recipe doesn't produce an output package called
dbus-ptest. What we are interested in is actually the dbus-ptest-ptest
package.

Signed-off-by: Björn Stenberg <bjst@enea.com>
---
 meta/recipes-core/dbus/dbus.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc
index affffbc..50c102f 100644
--- a/meta/recipes-core/dbus/dbus.inc
+++ b/meta/recipes-core/dbus/dbus.inc
@@ -9,7 +9,7 @@ X11DEPENDS = "virtual/libx11 libsm"
 DEPENDS = "expat virtual/libintl ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
 DEPENDS_class-native = "expat-native virtual/libintl-native"
 DEPENDS_class-nativesdk = "nativesdk-expat virtual/nativesdk-libintl"
-RDEPENDS_dbus = "${@base_contains('DISTRO_FEATURES', 'ptest', 'dbus-ptest', '', d)}"
+RDEPENDS_dbus = "${@base_contains('DISTRO_FEATURES', 'ptest', 'dbus-ptest-ptest', '', d)}"
 RDEPENDS_class-native = ""
 
 INC_PR = "r6"
-- 
1.7.5.4




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

* Re: [PATCH 1/2] dbus: Depend on dbus-ptest-ptest
  2013-03-25 14:24   ` [PATCH 1/2] dbus: Depend on dbus-ptest-ptest Björn Stenberg
@ 2013-03-25 14:26     ` Björn Stenberg
  0 siblings, 0 replies; 4+ messages in thread
From: Björn Stenberg @ 2013-03-25 14:26 UTC (permalink / raw)
  To: openembedded-core

(The subject was a mistake. Parent is the only patch.)

-- 
Björn



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

end of thread, other threads:[~2013-03-25 14:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-21 23:39 [PATCH] dbus: remove uneeded RDEPENDS on ptest Saul Wold
2013-03-22 16:24 ` Richard Purdie
2013-03-25 14:24   ` [PATCH 1/2] dbus: Depend on dbus-ptest-ptest Björn Stenberg
2013-03-25 14:26     ` Björn Stenberg

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.