Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH v2] gsettings-desktop-schemas: add missing elements from meta-gnome
@ 2013-01-07 12:05 Constantin Musca
  2013-01-07 13:34 ` Richard Purdie
  0 siblings, 1 reply; 3+ messages in thread
From: Constantin Musca @ 2013-01-07 12:05 UTC (permalink / raw)
  To: openembedded-core

- add postinst using gsettings.bbclass
- modify the recipe according to the meta-gnome variant

Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
---
 meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb b/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
index 720858a..1242741 100644
--- a/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
+++ b/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
@@ -4,10 +4,9 @@ BUGTRACKER = "https://bugzilla.gnome.org/"
 
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
+PR = "r1"
 
-DEPENDS = "glib-2.0"
-
-inherit gnome pkgconfig autotools gettext
+inherit gnome gsettings
 
 GNOME_COMPRESS_TYPE = "xz"
 
-- 
1.7.11.7




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

* Re: [PATCH v2] gsettings-desktop-schemas: add missing elements from meta-gnome
  2013-01-07 12:05 [PATCH v2] gsettings-desktop-schemas: add missing elements from meta-gnome Constantin Musca
@ 2013-01-07 13:34 ` Richard Purdie
  2013-01-07 14:48   ` Constantin Musca
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2013-01-07 13:34 UTC (permalink / raw)
  To: Constantin Musca; +Cc: openembedded-core

On Mon, 2013-01-07 at 14:05 +0200, Constantin Musca wrote:
> - add postinst using gsettings.bbclass
> - modify the recipe according to the meta-gnome variant
> 
> Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
> ---
>  meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb b/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
> index 720858a..1242741 100644
> --- a/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
> +++ b/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
> @@ -4,10 +4,9 @@ BUGTRACKER = "https://bugzilla.gnome.org/"
>  
>  LICENSE = "LGPLv2.1"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
> +PR = "r1"
>  
> -DEPENDS = "glib-2.0"

It doesn't need glib-2.0?

> -
> -inherit gnome pkgconfig autotools gettext
> +inherit gnome gsettings

It doesn't need gettext?

Cheers,

Richard




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

* Re: [PATCH v2] gsettings-desktop-schemas: add missing elements from meta-gnome
  2013-01-07 13:34 ` Richard Purdie
@ 2013-01-07 14:48   ` Constantin Musca
  0 siblings, 0 replies; 3+ messages in thread
From: Constantin Musca @ 2013-01-07 14:48 UTC (permalink / raw)
  To: Richard Purdie; +Cc: openembedded-core

On 01/07/2013 03:34 PM, Richard Purdie wrote:
> On Mon, 2013-01-07 at 14:05 +0200, Constantin Musca wrote:
>> - add postinst using gsettings.bbclass
>> - modify the recipe according to the meta-gnome variant
>>
>> Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
>> ---
>>   meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb | 5 ++---
>>   1 file changed, 2 insertions(+), 3 deletions(-)
>>
>> diff --git a/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb b/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
>> index 720858a..1242741 100644
>> --- a/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
>> +++ b/meta/recipes-gnome/gnome/gsettings-desktop-schemas_3.7.3.bb
>> @@ -4,10 +4,9 @@ BUGTRACKER = "https://bugzilla.gnome.org/"
>>   
>>   LICENSE = "LGPLv2.1"
>>   LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>> +PR = "r1"
>>   
>> -DEPENDS = "glib-2.0"
> It doesn't need glib-2.0?
>
>> -
>> -inherit gnome pkgconfig autotools gettext
>> +inherit gnome gsettings
> It doesn't need gettext?
>
> Cheers,
>
> Richard
>
I removed the dependencies because the original recipe from meta-gnome 
didn't contain them and gsettings-desktop-schemas builds OK without 
them. I have checked the gsettings-desktop-schemas autotools files and 
discovered:

PKG_CHECK_EXISTS([gio-2.0 >= $GIO_MIN_VERSION],[],
                  [AC_MSG_ERROR([Minimum Gio requirement 
($GIO_MIN_VERSION) was not met])])


Also I have discovered that the configure script checks for gettext. I 
have sent patch v3 which adds back the dependencies.

Cheers,
Constantin



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

end of thread, other threads:[~2013-01-07 15:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-07 12:05 [PATCH v2] gsettings-desktop-schemas: add missing elements from meta-gnome Constantin Musca
2013-01-07 13:34 ` Richard Purdie
2013-01-07 14:48   ` Constantin Musca

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