* [PATCH] Add bash as RDEPENDS for gstreamer
@ 2011-09-30 1:56 Matthew McClintock
2011-09-30 7:08 ` Martin Jansa
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Matthew McClintock @ 2011-09-30 1:56 UTC (permalink / raw)
To: openembedded-core
This fixes the following build issue:
| error: Failed dependencies:
| /bin/sh is needed by gstreamer-0.10.32-r1.ppce500v2
Signed-off-by: Matthew McClintock <msm@freescale.com>
---
Not sure how to say we just depend on /bin/sh instead of requiring
the full blown version of bash
.../gstreamer/gstreamer_0.10.32.bb | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb
index 1713755..63ed7cb 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb
@@ -8,8 +8,9 @@ LICENSE = "LGPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
file://gst/gst.h;beginline=1;endline=21;md5=8e5fe5e87d33a04479fde862e238eaa4"
DEPENDS = "glib-2.0 libxml2 bison-native flex-native"
+RDEPENDS = "bash"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \
file://check_fix.patch \
--
1.7.6.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] Add bash as RDEPENDS for gstreamer
2011-09-30 1:56 [PATCH] Add bash as RDEPENDS for gstreamer Matthew McClintock
@ 2011-09-30 7:08 ` Martin Jansa
2011-09-30 7:49 ` Phil Blundell
2011-09-30 9:20 ` Richard Purdie
2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-09-30 7:08 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 1679 bytes --]
On Thu, Sep 29, 2011 at 08:56:17PM -0500, Matthew McClintock wrote:
> This fixes the following build issue:
>
> | error: Failed dependencies:
> | /bin/sh is needed by gstreamer-0.10.32-r1.ppce500v2
>
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
> Not sure how to say we just depend on /bin/sh instead of requiring
> the full blown version of bash
>
> .../gstreamer/gstreamer_0.10.32.bb | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb
> index 1713755..63ed7cb 100644
> --- a/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb
> +++ b/meta/recipes-multimedia/gstreamer/gstreamer_0.10.32.bb
> @@ -8,8 +8,9 @@ LICENSE = "LGPLv2+"
> LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \
> file://gst/gst.h;beginline=1;endline=21;md5=8e5fe5e87d33a04479fde862e238eaa4"
> DEPENDS = "glib-2.0 libxml2 bison-native flex-native"
> +RDEPENDS = "bash"
This should be RDEPENDS_${PN} at least, but are you sure it's needed by
target package? not just for build?
Regards,
>
> -PR = "r1"
> +PR = "r2"
>
> SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \
> file://check_fix.patch \
> --
> 1.7.6.1
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Add bash as RDEPENDS for gstreamer
2011-09-30 1:56 [PATCH] Add bash as RDEPENDS for gstreamer Matthew McClintock
2011-09-30 7:08 ` Martin Jansa
@ 2011-09-30 7:49 ` Phil Blundell
2011-09-30 9:20 ` Richard Purdie
2 siblings, 0 replies; 7+ messages in thread
From: Phil Blundell @ 2011-09-30 7:49 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Thu, 2011-09-29 at 20:56 -0500, Matthew McClintock wrote:
> Not sure how to say we just depend on /bin/sh instead of requiring
> the full blown version of bash
You can invent a virtual-bourne-shell (if one doesn't already exist),
have bash and busybox (and whatever else) provide it, then make
gstreamer depend on that.
p.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Add bash as RDEPENDS for gstreamer
2011-09-30 1:56 [PATCH] Add bash as RDEPENDS for gstreamer Matthew McClintock
2011-09-30 7:08 ` Martin Jansa
2011-09-30 7:49 ` Phil Blundell
@ 2011-09-30 9:20 ` Richard Purdie
2011-09-30 15:48 ` McClintock Matthew-B29882
2 siblings, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2011-09-30 9:20 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Thu, 2011-09-29 at 20:56 -0500, Matthew McClintock wrote:
> This fixes the following build issue:
>
> | error: Failed dependencies:
> | /bin/sh is needed by gstreamer-0.10.32-r1.ppce500v2
>
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
> Not sure how to say we just depend on /bin/sh instead of requiring
> the full blown version of bash
What image target are you building? I'm having trouble visualising an
image that doesn't include bash or busybox and if either of these are
present, that dependency should be met...
If this is a toolchain/SDK, there were some recent tweaks which address
this problem.
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Add bash as RDEPENDS for gstreamer
2011-09-30 9:20 ` Richard Purdie
@ 2011-09-30 15:48 ` McClintock Matthew-B29882
2011-09-30 16:30 ` McClintock Matthew-B29882
0 siblings, 1 reply; 7+ messages in thread
From: McClintock Matthew-B29882 @ 2011-09-30 15:48 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Fri, Sep 30, 2011 at 4:20 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> What image target are you building? I'm having trouble visualising an
> image that doesn't include bash or busybox and if either of these are
> present, that dependency should be met...
>
> If this is a toolchain/SDK, there were some recent tweaks which address
> this problem.
It was meta-toolchain-sdk, please drop this patch if that is the case.
-M
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Add bash as RDEPENDS for gstreamer
2011-09-30 15:48 ` McClintock Matthew-B29882
@ 2011-09-30 16:30 ` McClintock Matthew-B29882
2011-09-30 22:25 ` Richard Purdie
0 siblings, 1 reply; 7+ messages in thread
From: McClintock Matthew-B29882 @ 2011-09-30 16:30 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Fri, Sep 30, 2011 at 10:47 AM, Matthew McClintock <msm@freescale.com> wrote:
> On Fri, Sep 30, 2011 at 4:20 AM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
>> What image target are you building? I'm having trouble visualising an
>> image that doesn't include bash or busybox and if either of these are
>> present, that dependency should be met...
>>
>> If this is a toolchain/SDK, there were some recent tweaks which address
>> this problem.
>
> It was meta-toolchain-sdk, please drop this patch if that is the case.
FYI, I've been testing this on the 'edison' branch. Seems like this
should be addressed - assuming someone else can reproduce this
issue...
Any comments?
-M
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Add bash as RDEPENDS for gstreamer
2011-09-30 16:30 ` McClintock Matthew-B29882
@ 2011-09-30 22:25 ` Richard Purdie
0 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2011-09-30 22:25 UTC (permalink / raw)
To: McClintock Matthew-B29882,
Patches and discussions about the oe-core layer
On Fri, 2011-09-30 at 16:30 +0000, McClintock Matthew-B29882 wrote:
> On Fri, Sep 30, 2011 at 10:47 AM, Matthew McClintock <msm@freescale.com> wrote:
> > On Fri, Sep 30, 2011 at 4:20 AM, Richard Purdie
> > <richard.purdie@linuxfoundation.org> wrote:
> >> What image target are you building? I'm having trouble visualising an
> >> image that doesn't include bash or busybox and if either of these are
> >> present, that dependency should be met...
> >>
> >> If this is a toolchain/SDK, there were some recent tweaks which address
> >> this problem.
> >
> > It was meta-toolchain-sdk, please drop this patch if that is the case.
>
> FYI, I've been testing this on the 'edison' branch. Seems like this
> should be addressed - assuming someone else can reproduce this
> issue...
>
> Any comments?
I think we were missing a fix, I've sent out a patch which I think
should resolve this once and for all.
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-09-30 22:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-30 1:56 [PATCH] Add bash as RDEPENDS for gstreamer Matthew McClintock
2011-09-30 7:08 ` Martin Jansa
2011-09-30 7:49 ` Phil Blundell
2011-09-30 9:20 ` Richard Purdie
2011-09-30 15:48 ` McClintock Matthew-B29882
2011-09-30 16:30 ` McClintock Matthew-B29882
2011-09-30 22:25 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox