Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Avoid build-deps QA warnings
@ 2014-08-13 17:46 Peter Kjellerstedt
  2014-08-13 17:46 ` [PATCH 1/2] gdb: Add a dependency on zlib Peter Kjellerstedt
  2014-08-13 17:46 ` [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev Peter Kjellerstedt
  0 siblings, 2 replies; 6+ messages in thread
From: Peter Kjellerstedt @ 2014-08-13 17:46 UTC (permalink / raw)
  To: openembedded-core

These changes avoids build-deps QA warnings for two recipes.

//Peter

The following changes since commit 6882d2d9993c8655a292c93e84ea01b4738a700d:

  yocto-project-qs, ref-manual: Added 'socat' package to essentials. (2014-08-12 13:50:32 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib pkj/build-deps
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=pkj/build-deps

Peter Kjellerstedt (2):
  gdb: Add a dependency on zlib
  gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev

 meta/recipes-devtools/gdb/gdb-common.inc                        | 2 +-
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

-- 
1.9.0



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

* [PATCH 1/2] gdb: Add a dependency on zlib
  2014-08-13 17:46 [PATCH 0/2] Avoid build-deps QA warnings Peter Kjellerstedt
@ 2014-08-13 17:46 ` Peter Kjellerstedt
  2014-08-13 17:46 ` [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev Peter Kjellerstedt
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Kjellerstedt @ 2014-08-13 17:46 UTC (permalink / raw)
  To: openembedded-core

This solves the following warning:

WARNING: QA Issue: gdb rdepends on zlib, but it isn't a build
dependency? [build-deps]

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/recipes-devtools/gdb/gdb-common.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc
index b4d4880..599b405 100644
--- a/meta/recipes-devtools/gdb/gdb-common.inc
+++ b/meta/recipes-devtools/gdb/gdb-common.inc
@@ -2,7 +2,7 @@ SUMMARY = "GNU debugger"
 HOMEPAGE = "http://www.gnu.org/software/gdb/"
 LICENSE = "GPLv3+"
 SECTION = "devel"
-DEPENDS = "expat ncurses readline ${LTTNGUST}"
+DEPENDS = "expat zlib ncurses readline ${LTTNGUST}"
 
 LTTNGUST = "lttng-ust"
 LTTNGUST_aarch64 = ""
-- 
1.9.0



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

* [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev
  2014-08-13 17:46 [PATCH 0/2] Avoid build-deps QA warnings Peter Kjellerstedt
  2014-08-13 17:46 ` [PATCH 1/2] gdb: Add a dependency on zlib Peter Kjellerstedt
@ 2014-08-13 17:46 ` Peter Kjellerstedt
  2014-08-14 11:21   ` Burton, Ross
  1 sibling, 1 reply; 6+ messages in thread
From: Peter Kjellerstedt @ 2014-08-13 17:46 UTC (permalink / raw)
  To: openembedded-core

This solves these floating dependencies:

WARNING: QA Issue: gstreamer1.0-plugins-good-video4linux2 rdepends on
libudev, but it isn't a build dependency? [build-deps]
WARNING: QA Issue: gstreamer1.0-plugins-good-video4linux2 rdepends on
libgudev-1.0, but it isn't a build dependency? [build-deps]

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
---
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc
index 223e790..b33ab2b 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc
@@ -11,7 +11,7 @@ inherit gettext
 PACKAGECONFIG ??= " \
     ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
     ${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '', d)} \
-    orc cairo flac gdk-pixbuf jpeg libpng soup speex taglib \
+    orc cairo flac gdk-pixbuf gudev jpeg libpng soup speex taglib \
     "
 
 X11DEPENDS = "virtual/libx11 libsm libxrender libxfixes libxdamage"
@@ -22,6 +22,7 @@ PACKAGECONFIG[pulseaudio] = "--enable-pulse,--disable-pulse,pulseaudio"
 PACKAGECONFIG[cairo]      = "--enable-cairo,--disable-cairo,cairo"
 PACKAGECONFIG[flac]       = "--enable-flac,--disable-flac,flac"
 PACKAGECONFIG[gdk-pixbuf] = "--enable-gdk_pixbuf,--disable-gdk_pixbuf,gdk-pixbuf"
+PACKAGECONFIG[gudev]      = "--with-gudev,--without-gudev,udev"
 PACKAGECONFIG[jack]       = "--enable-jack,--disable-jack,jack"
 PACKAGECONFIG[jpeg]       = "--enable-jpeg,--disable-jpeg,jpeg"
 PACKAGECONFIG[libpng]     = "--enable-libpng,--disable-libpng,libpng"
-- 
1.9.0



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

* Re: [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev
  2014-08-13 17:46 ` [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev Peter Kjellerstedt
@ 2014-08-14 11:21   ` Burton, Ross
  2014-08-14 11:27     ` Koen Kooi
  0 siblings, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2014-08-14 11:21 UTC (permalink / raw)
  To: Peter Kjellerstedt; +Cc: OE-core

On 13 August 2014 18:46, Peter Kjellerstedt <peter.kjellerstedt@axis.com> wrote:
> +PACKAGECONFIG[gudev]      = "--with-gudev,--without-gudev,udev"

Don't you need to depend on gudev here aswell?

Ross


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

* Re: [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev
  2014-08-14 11:21   ` Burton, Ross
@ 2014-08-14 11:27     ` Koen Kooi
  2014-08-14 11:44       ` Burton, Ross
  0 siblings, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2014-08-14 11:27 UTC (permalink / raw)
  To: Burton, Ross; +Cc: Peter Kjellerstedt, OE-core


Op 14 aug. 2014, om 13:21 heeft Burton, Ross <ross.burton@intel.com> het volgende geschreven:

> On 13 August 2014 18:46, Peter Kjellerstedt <peter.kjellerstedt@axis.com> wrote:
>> +PACKAGECONFIG[gudev]      = "--with-gudev,--without-gudev,udev"
> 
> Don't you need to depend on gudev here aswell?

gudev is part of udev, right? And as a shlib it will get picked up as RDEPEND automatically[1].

regards,

Koen

[1] Unless gst is stupid and dlopen()s it.

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

* Re: [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev
  2014-08-14 11:27     ` Koen Kooi
@ 2014-08-14 11:44       ` Burton, Ross
  0 siblings, 0 replies; 6+ messages in thread
From: Burton, Ross @ 2014-08-14 11:44 UTC (permalink / raw)
  To: Koen Kooi; +Cc: Peter Kjellerstedt, OE-core

On 14 August 2014 12:27, Koen Kooi <koen@dominion.thruhere.net> wrote:
> gudev is part of udev, right? And as a shlib it will get picked up as RDEPEND automatically[1].

Yep, brainfart my end - confused it with another library.

Ross


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

end of thread, other threads:[~2014-08-14 11:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-13 17:46 [PATCH 0/2] Avoid build-deps QA warnings Peter Kjellerstedt
2014-08-13 17:46 ` [PATCH 1/2] gdb: Add a dependency on zlib Peter Kjellerstedt
2014-08-13 17:46 ` [PATCH 2/2] gstreamer1.0-plugins-good: Add a PACKAGECONFIG for udev Peter Kjellerstedt
2014-08-14 11:21   ` Burton, Ross
2014-08-14 11:27     ` Koen Kooi
2014-08-14 11:44       ` Burton, Ross

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