All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome
@ 2019-07-23 15:16 Adrian Bunk
  2019-07-24  1:44 ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Adrian Bunk @ 2019-07-23 15:16 UTC (permalink / raw)
  To: openembedded-devel

The gnome class pulls in usually unwanted dependencies like gconf.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
 meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb                | 2 +-
 meta-oe/recipes-gnome/vte9/vte9.inc                      | 2 +-
 meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb             | 3 ++-
 meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb | 4 ++--
 meta-oe/recipes-support/pidgin/gmime_3.2.3.bb            | 2 +-
 5 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb b/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb
index 63f4f09ba..e587e2a10 100644
--- a/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb
+++ b/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1 \
 
 DEPENDS = "atk glibmm"
 
-inherit distro_features_check gnome autotools pkgconfig
+inherit distro_features_check gnomebase autotools pkgconfig
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
diff --git a/meta-oe/recipes-gnome/vte9/vte9.inc b/meta-oe/recipes-gnome/vte9/vte9.inc
index 206c430da..d860d44e2 100644
--- a/meta-oe/recipes-gnome/vte9/vte9.inc
+++ b/meta-oe/recipes-gnome/vte9/vte9.inc
@@ -8,7 +8,7 @@ RDEPENDS_libvte = "vte-termcap"
 GNOMEBN = "vte"
 S = "${WORKDIR}/vte-${PV}"
 
-inherit gnome gtk-doc distro_features_check upstream-version-is-even gobject-introspection
+inherit gnomebase gtk-doc distro_features_check upstream-version-is-even gobject-introspection
 ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}"
 
 EXTRA_OECONF = "--disable-python"
diff --git a/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb b/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
index 943986e77..1d64910fd 100644
--- a/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
+++ b/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
@@ -8,6 +8,7 @@ DEPENDS = " \
     gdk-pixbuf-native \
     intltool-native \
     libxslt-native \
+    dbus-glib \
     gtk+ \
     babl \
     gegl \
@@ -24,7 +25,7 @@ DEPENDS = " \
 "
 DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libxmu libxpm', '', d)}"
 
-inherit distro_features_check gnome gtk-doc
+inherit distro_features_check gnomebase gtk-icon-cache gtk-doc
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
diff --git a/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb b/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb
index 6a8274405..421ea9d5c 100644
--- a/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb
+++ b/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "PulseAudio Volume Control (pavucontrol) is a simple GTK based vol
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
 
-DEPENDS = "intltool-native gtkmm3 libcanberra pulseaudio"
+DEPENDS = "intltool-native gtk+3-native gtkmm3 libcanberra pulseaudio"
 
-inherit gnome distro_features_check
+inherit gnomebase distro_features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
diff --git a/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb b/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb
index 8c6f0b010..bce89bec8 100644
--- a/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb
+++ b/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb
@@ -4,7 +4,7 @@ DESCRIPTION = "Runtime libraries for parsing and creating MIME mail"
 SECTION = "libs"
 DEPENDS = "glib-2.0 zlib"
 
-inherit gnome autotools gobject-introspection
+inherit gnomebase autotools gobject-introspection
 
 SRC_URI += "file://iconv-detect.h \
             file://nodolt.patch"
-- 
2.17.1



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

