Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: "Patches and discussions about the oe-core layer"
	<openembedded-core@lists.openembedded.org>,
	 Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: poky@yoctoproject.org
Subject: Re: [PATCH 0/8] Numerous bug fixes
Date: Wed, 9 Mar 2011 01:29:37 +0000	[thread overview]
Message-ID: <201103090129.37429.paul.eggleton@linux.intel.com> (raw)
In-Reply-To: <1299610544.602.109.camel@rex>

[-- Attachment #1: Type: Text/Plain, Size: 412 bytes --]

On Tuesday 08 March 2011 18:55:44 Richard Purdie wrote:
> > Saul Wold (3):
> >   gst-plugins: Added hal to DEPENDS
> >   attr: Added ncurses to depends
> >   lsb-live image: add lsb-live and lsb-sdk-live image types
> 
> Merged. I'd like to drop the hal dependency if someone can send me a
> patch which disables it and everything works.

Patch attached to do this (against oe-core) .

Cheers,
Paul

[-- Attachment #2: 0001-gst-plugins-good-remove-dependency-on-hal.patch --]
[-- Type: text/x-patch, Size: 2102 bytes --]

From d6f52ebf89e8413f8e24bbc9ab58a0d0e5c45c09 Mon Sep 17 00:00:00 2001
From: Paul Eggleton <paul.eggleton@linux.intel.com>
Date: Wed, 9 Mar 2011 01:21:25 +0000
Subject: [PATCH] gst-plugins-good: remove dependency on hal

Disable hal usage at configure time to avoid dependency on hal (which is
deprecated). Only affects "halelements" which is of no use without hal.

Fixes [YOCTO #810] and reverts changes from c6b0c5720fa.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../gstreamer/gst-plugins-good_0.10.26.bb          |    4 ++--
 meta/recipes-multimedia/gstreamer/gst-plugins.inc  |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.26.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.26.bb
index 78b24fe..ac47ecf 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.26.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.26.bb
@@ -7,11 +7,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
 
 DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
 	    speex"
-PR = "r0"
+PR = "r1"
 
 inherit gettext
 
-EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --without-check"
+EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check"
 
 do_configure_prepend() {
 	# This m4 file contains nastiness which conflicts with libtool 2.2.2
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
index d1abd36..4edca95 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins.inc
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://gstreamer.freedesktop.org/"
 BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
 SECTION = "multimedia"
 PRIORITY = "optional"
-DEPENDS = "gstreamer hal"
+DEPENDS = "gstreamer"
 
 inherit autotools pkgconfig
 
-- 
1.7.1


  reply	other threads:[~2011-03-09  1:33 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-08  0:29 [PATCH 0/8] Numerous bug fixes Saul Wold
2011-03-08  0:29 ` [PATCH 1/8] gst-plugins: Added hal to DEPENDS Saul Wold
2011-03-08  0:29 ` [PATCH 2/8] attr: Added ncurses to depends Saul Wold
2011-03-08 18:25   ` Khem Raj
2011-03-08  0:29 ` [PATCH 3/8] lsb-live image: add lsb-live and lsb-sdk-live image types Saul Wold
2011-03-08  0:29 ` [PATCH 4/8] adt: Update to svn r596 to fix symbolic link issues Saul Wold
2011-03-08  0:29 ` [PATCH 6/8] util-macros: fix DEPENDS in the case of native/nativesdk Saul Wold
2011-03-08 18:47   ` Joshua Lock
2011-03-08  0:29 ` [PATCH 5/8] connman: add xuser to the dbus permission list Saul Wold
2011-03-08 18:27   ` [poky] " Khem Raj
2011-03-08  0:29 ` [PATCH 7/8] libgpg-error: extend to nativesdk to catch up with metadata changes Saul Wold
2011-03-08  0:29 ` [PATCH 8/8] gcc-runtime: fix LSB library checks for libstdc++.so.6 Saul Wold
2011-03-08  1:16   ` [poky] " Khem Raj
2011-03-08 18:55 ` [PATCH 0/8] Numerous bug fixes Richard Purdie
2011-03-09  1:29   ` Paul Eggleton [this message]
2011-03-09  4:55     ` [poky] " Khem Raj
2011-03-09  7:48     ` Koen Kooi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201103090129.37429.paul.eggleton@linux.intel.com \
    --to=paul.eggleton@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=poky@yoctoproject.org \
    --cc=richard.purdie@linuxfoundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox