All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/5] Make meta-oe pass again
@ 2018-10-12 15:26 Armin Kuster
  2018-10-12 15:26 ` [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES Armin Kuster
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Armin Kuster @ 2018-10-12 15:26 UTC (permalink / raw)
  To: akuster808, openembedded-devel

There is a yocto-check-layer regression in meta-openembedded
do to new packages being added.  These changes make meta-oe pass again

Armin Kuster (5):
  directfb: add x11 to REQUIRED_DISTRO_FEATURES
  vlc: add x11 to REQUIRED_DISTRO_FEATURES
  directfb-examples: add x11 to REQUIRED_DISTRO_FEATURES
  blueman: add x11 to REQUIRED_DISTRO_FEATURES
  blueman: really belongs in meta-networking

 meta-multimedia/recipes-multimedia/vlc/vlc.inc                        | 4 +++-
 .../blueman/blueman/0001-Search-for-cython3.patch                     | 0
 .../recipes-connectivity/blueman/blueman_git.bb                       | 3 ++-
 meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb          | 3 ++-
 meta-oe/recipes-graphics/directfb/directfb.inc                        | 3 ++-
 5 files changed, 9 insertions(+), 4 deletions(-)
 rename {meta-oe => meta-networking}/recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch (100%)
 rename {meta-oe => meta-networking}/recipes-connectivity/blueman/blueman_git.bb (95%)

-- 
2.7.4



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

* [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 [meta-oe][PATCH 0/5] Make meta-oe pass again Armin Kuster
@ 2018-10-12 15:26 ` Armin Kuster
  2018-10-12 17:52   ` Vesa Jääskeläinen
  2018-10-13  7:48   ` Adrian Bunk
  2018-10-12 15:26 ` [meta-oe][PATCH 2/5] vlc: " Armin Kuster
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 13+ messages in thread
From: Armin Kuster @ 2018-10-12 15:26 UTC (permalink / raw)
  To: akuster808, openembedded-devel

package has depends on vlc and gtk

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-oe/recipes-graphics/directfb/directfb.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/directfb/directfb.inc b/meta-oe/recipes-graphics/directfb/directfb.inc
index 96aa311..cf8f19a 100644
--- a/meta-oe/recipes-graphics/directfb/directfb.inc
+++ b/meta-oe/recipes-graphics/directfb/directfb.inc
@@ -32,7 +32,8 @@ LDFLAGS_append_arm = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -f
 
 BINCONFIG = "${bindir}/directfb-config"
 
-inherit autotools binconfig-disabled pkgconfig
+inherit autotools binconfig-disabled pkgconfig distro_features_check
+REQUIRED_DISTRO_FEATURES = "x11"
 
 PACKAGECONFIG ??= "linuxinput"
 PACKAGECONFIG[jpeg2000] = "--enable-jpeg2000,--disable-jpeg2000,jasper"
-- 
2.7.4



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

* [meta-oe][PATCH 2/5] vlc: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 [meta-oe][PATCH 0/5] Make meta-oe pass again Armin Kuster
  2018-10-12 15:26 ` [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES Armin Kuster
@ 2018-10-12 15:26 ` Armin Kuster
  2018-10-12 15:29   ` Khem Raj
  2018-10-12 15:26 ` [meta-oe][PATCH 3/5] directfb-examples: " Armin Kuster
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 13+ messages in thread
From: Armin Kuster @ 2018-10-12 15:26 UTC (permalink / raw)
  To: akuster808, openembedded-devel

Nothing PROVIDES gtk+

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-multimedia/recipes-multimedia/vlc/vlc.inc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc.inc b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
index f13c0ea..e395b24 100644
--- a/meta-multimedia/recipes-multimedia/vlc/vlc.inc
+++ b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
@@ -19,6 +19,8 @@ LICENSE_FLAGS = "commercial"
 SRC_URI = "http://download.videolan.org/pub/videolan/${BPN}/${PV}/${BP}.tar.xz"
 
 inherit autotools gettext pkgconfig distro_features_check
+#REQUIRED_DISTRO_FEATURES = "x11"
+
 
 ARM_INSTRUCTION_SET = "arm"
 
@@ -40,7 +42,7 @@ EXTRA_OECONF = "\
     ac_cv_path_UIC=${STAGING_BINDIR_NATIVE}/uic4 \
 "
 
-PACKAGECONFIG ?= " live555 dc1394 dv1394 notify fontconfig freetype dvdread png ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 sdl vdpau', '', d)}"
+PACKAGECONFIG ?= " live555 dc1394 dv1394 fontconfig freetype dvdread png ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 sdl vdpau notify', '', d)}"
 PACKAGECONFIG[mad] = "--enable-mad,--disable-mad,libmad"
 PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl libsdl-image "
 PACKAGECONFIG[a52] = "--enable-a52,--disable-a52,liba52"
-- 
2.7.4



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

* [meta-oe][PATCH 3/5] directfb-examples: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 [meta-oe][PATCH 0/5] Make meta-oe pass again Armin Kuster
  2018-10-12 15:26 ` [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES Armin Kuster
  2018-10-12 15:26 ` [meta-oe][PATCH 2/5] vlc: " Armin Kuster
@ 2018-10-12 15:26 ` Armin Kuster
  2018-10-12 15:26 ` [meta-oe][PATCH 4/5] blueman: " Armin Kuster
  2018-10-12 15:26 ` [meta-oe][PATCH 5/5] blueman: really belongs in meta-networking Armin Kuster
  4 siblings, 0 replies; 13+ messages in thread
From: Armin Kuster @ 2018-10-12 15:26 UTC (permalink / raw)
  To: akuster808, openembedded-devel

Nothing PROVIDES 'directfb'

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb b/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb
index 7907c5c..a9d29dc 100644
--- a/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb
+++ b/meta-oe/recipes-graphics/directfb/directfb-examples_1.7.0.bb
@@ -15,7 +15,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=ecf6fd2b19915afc4da56043926ca18f"
 
 S = "${WORKDIR}/DirectFB-examples-${PV}"
 
-inherit autotools pkgconfig
+inherit autotools pkgconfig distro_features_check
+REQUIRED_DISTRO_FEATURES = "x11"
 
 SRC_URI[md5sum] = "8b60c867af295481c32a8c7fc5802307"
 SRC_URI[sha256sum] = "9a2104cc4da8123c8371813551b66b943198979f745cbebc034bb5e10844122a"
-- 
2.7.4



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

* [meta-oe][PATCH 4/5] blueman: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 [meta-oe][PATCH 0/5] Make meta-oe pass again Armin Kuster
                   ` (2 preceding siblings ...)
  2018-10-12 15:26 ` [meta-oe][PATCH 3/5] directfb-examples: " Armin Kuster
@ 2018-10-12 15:26 ` Armin Kuster
  2018-10-12 19:51   ` Andreas Müller
  2018-10-12 15:26 ` [meta-oe][PATCH 5/5] blueman: really belongs in meta-networking Armin Kuster
  4 siblings, 1 reply; 13+ messages in thread
From: Armin Kuster @ 2018-10-12 15:26 UTC (permalink / raw)
  To: akuster808, openembedded-devel

Nothing RPROVIDES 'thunar'

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 meta-oe/recipes-connectivity/blueman/blueman_git.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-connectivity/blueman/blueman_git.bb b/meta-oe/recipes-connectivity/blueman/blueman_git.bb
index 947db78..8eb99ed 100644
--- a/meta-oe/recipes-connectivity/blueman/blueman_git.bb
+++ b/meta-oe/recipes-connectivity/blueman/blueman_git.bb
@@ -4,7 +4,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
 DEPENDS = "bluez5 python3-pygobject python3-cython-native python3-setuptools-native intltool-native"
 
-inherit autotools systemd gsettings python3native gtk-icon-cache
+inherit autotools systemd gsettings python3native gtk-icon-cache distro_features_check
+REQUIRED_DISTRO_FEATURES = "x11"
 
 SRC_URI = " \
     git://github.com/blueman-project/blueman.git \
-- 
2.7.4



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

* [meta-oe][PATCH 5/5] blueman: really belongs in meta-networking
  2018-10-12 15:26 [meta-oe][PATCH 0/5] Make meta-oe pass again Armin Kuster
                   ` (3 preceding siblings ...)
  2018-10-12 15:26 ` [meta-oe][PATCH 4/5] blueman: " Armin Kuster
@ 2018-10-12 15:26 ` Armin Kuster
  4 siblings, 0 replies; 13+ messages in thread
From: Armin Kuster @ 2018-10-12 15:26 UTC (permalink / raw)
  To: akuster808, openembedded-devel

it has a build dependancy on python-cython and python-pyparsing with are in
meta-python

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch    | 0
 {meta-oe => meta-networking}/recipes-connectivity/blueman/blueman_git.bb  | 0
 2 files changed, 0 insertions(+), 0 deletions(-)
 rename {meta-oe => meta-networking}/recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch (100%)
 rename {meta-oe => meta-networking}/recipes-connectivity/blueman/blueman_git.bb (100%)

diff --git a/meta-oe/recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch b/meta-networking/recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch
similarity index 100%
rename from meta-oe/recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch
rename to meta-networking/recipes-connectivity/blueman/blueman/0001-Search-for-cython3.patch
diff --git a/meta-oe/recipes-connectivity/blueman/blueman_git.bb b/meta-networking/recipes-connectivity/blueman/blueman_git.bb
similarity index 100%
rename from meta-oe/recipes-connectivity/blueman/blueman_git.bb
rename to meta-networking/recipes-connectivity/blueman/blueman_git.bb
-- 
2.7.4



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

* Re: [meta-oe][PATCH 2/5] vlc: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 ` [meta-oe][PATCH 2/5] vlc: " Armin Kuster
@ 2018-10-12 15:29   ` Khem Raj
  0 siblings, 0 replies; 13+ messages in thread
From: Khem Raj @ 2018-10-12 15:29 UTC (permalink / raw)
  To: Armin Kuster; +Cc: openembeded-devel

Hi Armin

On Fri, Oct 12, 2018 at 8:27 AM Armin Kuster <akuster808@gmail.com> wrote:
>
> Nothing PROVIDES gtk+
>

Commit message and code changes seems to not matching

> Signed-off-by: Armin Kuster <akuster808@gmail.com>
> ---
>  meta-multimedia/recipes-multimedia/vlc/vlc.inc | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc.inc b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> index f13c0ea..e395b24 100644
> --- a/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> +++ b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> @@ -19,6 +19,8 @@ LICENSE_FLAGS = "commercial"
>  SRC_URI = "http://download.videolan.org/pub/videolan/${BPN}/${PV}/${BP}.tar.xz"
>
>  inherit autotools gettext pkgconfig distro_features_check
> +#REQUIRED_DISTRO_FEATURES = "x11"
> +
>
>  ARM_INSTRUCTION_SET = "arm"
>
> @@ -40,7 +42,7 @@ EXTRA_OECONF = "\
>      ac_cv_path_UIC=${STAGING_BINDIR_NATIVE}/uic4 \
>  "
>
> -PACKAGECONFIG ?= " live555 dc1394 dv1394 notify fontconfig freetype dvdread png ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 sdl vdpau', '', d)}"
> +PACKAGECONFIG ?= " live555 dc1394 dv1394 fontconfig freetype dvdread png ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11 sdl vdpau notify', '', d)}"
>  PACKAGECONFIG[mad] = "--enable-mad,--disable-mad,libmad"
>  PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,virtual/libsdl libsdl-image "
>  PACKAGECONFIG[a52] = "--enable-a52,--disable-a52,liba52"
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 ` [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES Armin Kuster
@ 2018-10-12 17:52   ` Vesa Jääskeläinen
  2018-10-12 20:34     ` Burton, Ross
  2018-10-12 21:19     ` akuster808
  2018-10-13  7:48   ` Adrian Bunk
  1 sibling, 2 replies; 13+ messages in thread
From: Vesa Jääskeläinen @ 2018-10-12 17:52 UTC (permalink / raw)
  To: openembedded-devel

On 12/10/2018 18.26, Armin Kuster wrote:

> package has depends on vlc and gtk
>
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
> ---
>   meta-oe/recipes-graphics/directfb/directfb.inc | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-graphics/directfb/directfb.inc b/meta-oe/recipes-graphics/directfb/directfb.inc
> index 96aa311..cf8f19a 100644
> --- a/meta-oe/recipes-graphics/directfb/directfb.inc
> +++ b/meta-oe/recipes-graphics/directfb/directfb.inc
> @@ -32,7 +32,8 @@ LDFLAGS_append_arm = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -f
>   
>   BINCONFIG = "${bindir}/directfb-config"
>   
> -inherit autotools binconfig-disabled pkgconfig
> +inherit autotools binconfig-disabled pkgconfig distro_features_check
> +REQUIRED_DISTRO_FEATURES = "x11"
>   
Wrong method?

Quote from:
https://github.com/DirectFB/directfb

"Optionally, depending on the configuration you want:

    FBDev
      - Linux kernel 2.2.x or newer with working frame buffer device
        (check /proc/fb) for the fbdev system.

    SDL
      - libSDL (Simple Direct Media Layer) for the sdl system.

    X11
      - libX11 (X11 client library) for the X11 system (libx11-dev and libxext-dev packages)."



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

* Re: [meta-oe][PATCH 4/5] blueman: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 ` [meta-oe][PATCH 4/5] blueman: " Armin Kuster
@ 2018-10-12 19:51   ` Andreas Müller
  2018-10-12 19:55     ` Khem Raj
  0 siblings, 1 reply; 13+ messages in thread
From: Andreas Müller @ 2018-10-12 19:51 UTC (permalink / raw)
  To: Armin Kuster; +Cc: openembeded-devel

On Fri, Oct 12, 2018 at 5:27 PM Armin Kuster <akuster808@gmail.com> wrote:
>
> Nothing RPROVIDES 'thunar'
>
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
> ---
>  meta-oe/recipes-connectivity/blueman/blueman_git.bb | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
If thunar is the only reason then this has to go to append in
meta-xfce - there thunar PACKAGECONFIG is activated.

Andreas


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

* Re: [meta-oe][PATCH 4/5] blueman: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 19:51   ` Andreas Müller
@ 2018-10-12 19:55     ` Khem Raj
  0 siblings, 0 replies; 13+ messages in thread
From: Khem Raj @ 2018-10-12 19:55 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

On Fri, Oct 12, 2018 at 12:51 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> On Fri, Oct 12, 2018 at 5:27 PM Armin Kuster <akuster808@gmail.com> wrote:
> >
> > Nothing RPROVIDES 'thunar'
> >
> > Signed-off-by: Armin Kuster <akuster808@gmail.com>
> > ---
> >  meta-oe/recipes-connectivity/blueman/blueman_git.bb | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> >
> If thunar is the only reason then this has to go to append in
> meta-xfce - there thunar PACKAGECONFIG is activated.
>

I agree.

> Andreas
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 17:52   ` Vesa Jääskeläinen
@ 2018-10-12 20:34     ` Burton, Ross
  2018-10-12 21:19     ` akuster808
  1 sibling, 0 replies; 13+ messages in thread
From: Burton, Ross @ 2018-10-12 20:34 UTC (permalink / raw)
  To: dachaac; +Cc: OpenEmbedded Devel List

DirectFB depending on X11 would be *very wrong*.

Ross
On Fri, 12 Oct 2018 at 18:52, Vesa Jääskeläinen <dachaac@gmail.com> wrote:
>
> On 12/10/2018 18.26, Armin Kuster wrote:
>
> > package has depends on vlc and gtk
> >
> > Signed-off-by: Armin Kuster <akuster808@gmail.com>
> > ---
> >   meta-oe/recipes-graphics/directfb/directfb.inc | 3 ++-
> >   1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/meta-oe/recipes-graphics/directfb/directfb.inc b/meta-oe/recipes-graphics/directfb/directfb.inc
> > index 96aa311..cf8f19a 100644
> > --- a/meta-oe/recipes-graphics/directfb/directfb.inc
> > +++ b/meta-oe/recipes-graphics/directfb/directfb.inc
> > @@ -32,7 +32,8 @@ LDFLAGS_append_arm = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -f
> >
> >   BINCONFIG = "${bindir}/directfb-config"
> >
> > -inherit autotools binconfig-disabled pkgconfig
> > +inherit autotools binconfig-disabled pkgconfig distro_features_check
> > +REQUIRED_DISTRO_FEATURES = "x11"
> >
> Wrong method?
>
> Quote from:
> https://github.com/DirectFB/directfb
>
> "Optionally, depending on the configuration you want:
>
>     FBDev
>       - Linux kernel 2.2.x or newer with working frame buffer device
>         (check /proc/fb) for the fbdev system.
>
>     SDL
>       - libSDL (Simple Direct Media Layer) for the sdl system.
>
>     X11
>       - libX11 (X11 client library) for the X11 system (libx11-dev and libxext-dev packages)."
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 17:52   ` Vesa Jääskeläinen
  2018-10-12 20:34     ` Burton, Ross
@ 2018-10-12 21:19     ` akuster808
  1 sibling, 0 replies; 13+ messages in thread
From: akuster808 @ 2018-10-12 21:19 UTC (permalink / raw)
  To: Vesa Jääskeläinen, openembedded-devel



On 10/12/2018 10:52 AM, Vesa Jääskeläinen wrote:
> On 12/10/2018 18.26, Armin Kuster wrote:
>
>> package has depends on vlc and gtk
>>
>> Signed-off-by: Armin Kuster <akuster808@gmail.com>
>> ---
>>   meta-oe/recipes-graphics/directfb/directfb.inc | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta-oe/recipes-graphics/directfb/directfb.inc
>> b/meta-oe/recipes-graphics/directfb/directfb.inc
>> index 96aa311..cf8f19a 100644
>> --- a/meta-oe/recipes-graphics/directfb/directfb.inc
>> +++ b/meta-oe/recipes-graphics/directfb/directfb.inc
>> @@ -32,7 +32,8 @@ LDFLAGS_append_arm =
>> "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -f
>>     BINCONFIG = "${bindir}/directfb-config"
>>   -inherit autotools binconfig-disabled pkgconfig
>> +inherit autotools binconfig-disabled pkgconfig distro_features_check
>> +REQUIRED_DISTRO_FEATURES = "x11"
>>   
> Wrong method?

How about sending a the "Correct method"?

- armin
>
> Quote from:
> https://github.com/DirectFB/directfb
>
> "Optionally, depending on the configuration you want:
>
>    FBDev
>      - Linux kernel 2.2.x or newer with working frame buffer device
>        (check /proc/fb) for the fbdev system.
>
>    SDL
>      - libSDL (Simple Direct Media Layer) for the sdl system.
>
>    X11
>      - libX11 (X11 client library) for the X11 system (libx11-dev and
> libxext-dev packages)."
>



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

* Re: [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES
  2018-10-12 15:26 ` [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES Armin Kuster
  2018-10-12 17:52   ` Vesa Jääskeläinen
@ 2018-10-13  7:48   ` Adrian Bunk
  1 sibling, 0 replies; 13+ messages in thread
From: Adrian Bunk @ 2018-10-13  7:48 UTC (permalink / raw)
  To: Armin Kuster; +Cc: openembedded-devel

On Fri, Oct 12, 2018 at 08:26:17AM -0700, Armin Kuster wrote:
> package has depends on vlc and gtk
>...

Where does directfb depend on vlc and gtk?

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] 13+ messages in thread

end of thread, other threads:[~2018-10-13  7:48 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-12 15:26 [meta-oe][PATCH 0/5] Make meta-oe pass again Armin Kuster
2018-10-12 15:26 ` [meta-oe][PATCH 1/5] directfb: add x11 to REQUIRED_DISTRO_FEATURES Armin Kuster
2018-10-12 17:52   ` Vesa Jääskeläinen
2018-10-12 20:34     ` Burton, Ross
2018-10-12 21:19     ` akuster808
2018-10-13  7:48   ` Adrian Bunk
2018-10-12 15:26 ` [meta-oe][PATCH 2/5] vlc: " Armin Kuster
2018-10-12 15:29   ` Khem Raj
2018-10-12 15:26 ` [meta-oe][PATCH 3/5] directfb-examples: " Armin Kuster
2018-10-12 15:26 ` [meta-oe][PATCH 4/5] blueman: " Armin Kuster
2018-10-12 19:51   ` Andreas Müller
2018-10-12 19:55     ` Khem Raj
2018-10-12 15:26 ` [meta-oe][PATCH 5/5] blueman: really belongs in meta-networking Armin Kuster

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.