All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/23] Fix warings for missing mime-xdg
@ 2020-01-18 11:27 Andreas Müller
  2020-01-18 11:27 ` [PATCH 01/23] gnome-font-viewer: add mime-xdg to inherit Andreas Müller
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

* This series requires [1] which is in oe-core master-next
* It applies on master-next
* There might be other warning for missing mime(-xdg). These are those
  which popped up in my builds which are not world
  
[1] http://lists.openembedded.org/pipermail/openembedded-core/2020-January/291619.html

Andreas Müller (23):
  gnome-font-viewer: add mime-xdg to inherit
  itstool: remove it lives in oe-core now
  evince: add mime-xdg to inherit
  yelp: add mime-xdg to inherit
  geany: add mime-xdg to inherit
  glade: add mime-xdg to inherit
  catfish: add mime-xdg to inherit
  mousepad: add mime-xdg to inherit
  ristretto: add mime-xdg to inherit
  xarchiver: add mime-xdg to inherit
  parole: add mime-xdg to inherit
  exo: add mime-xdg to inherit
  xfce4-panel: add mime-xdg to inherit
  gedit: add mime-xdg to inherit
  thunar: add mime-xdg to inherit
  file-roller: add mime-xdg to inherit
  nautilus: add mime-xdg to inherit
  orage: add mime-xdg to inherit
  vlc: add mime-xdg to inherit
  fltk: add mime-xdg to inherit
  onboard: add mime-xdg to inherit
  gimp: add mime-xdg to inherit
  fontforge: add mime-xdg to inherit

 .../recipes-gnome/evince/evince_3.34.2.bb     |  2 +-
 .../file-roller/file-roller_3.32.3.bb         |  2 +-
 .../recipes-gnome/gedit/gedit_3.34.1.bb       |  2 +-
 .../gnome-font-viewer_3.34.0.bb               |  2 +-
 .../recipes-gnome/nautilus/nautilus_3.34.2.bb |  2 +-
 meta-gnome/recipes-gnome/yelp/yelp_3.34.0.bb  |  2 +-
 .../recipes-support/onboard/onboard_1.4.1.bb  |  2 +-
 .../recipes-multimedia/vlc/vlc_3.0.8.bb       |  2 +-
 meta-oe/recipes-devtools/geany/geany_1.36.bb  |  2 +-
 .../recipes-devtools/glade/glade_3.22.1.bb    |  2 +-
 .../fontforge/fontforge_20190801.bb           |  2 +-
 meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb  |  2 +-
 meta-oe/recipes-support/fltk/fltk.bb          |  2 +-
 ...-build-time-hardcoded-python-binary-.patch | 35 -------------------
 ...ld-time-hardcoded-python-binary-path.patch | 29 ---------------
 .../recipes-support/itstool/itstool_2.0.6.bb  | 20 -----------
 .../recipes-apps/catfish/catfish_1.4.11.bb    |  2 +-
 .../recipes-apps/mousepad/mousepad_0.4.2.bb   |  2 +-
 meta-xfce/recipes-apps/orage/orage_4.12.1.bb  |  2 +-
 .../ristretto/ristretto_0.10.0.bb             |  2 +-
 .../recipes-apps/xarchiver/xarchiver_git.bb   |  2 +-
 .../recipes-multimedia/parole/parole_1.0.5.bb |  2 +-
 meta-xfce/recipes-xfce/exo/exo_0.12.11.bb     |  2 +-
 .../recipes-xfce/thunar/thunar_1.8.10.bb      |  2 +-
 .../xfce4-panel/xfce4-panel_4.14.3.bb         |  2 +-
 25 files changed, 22 insertions(+), 106 deletions(-)
 delete mode 100644 meta-oe/recipes-support/itstool/itstool/0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch
 delete mode 100644 meta-oe/recipes-support/itstool/itstool/0002-Don-t-use-build-time-hardcoded-python-binary-path.patch
 delete mode 100644 meta-oe/recipes-support/itstool/itstool_2.0.6.bb

-- 
2.21.0



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

* [PATCH 01/23] gnome-font-viewer: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 02/23] itstool: remove it lives in oe-core now Andreas Müller
                   ` (21 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../recipes-gnome/gnome-font-viewer/gnome-font-viewer_3.34.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_3.34.0.bb b/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_3.34.0.bb
index d8f7e301e..cf202256b 100644
--- a/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_3.34.0.bb
+++ b/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_3.34.0.bb
@@ -11,7 +11,7 @@ DEPENDS = " \
 
 GNOMEBASEBUILDCLASS = "meson"
 
-inherit gnomebase gtk-icon-cache gettext features_check upstream-version-is-even
+inherit gnomebase gtk-icon-cache gettext features_check upstream-version-is-even mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 02/23] itstool: remove it lives in oe-core now
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
  2020-01-18 11:27 ` [PATCH 01/23] gnome-font-viewer: add mime-xdg to inherit Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 03/23] evince: add mime-xdg to inherit Andreas Müller
                   ` (20 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...-build-time-hardcoded-python-binary-.patch | 35 -------------------
 ...ld-time-hardcoded-python-binary-path.patch | 29 ---------------
 .../recipes-support/itstool/itstool_2.0.6.bb  | 20 -----------
 3 files changed, 84 deletions(-)
 delete mode 100644 meta-oe/recipes-support/itstool/itstool/0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch
 delete mode 100644 meta-oe/recipes-support/itstool/itstool/0002-Don-t-use-build-time-hardcoded-python-binary-path.patch
 delete mode 100644 meta-oe/recipes-support/itstool/itstool_2.0.6.bb

diff --git a/meta-oe/recipes-support/itstool/itstool/0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch b/meta-oe/recipes-support/itstool/itstool/0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch
deleted file mode 100644
index 19a858bd7..000000000
--- a/meta-oe/recipes-support/itstool/itstool/0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 335ef14fc801c9dfbe7e5692dc71cfbe72049d2b Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
-Date: Sun, 27 Oct 2019 16:38:52 +0100
-Subject: [PATCH] Native: Don't use build time hardcoded python binary path.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This is same patch as used for target build except that we do not use the
-'-S' and '-s' option because '-S' is relatively young [1] and elder build-host
-don't support it [2]
-
-[1] https://github.com/coreutils/coreutils/commit/668306ed86c8c79b0af0db8b9c882654ebb66db2#diff-83d9d52b1f12ac589739ab1334ae4f30
-[2] https://errors.yoctoproject.org/Errors/Details/274743/
-
-Upstream-Status: Inappropriate [OE specific]
-
-Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
----
- itstool.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/itstool.in b/itstool.in
-index e64cd34..05d264f 100755
---- a/itstool.in
-+++ b/itstool.in
-@@ -1,4 +1,4 @@
--#!@PYTHON@ -s
-+#!/usr/bin/env python3
- #
- # Copyright (c) 2010-2018 Shaun McCance <shaunm@gnome.org>
- #
--- 
-2.21.0
-
diff --git a/meta-oe/recipes-support/itstool/itstool/0002-Don-t-use-build-time-hardcoded-python-binary-path.patch b/meta-oe/recipes-support/itstool/itstool/0002-Don-t-use-build-time-hardcoded-python-binary-path.patch
deleted file mode 100644
index b91105330..000000000
--- a/meta-oe/recipes-support/itstool/itstool/0002-Don-t-use-build-time-hardcoded-python-binary-path.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From cd9b56224895576125e91cca317ace8a80f3eb77 Mon Sep 17 00:00:00 2001
-From: Piotr Tworek <tworaz@tworaz.net>
-Date: Sat, 27 Jul 2019 10:19:11 +0200
-Subject: [PATCH] Don't use build time hardcoded python binary path.
-
-This path obviously won't work on target since they refer to build
-machine directory structure. Native builds will also fail if local.conf
-has INHERIT+=rm_work. Instread of hardcoding path to python binary use
-whatever is found in PATH first. This should also allow the tool to use
-python3 binary provided in recipe-sysroot-native.
-
-Upstream-Status: Inappropriate [OE specific]
----
- itstool.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/itstool.in b/itstool.in
-index b3c0033..7df2476 100755
---- a/itstool.in
-+++ b/itstool.in
-@@ -1,4 +1,4 @@
--#!@PYTHON@ -s
-+#!/usr/bin/env -S python3 -s
- #
- # Copyright (c) 2010-2018 Shaun McCance <shaunm@gnome.org>
- #
---
-2.21.0
-
diff --git a/meta-oe/recipes-support/itstool/itstool_2.0.6.bb b/meta-oe/recipes-support/itstool/itstool_2.0.6.bb
deleted file mode 100644
index 8290c5e58..000000000
--- a/meta-oe/recipes-support/itstool/itstool_2.0.6.bb
+++ /dev/null
@@ -1,20 +0,0 @@
-SUMMARY = "ITS Tool allows you to translate your XML documents with PO files"
-HOMEPAGE = "http://itstool.org/"
-LICENSE = "GPLv3"
-LIC_FILES_CHKSUM = "file://COPYING;md5=59c57b95fd7d0e9e238ebbc7ad47c5a5"
-
-inherit autotools python3native
-
-DEPENDS = "libxml2-native"
-
-SRC_URI = "http://files.itstool.org/${BPN}/${BPN}-${PV}.tar.bz2"
-SRC_URI_append_class-native = " file://0001-Native-Don-t-use-build-time-hardcoded-python-binary-.patch"
-SRC_URI_append_class-target = " file://0002-Don-t-use-build-time-hardcoded-python-binary-path.patch"
-
-SRC_URI[md5sum] = "4306eeba4f4aee6b393d14f9c3c57ca1"
-SRC_URI[sha256sum] = "6233cc22726a9a5a83664bf67d1af79549a298c23185d926c3677afa917b92a9"
-
-BBCLASSEXTEND = "native"
-
-RDEPENDS_${PN} += "libxml2-python"
-RDEPENDS_${PN}_class-native = ""
-- 
2.21.0



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

* [PATCH 03/23] evince: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
  2020-01-18 11:27 ` [PATCH 01/23] gnome-font-viewer: add mime-xdg to inherit Andreas Müller
  2020-01-18 11:27 ` [PATCH 02/23] itstool: remove it lives in oe-core now Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 04/23] yelp: " Andreas Müller
                   ` (19 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/evince/evince_3.34.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/evince/evince_3.34.2.bb b/meta-gnome/recipes-gnome/evince/evince_3.34.2.bb
index 8f669c9db..b792d4fcb 100644
--- a/meta-gnome/recipes-gnome/evince/evince_3.34.2.bb
+++ b/meta-gnome/recipes-gnome/evince/evince_3.34.2.bb
@@ -16,7 +16,7 @@ DEPENDS = " \
     ${@bb.utils.contains('DISTRO_FEATURES','x11','gnome-desktop3','',d)} \
 "
 
-inherit gnomebase itstool gnome-help pkgconfig gsettings gobject-introspection upstream-version-is-even gettext features_check
+inherit gnomebase itstool gnome-help pkgconfig gsettings gobject-introspection upstream-version-is-even gettext features_check mime-xdg
 
 SRC_URI[archive.md5sum] = "9e9e82fa8f6045ad7817157d9335d185"
 SRC_URI[archive.sha256sum] = "3cc0955f11204e3a2db1c7ab99b866692749592257485b87304134ad69da0617"
-- 
2.21.0



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

* [PATCH 04/23] yelp: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (2 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 03/23] evince: add mime-xdg to inherit Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 05/23] geany: " Andreas Müller
                   ` (18 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/yelp/yelp_3.34.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/yelp/yelp_3.34.0.bb b/meta-gnome/recipes-gnome/yelp/yelp_3.34.0.bb
index 348727e44..f0106166f 100644
--- a/meta-gnome/recipes-gnome/yelp/yelp_3.34.0.bb
+++ b/meta-gnome/recipes-gnome/yelp/yelp_3.34.0.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = " \
     file://COPYING;md5=6e1b9cb787e76d7e6946887a65caa754 \
 "
 
-inherit gnomebase itstool autotools-brokensep gsettings gettext gtk-doc features_check
+inherit gnomebase itstool autotools-brokensep gsettings gettext gtk-doc features_check mime-xdg
 
 # for webkitgtk
 REQUIRED_DISTRO_FEATURES = "x11"
-- 
2.21.0



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

* [PATCH 05/23] geany: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (3 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 04/23] yelp: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 06/23] glade: " Andreas Müller
                   ` (17 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-oe/recipes-devtools/geany/geany_1.36.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/geany/geany_1.36.bb b/meta-oe/recipes-devtools/geany/geany_1.36.bb
index 17e16bf56..8282091b3 100644
--- a/meta-oe/recipes-devtools/geany/geany_1.36.bb
+++ b/meta-oe/recipes-devtools/geany/geany_1.36.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=bd7b2c994af21d318bd2cd3b3f80c2d5"
 
 DEPENDS = "gtk+3 libxml-parser-perl-native python3-docutils-native intltool-native"
 
-inherit features_check autotools pkgconfig perlnative gettext
+inherit features_check autotools pkgconfig perlnative gettext mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 06/23] glade: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (4 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 05/23] geany: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 07/23] catfish: " Andreas Müller
                   ` (16 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-oe/recipes-devtools/glade/glade_3.22.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/glade/glade_3.22.1.bb b/meta-oe/recipes-devtools/glade/glade_3.22.1.bb
index cdd7057b3..01decabea 100644
--- a/meta-oe/recipes-devtools/glade/glade_3.22.1.bb
+++ b/meta-oe/recipes-devtools/glade/glade_3.22.1.bb
@@ -9,7 +9,7 @@ DEPENDS = "gtk+ gtk+3 glib-2.0 libxml2 intltool-native \
 "
 
 
-inherit features_check autotools pkgconfig gnomebase gobject-introspection
+inherit features_check autotools pkgconfig gnomebase gobject-introspection mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 07/23] catfish: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (5 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 06/23] glade: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 08/23] mousepad: " Andreas Müller
                   ` (15 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-apps/catfish/catfish_1.4.11.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/catfish/catfish_1.4.11.bb b/meta-xfce/recipes-apps/catfish/catfish_1.4.11.bb
index 4152e1583..27b5d5ed4 100644
--- a/meta-xfce/recipes-apps/catfish/catfish_1.4.11.bb
+++ b/meta-xfce/recipes-apps/catfish/catfish_1.4.11.bb
@@ -3,7 +3,7 @@ SECTION = "x11/application"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4"
 
-inherit xfce-app distutils3 gtk-icon-cache
+inherit xfce-app distutils3 gtk-icon-cache mime-xdg
 
 DEPENDS += "python3-distutils-extra-native"
 
-- 
2.21.0



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

* [PATCH 08/23] mousepad: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (6 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 07/23] catfish: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 09/23] ristretto: " Andreas Müller
                   ` (14 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-apps/mousepad/mousepad_0.4.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/mousepad/mousepad_0.4.2.bb b/meta-xfce/recipes-apps/mousepad/mousepad_0.4.2.bb
index 4bf10a47b..29038ac19 100644
--- a/meta-xfce/recipes-apps/mousepad/mousepad_0.4.2.bb
+++ b/meta-xfce/recipes-apps/mousepad/mousepad_0.4.2.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
 DEPENDS = "gtk+3 gtksourceview3 xfconf xfce4-dev-tools-native"
 
-inherit xfce-app gsettings
+inherit xfce-app gsettings mime-xdg
 
 SRC_URI[md5sum] = "98d908842d4a93c35756a67d681c08fe"
 SRC_URI[sha256sum] = "84c02adfca7f8b33b9466a306ded72fb9f38f93c9edb78660343854c4a3aded7"
-- 
2.21.0



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

* [PATCH 09/23] ristretto: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (7 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 08/23] mousepad: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 10/23] xarchiver: " Andreas Müller
                   ` (13 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-apps/ristretto/ristretto_0.10.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/ristretto/ristretto_0.10.0.bb b/meta-xfce/recipes-apps/ristretto/ristretto_0.10.0.bb
index 9c5bb12e8..fbca96f60 100644
--- a/meta-xfce/recipes-apps/ristretto/ristretto_0.10.0.bb
+++ b/meta-xfce/recipes-apps/ristretto/ristretto_0.10.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=35d145429ad3cbf5308d1dc93f66376b"
 
 DEPENDS = "exo libexif libxfce4ui libxfce4util xfconf cairo file"
 
-inherit xfce-app
+inherit xfce-app mime-xdg
 
 RRECOMMENDS_${PN} += "tumbler"
 
-- 
2.21.0



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

* [PATCH 10/23] xarchiver: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (8 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 09/23] ristretto: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 11/23] parole: " Andreas Müller
                   ` (12 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb b/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb
index d6990476a..64582f28f 100644
--- a/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb
+++ b/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb
@@ -12,7 +12,7 @@ SRCREV = "9ab958a4023b62b43972c55a3143ff0722bd88a6"
 PV = "0.5.4.14"
 S = "${WORKDIR}/git"
 
-inherit gettext pkgconfig autotools gtk-icon-cache features_check
+inherit gettext pkgconfig autotools gtk-icon-cache features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 11/23] parole: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (9 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 10/23] xarchiver: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 12/23] exo: " Andreas Müller
                   ` (11 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-multimedia/parole/parole_1.0.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-multimedia/parole/parole_1.0.5.bb b/meta-xfce/recipes-multimedia/parole/parole_1.0.5.bb
index efee1aa93..f55b19459 100644
--- a/meta-xfce/recipes-multimedia/parole/parole_1.0.5.bb
+++ b/meta-xfce/recipes-multimedia/parole/parole_1.0.5.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://docs.xfce.org/apps/parole/start"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 
-inherit xfce-app gtk-doc mime
+inherit xfce-app gtk-doc mime mime-xdg
 
 DEPENDS += " \
     dbus-glib \
-- 
2.21.0



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

* [PATCH 12/23] exo: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (10 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 11/23] parole: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 13/23] xfce4-panel: " Andreas Müller
                   ` (10 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-xfce/exo/exo_0.12.11.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-xfce/exo/exo_0.12.11.bb b/meta-xfce/recipes-xfce/exo/exo_0.12.11.bb
index 4c16689d3..4a5a7720e 100644
--- a/meta-xfce/recipes-xfce/exo/exo_0.12.11.bb
+++ b/meta-xfce/recipes-xfce/exo/exo_0.12.11.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 DEPENDS = "gtk+3 libxfce4ui virtual/libx11 liburi-perl-native cairo"
 DEPENDS_class-native = "glib-2.0-native xfce4-dev-tools-native intltool-native"
 
-inherit xfce perlnative gtk-doc features_check
+inherit xfce perlnative gtk-doc features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 REQUIRED_DISTRO_FEATURES_class-native = ""
-- 
2.21.0



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

* [PATCH 13/23] xfce4-panel: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (11 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 12/23] exo: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 14/23] gedit: " Andreas Müller
                   ` (9 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.3.bb b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.3.bb
index 677d07c8a..76abef054 100644
--- a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.3.bb
+++ b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.3.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=26a8bd75d8f8498bdbbe64a27791d4ee"
 DEPENDS = "garcon exo gtk+3 cairo virtual/libx11 libxml2 libwnck3 vala-native"
 
-inherit xfce gtk-doc gobject-introspection features_check remove-libtool
+inherit xfce gtk-doc gobject-introspection features_check remove-libtool mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 14/23] gedit: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (12 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 13/23] xfce4-panel: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 15/23] thunar: " Andreas Müller
                   ` (8 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/gedit/gedit_3.34.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/gedit/gedit_3.34.1.bb b/meta-gnome/recipes-gnome/gedit/gedit_3.34.1.bb
index 20806bd59..850ba4df9 100644
--- a/meta-gnome/recipes-gnome/gedit/gedit_3.34.1.bb
+++ b/meta-gnome/recipes-gnome/gedit/gedit_3.34.1.bb
@@ -19,7 +19,7 @@ DEPENDS = " \
     gtksourceview4 \
 "
 
-inherit gnomebase gsettings itstool gnome-help gobject-introspection gtk-doc vala gettext features_check upstream-version-is-even
+inherit gnomebase gsettings itstool gnome-help gobject-introspection gtk-doc vala gettext features_check upstream-version-is-even mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 15/23] thunar: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (13 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 14/23] gedit: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 16/23] file-roller: " Andreas Müller
                   ` (7 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-xfce/thunar/thunar_1.8.10.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-xfce/thunar/thunar_1.8.10.bb b/meta-xfce/recipes-xfce/thunar/thunar_1.8.10.bb
index f2376aa52..eb57daefc 100644
--- a/meta-xfce/recipes-xfce/thunar/thunar_1.8.10.bb
+++ b/meta-xfce/recipes-xfce/thunar/thunar_1.8.10.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 DEPENDS = "exo gdk-pixbuf libxfce4ui libsm startup-notification libnotify xfce4-panel udev"
 
-inherit xfce gobject-introspection features_check
+inherit xfce gobject-introspection features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 16/23] file-roller: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (14 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 15/23] thunar: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 17/23] nautilus: " Andreas Müller
                   ` (6 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/file-roller/file-roller_3.32.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/file-roller/file-roller_3.32.3.bb b/meta-gnome/recipes-gnome/file-roller/file-roller_3.32.3.bb
index 3ab9668ec..f6b045786 100644
--- a/meta-gnome/recipes-gnome/file-roller/file-roller_3.32.3.bb
+++ b/meta-gnome/recipes-gnome/file-roller/file-roller_3.32.3.bb
@@ -11,7 +11,7 @@ DEPENDS = " \
     libnotify \
 "
 
-inherit gnomebase gsettings itstool gnome-help gettext upstream-version-is-even
+inherit gnomebase gsettings itstool gnome-help gettext upstream-version-is-even mime-xdg
 
 SRC_URI[archive.md5sum] = "5e098bb254d34f48a9b5761b468f4240"
 SRC_URI[archive.sha256sum] = "be111fb877dc1eb487ec5d6e2b72ba5defe1ab8033a6a6b9b9044a2a7787e22a"
-- 
2.21.0



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

* [PATCH 17/23] nautilus: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (15 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 16/23] file-roller: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 18/23] orage: " Andreas Müller
                   ` (5 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/nautilus/nautilus_3.34.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-gnome/nautilus/nautilus_3.34.2.bb b/meta-gnome/recipes-gnome/nautilus/nautilus_3.34.2.bb
index bacc967a3..10dea944e 100644
--- a/meta-gnome/recipes-gnome/nautilus/nautilus_3.34.2.bb
+++ b/meta-gnome/recipes-gnome/nautilus/nautilus_3.34.2.bb
@@ -15,7 +15,7 @@ DEPENDS = " \
     tracker \
 "
 
-inherit gnomebase gsettings gobject-introspection gtk-doc gettext features_check upstream-version-is-even
+inherit gnomebase gsettings gobject-introspection gtk-doc gettext features_check upstream-version-is-even mime-xdg
 
 SRC_URI[archive.md5sum] = "88573061544040c0ff960f934aa83719"
 SRC_URI[archive.sha256sum] = "bb06e226b965f479a0b8668c19c8e1762b9d8f039af6817961cc7a8f09e6f8a7"
-- 
2.21.0



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

* [PATCH 18/23] orage: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (16 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 17/23] nautilus: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 19/23] vlc: " Andreas Müller
                   ` (4 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-xfce/recipes-apps/orage/orage_4.12.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/orage/orage_4.12.1.bb b/meta-xfce/recipes-apps/orage/orage_4.12.1.bb
index 9662b614f..ae8180233 100644
--- a/meta-xfce/recipes-apps/orage/orage_4.12.1.bb
+++ b/meta-xfce/recipes-apps/orage/orage_4.12.1.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88"
 DEPENDS = "gtk+ xfce4-panel libical popt"
 
-inherit xfce-app
+inherit xfce-app mime-xdg
 
 SRC_URI += "file://0001-drop-setting-is_utc-member-of-icaltimetype.patch"
 
-- 
2.21.0



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

* [PATCH 19/23] vlc: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (17 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 18/23] orage: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 20/23] fltk: " Andreas Müller
                   ` (3 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-multimedia/recipes-multimedia/vlc/vlc_3.0.8.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.8.bb b/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.8.bb
index fa7174d32..e29ade65c 100644
--- a/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.8.bb
+++ b/meta-multimedia/recipes-multimedia/vlc/vlc_3.0.8.bb
@@ -24,7 +24,7 @@ SRC_URI = "http://download.videolan.org/pub/videolan/${BPN}/${PV}/${BP}.tar.xz \
 SRC_URI[md5sum] = "744442ec0c145453ea1d257914c8072e"
 SRC_URI[sha256sum] = "e0149ef4a20a19b9ecd87309c2d27787ee3f47dfd47c6639644bc1f6fd95bdf6"
 
-inherit autotools gettext pkgconfig features_check
+inherit autotools gettext pkgconfig features_check mime-xdg
 
 ARM_INSTRUCTION_SET = "arm"
 export BUILDCC = "${BUILD_CC}"
-- 
2.21.0



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

* [PATCH 20/23] fltk: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (18 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 19/23] vlc: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 21/23] onboard: " Andreas Müller
                   ` (2 subsequent siblings)
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-oe/recipes-support/fltk/fltk.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/fltk/fltk.bb b/meta-oe/recipes-support/fltk/fltk.bb
index 0d033f361..09344cf7d 100644
--- a/meta-oe/recipes-support/fltk/fltk.bb
+++ b/meta-oe/recipes-support/fltk/fltk.bb
@@ -2,7 +2,7 @@ require ${BPN}.inc
 
 DEPENDS = "alsa-lib zlib jpeg libpng libxext libxft"
 
