* [PATCH 0/1] Handle gconf schema in gst-plugins-good
@ 2011-10-20 18:40 Joshua Lock
2011-10-20 18:40 ` [PATCH 1/1] gst-plugins-good: correctly handle gconf schema Joshua Lock
0 siblings, 1 reply; 5+ messages in thread
From: Joshua Lock @ 2011-10-20 18:40 UTC (permalink / raw)
To: openembedded-core
Thanks to Koen's feedback this updated patch correctly ships the gconf schema with
the gconfelements package.
Cheers,
Joshua
The following changes since commit 99da9a4e65f9dffb04efc3ad60125194c476d6b3:
distro-tracking-fields: update fields for tzdata and gst-plugins-good (2011-10-20 13:07:16 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib josh/work
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=josh/work
Joshua Lock (1):
gst-plugins-good: correctly handle gconf schema
.../gstreamer/gst-plugins-good_0.10.30.bb | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
--
1.7.6.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] gst-plugins-good: correctly handle gconf schema
2011-10-20 18:40 [PATCH 0/1] Handle gconf schema in gst-plugins-good Joshua Lock
@ 2011-10-20 18:40 ` Joshua Lock
2011-10-20 18:45 ` Martin Jansa
2011-10-24 16:18 ` Richard Purdie
0 siblings, 2 replies; 5+ messages in thread
From: Joshua Lock @ 2011-10-20 18:40 UTC (permalink / raw)
To: openembedded-core
Add the shipped gconf schema to the gconfelements package and inherit the gconf
class so that schema processing is handled via post* scripts.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
---
.../gstreamer/gst-plugins-good_0.10.30.bb | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
index 96855aa..728175b 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
@@ -7,9 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
speex libsoup-2.4 pulseaudio"
-PR = "r2"
+PR = "r3"
-inherit gettext
+inherit gettext gconf
EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check"
@@ -20,3 +20,5 @@ do_configure_prepend() {
SRC_URI[md5sum] = "62fd7a3ef187c4f99b3d7c352d58dae9"
SRC_URI[sha256sum] = "b12cba90b27d8423cd0a808939098d19db3996cfb9bf528507c6321782e095f6"
+
+FILES_${PN}-gconfelements += "${sysconfdir}/gconf/schemas/gstreamer-0.10.schemas"
--
1.7.6.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] gst-plugins-good: correctly handle gconf schema
2011-10-20 18:40 ` [PATCH 1/1] gst-plugins-good: correctly handle gconf schema Joshua Lock
@ 2011-10-20 18:45 ` Martin Jansa
2011-10-20 18:49 ` Joshua Lock
2011-10-24 16:18 ` Richard Purdie
1 sibling, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2011-10-20 18:45 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 1560 bytes --]
On Thu, Oct 20, 2011 at 11:40:37AM -0700, Joshua Lock wrote:
> Add the shipped gconf schema to the gconfelements package and inherit the gconf
> class so that schema processing is handled via post* scripts.
>
> Signed-off-by: Joshua Lock <josh@linux.intel.com>
> ---
> .../gstreamer/gst-plugins-good_0.10.30.bb | 6 ++++--
> 1 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
> index 96855aa..728175b 100644
> --- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
> +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
> @@ -7,9 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
>
> DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
> speex libsoup-2.4 pulseaudio"
> -PR = "r2"
> +PR = "r3"
>
> -inherit gettext
> +inherit gettext gconf
>
> EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check"
>
> @@ -20,3 +20,5 @@ do_configure_prepend() {
>
> SRC_URI[md5sum] = "62fd7a3ef187c4f99b3d7c352d58dae9"
> SRC_URI[sha256sum] = "b12cba90b27d8423cd0a808939098d19db3996cfb9bf528507c6321782e095f6"
> +
> +FILES_${PN}-gconfelements += "${sysconfdir}/gconf/schemas/gstreamer-0.10.schemas"
where do we get ${PN}-gconfelements in PACKAGES?
Regards,
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] gst-plugins-good: correctly handle gconf schema
2011-10-20 18:45 ` Martin Jansa
@ 2011-10-20 18:49 ` Joshua Lock
0 siblings, 0 replies; 5+ messages in thread
From: Joshua Lock @ 2011-10-20 18:49 UTC (permalink / raw)
To: openembedded-core
On 10/20/2011 11:45 AM, Martin Jansa wrote:
> On Thu, Oct 20, 2011 at 11:40:37AM -0700, Joshua Lock wrote:
>> Add the shipped gconf schema to the gconfelements package and inherit the gconf
>> class so that schema processing is handled via post* scripts.
>>
>> Signed-off-by: Joshua Lock <josh@linux.intel.com>
>> ---
>> .../gstreamer/gst-plugins-good_0.10.30.bb | 6 ++++--
>> 1 files changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
>> index 96855aa..728175b 100644
>> --- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
>> +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.30.bb
>> @@ -7,9 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
>>
>> DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
>> speex libsoup-2.4 pulseaudio"
>> -PR = "r2"
>> +PR = "r3"
>>
>> -inherit gettext
>> +inherit gettext gconf
>>
>> EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal --without-check"
>>
>> @@ -20,3 +20,5 @@ do_configure_prepend() {
>>
>> SRC_URI[md5sum] = "62fd7a3ef187c4f99b3d7c352d58dae9"
>> SRC_URI[sha256sum] = "b12cba90b27d8423cd0a808939098d19db3996cfb9bf528507c6321782e095f6"
>> +
>> +FILES_${PN}-gconfelements += "${sysconfdir}/gconf/schemas/gstreamer-0.10.schemas"
>
> where do we get ${PN}-gconfelements in PACKAGES?
The gst-plugins-package.inc modifies PACKAGES based on the built libraries.
Joshua
--
Joshua Lock
Yocto Project "Johannes factotum"
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] gst-plugins-good: correctly handle gconf schema
2011-10-20 18:40 ` [PATCH 1/1] gst-plugins-good: correctly handle gconf schema Joshua Lock
2011-10-20 18:45 ` Martin Jansa
@ 2011-10-24 16:18 ` Richard Purdie
1 sibling, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2011-10-24 16:18 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Thu, 2011-10-20 at 11:40 -0700, Joshua Lock wrote:
> Add the shipped gconf schema to the gconfelements package and inherit the gconf
> class so that schema processing is handled via post* scripts.
>
> Signed-off-by: Joshua Lock <josh@linux.intel.com>
> ---
> .../gstreamer/gst-plugins-good_0.10.30.bb | 6 ++++--
> 1 files changed, 4 insertions(+), 2 deletions(-)
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-10-24 16:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-20 18:40 [PATCH 0/1] Handle gconf schema in gst-plugins-good Joshua Lock
2011-10-20 18:40 ` [PATCH 1/1] gst-plugins-good: correctly handle gconf schema Joshua Lock
2011-10-20 18:45 ` Martin Jansa
2011-10-20 18:49 ` Joshua Lock
2011-10-24 16:18 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox