* [PATCH 0/2] 2 More Dependency Fixes for RC2
@ 2011-03-06 17:19 Saul Wold
2011-03-06 17:19 ` [PATCH 1/2] gst-plugins: Added hal to DEPENDS Saul Wold
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Saul Wold @ 2011-03-06 17:19 UTC (permalink / raw)
To: poky, openembedded-core
From: Saul Wold <sgw@linux.intel.com>
Fix more dependency issues
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: distro/oe-core
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=distro/oe-core
Thanks,
Saul Wold <sgw@linux.intel.com>
---
Saul Wold (2):
gst-plugins: Added hal to DEPENDS
attr: Added ncurses to depends
meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
meta/recipes-support/attr/attr.inc | 2 ++
2 files changed, 3 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/2] attr: Added ncurses to depends
2011-03-06 17:19 [PATCH 0/2] 2 More Dependency Fixes for RC2 Saul Wold
2011-03-06 17:19 ` [PATCH 1/2] gst-plugins: Added hal to DEPENDS Saul Wold
@ 2011-03-06 17:19 ` Saul Wold
2011-03-08 18:43 ` [OE-core] " Richard Purdie
2 siblings, 0 replies; 8+ messages in thread
From: Saul Wold @ 2011-03-06 17:19 UTC (permalink / raw)
To: poky, openembedded-core
From: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-support/attr/attr.inc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-support/attr/attr.inc b/meta/recipes-support/attr/attr.inc
index e9467d7..c110340 100644
--- a/meta/recipes-support/attr/attr.inc
+++ b/meta/recipes-support/attr/attr.inc
@@ -2,6 +2,8 @@ DESCRIPTION = "utilities for manipulating filesystem extended attributes"
HOMEPAGE = "http://savannah.nongnu.org/projects/attr/"
SECTION = "libs"
+DEPENDS = "ncurses"
+
LICENSE = "LGPLv2.1+ & GPLv2+"
LICENSE_${PN} = "GPLv2+"
LICENSE_lib${PN} = "LGPLv2.1+"
--
1.7.1.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 1/2] gst-plugins: Added hal to DEPENDS
2011-03-06 17:19 [PATCH 0/2] 2 More Dependency Fixes for RC2 Saul Wold
@ 2011-03-06 17:19 ` Saul Wold
2011-03-06 18:34 ` [poky] " Koen Kooi
2011-03-06 17:19 ` [PATCH 2/2] attr: Added ncurses to depends Saul Wold
2011-03-08 18:43 ` [OE-core] " Richard Purdie
2 siblings, 1 reply; 8+ messages in thread
From: Saul Wold @ 2011-03-06 17:19 UTC (permalink / raw)
To: poky, openembedded-core
From: Saul Wold <sgw@linux.intel.com>
Fixes [YOCTO #810]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
index 4edca95..d1abd36 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"
+DEPENDS = "gstreamer hal"
inherit autotools pkgconfig
--
1.7.1.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [poky] [PATCH 1/2] gst-plugins: Added hal to DEPENDS
2011-03-06 17:19 ` [PATCH 1/2] gst-plugins: Added hal to DEPENDS Saul Wold
@ 2011-03-06 18:34 ` Koen Kooi
2011-03-07 0:47 ` Tom Rini
0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2011-03-06 18:34 UTC (permalink / raw)
To: Saul Wold; +Cc: Patches and discussions about the oe-core layer
Op 6 mrt 2011, om 18:19 heeft Saul Wold het volgende geschreven:
> From: Saul Wold <sgw@linux.intel.com>
>
> Fixes [YOCTO #810]
>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
> meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
> index 4edca95..d1abd36 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"
> +DEPENDS = "gstreamer hal"
Since hal is being deprecated in favour of udev, do we really want to introduce it as a dependency instead of disabled it?
regards,
Koen
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [poky] [PATCH 1/2] gst-plugins: Added hal to DEPENDS
2011-03-06 18:34 ` [poky] " Koen Kooi
@ 2011-03-07 0:47 ` Tom Rini
2011-03-08 18:42 ` Richard Purdie
0 siblings, 1 reply; 8+ messages in thread
From: Tom Rini @ 2011-03-07 0:47 UTC (permalink / raw)
To: openembedded-core
On 03/06/2011 11:34 AM, Koen Kooi wrote:
>
> Op 6 mrt 2011, om 18:19 heeft Saul Wold het volgende geschreven:
>
>> From: Saul Wold<sgw@linux.intel.com>
>>
>> Fixes [YOCTO #810]
>>
>> Signed-off-by: Saul Wold<sgw@linux.intel.com>
>> ---
>> meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
>> index 4edca95..d1abd36 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"
>> +DEPENDS = "gstreamer hal"
>
> Since hal is being deprecated in favour of udev, do we really want to introduce it as a dependency instead of disabled it?
... and making sure the new set of magic works right.
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [poky] [PATCH 1/2] gst-plugins: Added hal to DEPENDS
2011-03-07 0:47 ` Tom Rini
@ 2011-03-08 18:42 ` Richard Purdie
0 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2011-03-08 18:42 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Sun, 2011-03-06 at 17:47 -0700, Tom Rini wrote:
> On 03/06/2011 11:34 AM, Koen Kooi wrote:
> >
> > Op 6 mrt 2011, om 18:19 heeft Saul Wold het volgende geschreven:
> >
> >> From: Saul Wold<sgw@linux.intel.com>
> >>
> >> Fixes [YOCTO #810]
> >>
> >> Signed-off-by: Saul Wold<sgw@linux.intel.com>
> >> ---
> >> meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
> >> 1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
> >> index 4edca95..d1abd36 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"
> >> +DEPENDS = "gstreamer hal"
> >
> > Since hal is being deprecated in favour of udev, do we really want to introduce it as a dependency instead of disabled it?
>
> ... and making sure the new set of magic works right.
I'm going to merge Saul's patch. I'd take a patch to remove the
dependency if someone can write one and confirm it works though.
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] 2 More Dependency Fixes for RC2
2011-03-06 17:19 [PATCH 0/2] 2 More Dependency Fixes for RC2 Saul Wold
@ 2011-03-08 18:43 ` Richard Purdie
2011-03-06 17:19 ` [PATCH 2/2] attr: Added ncurses to depends Saul Wold
2011-03-08 18:43 ` [OE-core] " Richard Purdie
2 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2011-03-08 18:43 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: poky
On Sun, 2011-03-06 at 09:19 -0800, Saul Wold wrote:
> From: Saul Wold <sgw@linux.intel.com>
>
> Fix more dependency issues
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
> Branch: distro/oe-core
> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=distro/oe-core
>
> Thanks,
> Saul Wold <sgw@linux.intel.com>
> ---
>
>
> Saul Wold (2):
> gst-plugins: Added hal to DEPENDS
> attr: Added ncurses to depends
>
> meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
> meta/recipes-support/attr/attr.inc | 2 ++
> 2 files changed, 3 insertions(+), 1 deletions(-)
Merged into master, thanks.
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [OE-core] [PATCH 0/2] 2 More Dependency Fixes for RC2
@ 2011-03-08 18:43 ` Richard Purdie
0 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2011-03-08 18:43 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: poky
On Sun, 2011-03-06 at 09:19 -0800, Saul Wold wrote:
> From: Saul Wold <sgw@linux.intel.com>
>
> Fix more dependency issues
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
> Branch: distro/oe-core
> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=distro/oe-core
>
> Thanks,
> Saul Wold <sgw@linux.intel.com>
> ---
>
>
> Saul Wold (2):
> gst-plugins: Added hal to DEPENDS
> attr: Added ncurses to depends
>
> meta/recipes-multimedia/gstreamer/gst-plugins.inc | 2 +-
> meta/recipes-support/attr/attr.inc | 2 ++
> 2 files changed, 3 insertions(+), 1 deletions(-)
Merged into master, thanks.
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-03-08 18:55 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-06 17:19 [PATCH 0/2] 2 More Dependency Fixes for RC2 Saul Wold
2011-03-06 17:19 ` [PATCH 1/2] gst-plugins: Added hal to DEPENDS Saul Wold
2011-03-06 18:34 ` [poky] " Koen Kooi
2011-03-07 0:47 ` Tom Rini
2011-03-08 18:42 ` Richard Purdie
2011-03-06 17:19 ` [PATCH 2/2] attr: Added ncurses to depends Saul Wold
2011-03-08 18:43 ` [PATCH 0/2] 2 More Dependency Fixes for RC2 Richard Purdie
2011-03-08 18:43 ` [OE-core] " Richard Purdie
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.