-inherit features_check binconfig lib_package gtk-icon-cache mime
+inherit features_check binconfig lib_package gtk-icon-cache mime mime-xdg
 REQUIRED_DISTRO_FEATURES = "x11"
 
 SRC_URI += " \
-- 
2.21.0



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

* [PATCH 21/23] onboard: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (19 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 20/23] fltk: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 22/23] gimp: " Andreas Müller
  2020-01-18 11:27 ` [PATCH 23/23] fontforge: " Andreas Müller
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-support/onboard/onboard_1.4.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb b/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb
index 03fd0517b..1eb4a100c 100644
--- a/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb
+++ b/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb
@@ -10,7 +10,7 @@ SRC_URI = "https://launchpad.net/onboard/1.4/${PV}/+download/${BPN}-${PV}.tar.gz
 SRC_URI[md5sum] = "1a2fbe82e934f5b37841d17ff51e80e8"
 SRC_URI[sha256sum] = "01cae1ac5b1ef1ab985bd2d2d79ded6fc99ee04b1535cc1bb191e43a231a3865"
 
-inherit features_check setuptools3 pkgconfig gtk-icon-cache gsettings
+inherit features_check setuptools3 pkgconfig gtk-icon-cache gsettings mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 22/23] gimp: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (20 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 21/23] onboard: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  2020-01-18 11:27 ` [PATCH 23/23] fontforge: " Andreas Müller
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 024534508..718f8998c 100644
--- a/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
+++ b/meta-oe/recipes-graphics/gimp/gimp_2.8.22.bb
@@ -25,7 +25,7 @@ DEPENDS = " \
 "
 DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'libxmu libxpm', '', d)}"
 