* Re: [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome
  2019-07-23 15:16 [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome Adrian Bunk
@ 2019-07-24  1:44 ` Khem Raj
  2019-07-24 10:38   ` Adrian Bunk
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2019-07-24  1:44 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: openembeded-devel

This causes
https://errors.yoctoproject.org/Errors/Details/253988/
maybe due to atkmm change is exposing another missing inherit
 gnome-system-monitor -> gtkmm3 -> atkmm

On Tue, Jul 23, 2019 at 8:17 AM Adrian Bunk <bunk@stusta.de> wrote:
>
> The gnome class pulls in usually unwanted dependencies like gconf.
>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>
> ---
>  meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb                | 2 +-
>  meta-oe/recipes-gnome/vte9/vte9.inc                      | 2 +-
>  meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb             | 3 ++-
>  meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb | 4 ++--
>  meta-oe/recipes-support/pidgin/gmime_3.2.3.bb            | 2 +-
>  5 files changed, 7 insertions(+), 6 deletions(-)
>
> diff --git a/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb b/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb
> index 63f4f09ba..e587e2a10 100644
> --- a/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb
> +++ b/meta-oe/recipes-gnome/atk/atkmm_2.28.0.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1 \
>
>  DEPENDS = "atk glibmm"
>
> -inherit distro_features_check gnome autotools pkgconfig
> +inherit distro_features_check gnomebase autotools pkgconfig
>
>  REQUIRED_DISTRO_FEATURES = "x11"
>
> diff --git a/meta-oe/recipes-gnome/vte9/vte9.inc b/meta-oe/recipes-gnome/vte9/vte9.inc
> index 206c430da..d860d44e2 100644
> --- a/meta-oe/recipes-gnome/vte9/vte9.inc
> +++ b/meta-oe/recipes-gnome/vte9/vte9.inc
> @@ -8,7 +8,7 @@ RDEPENDS_libvte = "vte-termcap"
>  GNOMEBN = "vte"
>  S = "${WORKDIR}/vte-${PV}"
>
> -inherit gnome gtk-doc distro_features_check upstream-version-is-even gobject-introspection
> +inherit gnomebase gtk-doc distro_features_check upstream-version-is-even gobject-introspection
>  ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}"
>
>  EXTRA_OECONF = "--disable-python"
> diff --git a/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb b/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
> index 943986e77..1d64910fd 100644
> --- a/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
> +++ b/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
> @@ -8,6 +8,7 @@ DEPENDS = " \
>      gdk-pixbuf-native \
>      intltool-native \
>      libxslt-native \
> +    dbus-glib \
>      gtk+ \
>      babl \
>      gegl \
> @@ -24,7 +25,7 @@ DEPENDS = " \
>  "
>  DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libxmu libxpm', '', d)}"
>
> -inherit distro_features_check gnome gtk-doc
> +inherit distro_features_check gnomebase gtk-icon-cache gtk-doc
>
>  REQUIRED_DISTRO_FEATURES = "x11"
>
> diff --git a/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb b/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb
> index 6a8274405..421ea9d5c 100644
> --- a/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb
> +++ b/meta-oe/recipes-multimedia/pulseaudio/pavucontrol_4.0.bb
> @@ -2,9 +2,9 @@ DESCRIPTION = "PulseAudio Volume Control (pavucontrol) is a simple GTK based vol
>  LICENSE = "GPLv2"
>  LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
>
> -DEPENDS = "intltool-native gtkmm3 libcanberra pulseaudio"
> +DEPENDS = "intltool-native gtk+3-native gtkmm3 libcanberra pulseaudio"
>
> -inherit gnome distro_features_check
> +inherit gnomebase distro_features_check
>
>  REQUIRED_DISTRO_FEATURES = "x11"
>
> diff --git a/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb b/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb
> index 8c6f0b010..bce89bec8 100644
> --- a/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb
> +++ b/meta-oe/recipes-support/pidgin/gmime_3.2.3.bb
> @@ -4,7 +4,7 @@ DESCRIPTION = "Runtime libraries for parsing and creating MIME mail"
>  SECTION = "libs"
>  DEPENDS = "glib-2.0 zlib"
>
> -inherit gnome autotools gobject-introspection
> +inherit gnomebase autotools gobject-introspection
>
>  SRC_URI += "file://iconv-detect.h \
>              file://nodolt.patch"
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome
  2019-07-24  1:44 ` Khem Raj
@ 2019-07-24 10:38   ` Adrian Bunk
  2019-07-24 13:34     ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Adrian Bunk @ 2019-07-24 10:38 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Tue, Jul 23, 2019 at 06:44:49PM -0700, Khem Raj wrote:
> This causes
> https://errors.yoctoproject.org/Errors/Details/253988/
> maybe due to atkmm change is exposing another missing inherit
>  gnome-system-monitor -> gtkmm3 -> atkmm

Does gnome-system-monitor build for you with musl without my patches 
applied? It doesn't for me.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed



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

* Re: [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome
  2019-07-24 10:38   ` Adrian Bunk
@ 2019-07-24 13:34     ` Khem Raj
  2019-07-24 18:52       ` Khem Raj
  2019-07-28 10:51       ` Adrian Bunk
  0 siblings, 2 replies; 6+ messages in thread
From: Khem Raj @ 2019-07-24 13:34 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: openembeded-devel

On Wed, Jul 24, 2019 at 3:38 AM Adrian Bunk <bunk@stusta.de> wrote:

> On Tue, Jul 23, 2019 at 06:44:49PM -0700, Khem Raj wrote:
> > This causes
> > https://errors.yoctoproject.org/Errors/Details/253988/
> > maybe due to atkmm change is exposing another missing inherit
> >  gnome-system-monitor -> gtkmm3 -> atkmm
>
> Does gnome-system-monitor build for you with musl without my patches
> applied? It doesn't for me.


Yes it did and build again after reverting there is a chance of race
condition but this package has not failed before


>
> cu
> Adrian
>
> --
>
>        "Is there not promise of rain?" Ling Tan asked suddenly out
>         of the darkness. There had been need of rain for many days.
>        "Only a promise," Lao Er said.
>                                        Pearl S. Buck - Dragon Seed
>
>


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

* Re: [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome
  2019-07-24 13:34     ` Khem Raj
@ 2019-07-24 18:52       ` Khem Raj
  2019-07-28 10:51       ` Adrian Bunk
  1 sibling, 0 replies; 6+ messages in thread
From: Khem Raj @ 2019-07-24 18:52 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: openembeded-devel

On Wed, Jul 24, 2019 at 6:34 AM Khem Raj <raj.khem@gmail.com> wrote:
>
>
>
> On Wed, Jul 24, 2019 at 3:38 AM Adrian Bunk <bunk@stusta.de> wrote:
>>
>> On Tue, Jul 23, 2019 at 06:44:49PM -0700, Khem Raj wrote:
>> > This causes
>> > https://errors.yoctoproject.org/Errors/Details/253988/
>> > maybe due to atkmm change is exposing another missing inherit
>> >  gnome-system-monitor -> gtkmm3 -> atkmm
>>
>> Does gnome-system-monitor build for you with musl without my patches
>> applied? It doesn't for me.
>
>
> Yes it did and build again after reverting there is a chance of race condition but this package has not failed before
>

a simple rebuild is successful with the patch as well.


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

* Re: [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome
  2019-07-24 13:34     ` Khem Raj
  2019-07-24 18:52       ` Khem Raj
@ 2019-07-28 10:51       ` Adrian Bunk
  1 sibling, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2019-07-28 10:51 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Wed, Jul 24, 2019 at 06:34:24AM -0700, Khem Raj wrote:
> On Wed, Jul 24, 2019 at 3:38 AM Adrian Bunk <bunk@stusta.de> wrote:
> 
> > On Tue, Jul 23, 2019 at 06:44:49PM -0700, Khem Raj wrote:
> > > This causes
> > > https://errors.yoctoproject.org/Errors/Details/253988/
> > > maybe due to atkmm change is exposing another missing inherit
> > >  gnome-system-monitor -> gtkmm3 -> atkmm
> >
> > Does gnome-system-monitor build for you with musl without my patches
> > applied? It doesn't for me.
> 
> Yes it did and build again after reverting there is a chance of race
> condition but this package has not failed before

My musl build failure was actually an undeclared dependency on polkit,
I'll send a patch for that.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed



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

end of thread, other threads:[~2019-07-28 10:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-23 15:16 [meta-oe][PATCH v2] meta-oe: Inherit gnomebase instead of gnome Adrian Bunk
2019-07-24  1:44 ` Khem Raj
2019-07-24 10:38   ` Adrian Bunk
2019-07-24 13:34     ` Khem Raj
2019-07-24 18:52       ` Khem Raj
2019-07-28 10:51       ` Adrian Bunk

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.