-inherit features_check gnomebase gtk-icon-cache gtk-doc
+inherit features_check gnomebase gtk-icon-cache gtk-doc mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-- 
2.21.0



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

* [PATCH 23/23] fontforge: add mime-xdg to inherit
  2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
                   ` (21 preceding siblings ...)
  2020-01-18 11:27 ` [PATCH 22/23] gimp: " Andreas Müller
@ 2020-01-18 11:27 ` Andreas Müller
  22 siblings, 0 replies; 24+ messages in thread
From: Andreas Müller @ 2020-01-18 11:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-oe/recipes-graphics/fontforge/fontforge_20190801.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/fontforge/fontforge_20190801.bb b/meta-oe/recipes-graphics/fontforge/fontforge_20190801.bb
index b84806fd6..c12d01e2d 100644
--- a/meta-oe/recipes-graphics/fontforge/fontforge_20190801.bb
+++ b/meta-oe/recipes-graphics/fontforge/fontforge_20190801.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = " \
 DEPENDS = "glib-2.0 pango giflib tiff libxml2 jpeg libtool uthash gettext-native"
 DEPENDS_append_class-target = " libxi"
 
-inherit autotools pkgconfig python3native features_check gettext gtk-icon-cache mime
+inherit autotools pkgconfig python3native features_check gettext gtk-icon-cache mime mime-xdg
 
 REQUIRED_DISTRO_FEATURES_append_class-target = " x11"
 
-- 
2.21.0



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

end of thread, other threads:[~2020-01-18 11:28 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-18 11:27 [PATCH 00/23] Fix warings for missing mime-xdg Andreas Müller
2020-01-18 11:27 ` [PATCH 01/23] gnome-font-viewer: add mime-xdg to inherit Andreas Müller
2020-01-18 11:27 ` [PATCH 02/23] itstool: remove it lives in oe-core now Andreas Müller
2020-01-18 11:27 ` [PATCH 03/23] evince: add mime-xdg to inherit Andreas Müller
2020-01-18 11:27 ` [PATCH 04/23] yelp: " Andreas Müller
2020-01-18 11:27 ` [PATCH 05/23] geany: " Andreas Müller
2020-01-18 11:27 ` [PATCH 06/23] glade: " Andreas Müller
2020-01-18 11:27 ` [PATCH 07/23] catfish: " Andreas Müller
2020-01-18 11:27 ` [PATCH 08/23] mousepad: " Andreas Müller
2020-01-18 11:27 ` [PATCH 09/23] ristretto: " Andreas Müller
2020-01-18 11:27 ` [PATCH 10/23] xarchiver: " Andreas Müller
2020-01-18 11:27 ` [PATCH 11/23] parole: " Andreas Müller
2020-01-18 11:27 ` [PATCH 12/23] exo: " Andreas Müller
2020-01-18 11:27 ` [PATCH 13/23] xfce4-panel: " Andreas Müller
2020-01-18 11:27 ` [PATCH 14/23] gedit: " Andreas Müller
2020-01-18 11:27 ` [PATCH 15/23] thunar: " Andreas Müller
2020-01-18 11:27 ` [PATCH 16/23] file-roller: " Andreas Müller
2020-01-18 11:27 ` [PATCH 17/23] nautilus: " Andreas Müller
2020-01-18 11:27 ` [PATCH 18/23] orage: " Andreas Müller
2020-01-18 11:27 ` [PATCH 19/23] vlc: " Andreas Müller
2020-01-18 11:27 ` [PATCH 20/23] fltk: " Andreas Müller
2020-01-18 11:27 ` [PATCH 21/23] onboard: " Andreas Müller
2020-01-18 11:27 ` [PATCH 22/23] gimp: " Andreas Müller
2020-01-18 11:27 ` [PATCH 23/23] fontforge: " Andreas Müller

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.