Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *shared-mime-info* to *2.4* 
has Succeeded.

Next steps:
    - apply the patch: git am 0001-shared-mime-info-upgrade-2.3-2.4.patch
    - check the changes to upstream patches and summarize them in the commit 
message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 3cb8249c909b31ee8ea89f270f7509286a75be26 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Wed, 15 Nov 2023 14:16:55 +0000
Subject: [PATCH] shared-mime-info: upgrade 2.3 -> 2.4

---
 .../0001-Fix-literal-as-per-c-11.patch        | 279 ------------------
 ...001-Fix-string-literal-concatenation.patch |  39 ---
 .../shared-mime-info/shared-mime-info_git.bb  |   9 +-
 3 files changed, 3 insertions(+), 324 deletions(-)
 delete mode 100644 
meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-literal-as-per-c-11.patch
 delete mode 100644 
meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-string-literal-concatenation.patch

diff --git 
a/meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-literal-as-per-c-11.patch
 
b/meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-literal-as-per-c-11.patch
deleted file mode 100644
index 25f409c206..0000000000
--- 
a/meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-literal-as-per-c-11.patch
+++ /dev/null
@@ -1,279 +0,0 @@
-From 157c16b09f54741aefbc4be6a3507455f0378389 Mon Sep 17 00:00:00 2001
-From: Biswapriyo Nath <[email protected]>
-Date: Sun, 8 Oct 2023 13:26:43 +0000
-Subject: [PATCH] Fix missing sentinel warning with clang
-
-This fixes the compiler warnings similar as following.
-
-../src/update-mime-database.cpp:393:50: warning: missing sentinel in function 
call [-Wsentinel]
-  393 |                         g_strconcat(namespaceURI, " ", localName, 
NULL),
-      |                                                                       ^
-      |                                                                       
, nullptr
-
-Upstream-Status: Backport 
[https://gitlab.freedesktop.org/xdg/shared-mime-info/-/commit/157c16b09f54741aefbc4be6a3507455f0378389]
-Signed-off-by: Khem Raj <[email protected]>
----
- src/update-mime-database.cpp | 58 ++++++++++++++++++------------------
- 1 file changed, 29 insertions(+), 29 deletions(-)
-
---- a/src/update-mime-database.cpp
-+++ b/src/update-mime-database.cpp
-@@ -390,7 +390,7 @@ static void add_namespace(Type *type, co
-       }
- 
-       g_hash_table_insert(namespace_hash,
--                      g_strconcat(namespaceURI, " ", localName, NULL),
-+                      g_strconcat(namespaceURI, " ", localName, nullptr),
-                       type);
- }
- 
-@@ -1023,7 +1023,7 @@ static void write_out_type(gpointer key,
-       char *lower;
- 
-       lower = g_ascii_strdown(type->media, -1);
--      media = g_strconcat(mime_dir, "/", lower, NULL);
-+      media = g_strconcat(mime_dir, "/", lower, nullptr);
-       g_free(lower);
- #ifdef _WIN32
-       fs::create_directory(media);
-@@ -1032,7 +1032,7 @@ static void write_out_type(gpointer key,
- #endif
- 
-       lower = g_ascii_strdown(type->subtype, -1);
--      filename = g_strconcat(media, "/", lower, ".xml.new", NULL);
-+      filename = g_strconcat(media, "/", lower, ".xml.new", nullptr);
-       g_free(lower);
-       g_free(media);
-       media = NULL;
-@@ -1622,7 +1622,7 @@ static Magic *magic_new(xmlNode *node, T
-                       magic_free(magic);
-                       magic = NULL;
-                       (*error)->message = g_strconcat(
--                              _("Error in <match> element: "), old, NULL);
-+                              _("Error in <match> element: "), old, nullptr);
-                       g_free(old);
-               } else if (magic->matches == NULL) {
-                       magic_free(magic);
-@@ -1843,7 +1843,7 @@ static TreeMagic *tree_magic_new(xmlNode
-                       tree_magic_free(magic);
-                       magic = NULL;
-                       (*error)->message = g_strconcat(
--                              _("Error in <treematch> element: "), old, NULL);
-+                              _("Error in <treematch> element: "), old, 
nullptr);
-                       g_free(old);
-               }
-       }
-@@ -1960,7 +1960,7 @@ static void delete_old_types(const gchar
- 
-       for (i = 0; i < G_N_ELEMENTS(media_types); i++)
-       {
--              const fs::path media_dir = g_strconcat(mime_dir, "/", 
media_types[i], NULL);
-+              const fs::path media_dir = g_strconcat(mime_dir, "/", 
media_types[i], nullptr);
- 
-               if (!fs::is_directory(fs::status(media_dir)))
-                       continue;
-@@ -1973,13 +1973,13 @@ static void delete_old_types(const gchar
-                               continue;
- 
-                       char *type_name = g_strconcat(media_types[i], "/",
--                                              
dir_entry.path().filename().string().c_str(), NULL);
-+                                              
dir_entry.path().filename().string().c_str(), nullptr);
-                       type_name[strlen(type_name) - 4] = '\0';
-                       if (!g_hash_table_lookup(types, type_name))
-                       {
-                               char *path;
-                               path = g_strconcat(mime_dir, "/",
--                                              type_name, ".xml", NULL);
-+                                              type_name, ".xml", nullptr);
- #if 0
-                               g_warning("Removing old info for type %s",
-                                               path);
-@@ -2002,7 +2002,7 @@ static void add_ns(gpointer key, gpointe
-       Type *type = (Type *) value;
- 
-       g_ptr_array_add(lines, g_strconcat(ns, " ", type->media,
--                                         "/", type->subtype, "\n", NULL));
-+                                         "/", type->subtype, "\n", nullptr));
- }
- 
- /* Write all the collected namespace rules to 'XMLnamespaces' */
-@@ -2038,7 +2038,7 @@ static void write_subclass(gpointer key,
- 
-       for (l = list; l; l = l->next)
-       {
--              line = g_strconcat (static_cast<const gchar *>(key), " ", 
l->data, "\n", NULL);
-+              line = g_strconcat (static_cast<const gchar *>(key), " ", 
l->data, "\n", nullptr);
-               fwrite(line, 1, strlen(line), stream);
-               g_free (line);
-       }
-@@ -2061,7 +2061,7 @@ static void add_alias(gpointer key, gpoi
-       
-       g_ptr_array_add(lines, g_strconcat(alias, " ", type->media,
-                                          "/", type->subtype, "\n", 
--                                         NULL));
-+                                         nullptr));
- }
- 
- /* Write all the collected aliases */
-@@ -2092,7 +2092,7 @@ static void add_type(gpointer key, gpoin
- {
-       GPtrArray *lines = (GPtrArray *) data;
-       
--      g_ptr_array_add(lines, g_strconcat((char *)key, "\n", NULL));
-+      g_ptr_array_add(lines, g_strconcat((char *)key, "\n", nullptr));
- }
- 
- /* Write all the collected types */
-@@ -2127,7 +2127,7 @@ static void write_one_icon(gpointer key,
-       FILE *stream = (FILE *)data;
-       char *line;
- 
--      line = g_strconcat (mimetype, ":", iconname, "\n", NULL);
-+      line = g_strconcat (mimetype, ":", iconname, "\n", nullptr);
-       fwrite(line, 1, strlen(line), stream);
-       g_free (line);
- }
-@@ -2168,7 +2168,7 @@ static void check_in_path_xdg_data(const
-               dirs[n] = g_strdup(env);
-       else
-               dirs[n] = g_build_filename(g_get_home_dir(), ".local",
--                                              "share", NULL);
-+                                              "share", nullptr);
-       n++;
- 
-       for (i = 0; i < n; i++)
-@@ -3588,7 +3588,7 @@ newest_mtime(const char *packagedir)
-       while ((name = g_dir_read_name(dir))) {
-               char *path;
- 
--              path = g_build_filename(packagedir, name, NULL);
-+              path = g_build_filename(packagedir, name, nullptr);
-               retval = g_stat(path, &statbuf);
-               g_free(path);
-               if (retval < 0)
-@@ -3609,7 +3609,7 @@ is_cache_up_to_date (const char *mimedir
-       char *mimeversion;
-       int retval;
- 
--      mimeversion = g_build_filename(mimedir, "/version", NULL);
-+      mimeversion = g_build_filename(mimedir, "/version", nullptr);
-       retval = g_stat(mimeversion, &version_stat);
-       g_free(mimeversion);
-       if (retval < 0)
-@@ -3694,7 +3694,7 @@ int main(int argc, char **argv)
-               }
-       }
- 
--      package_dir = g_strconcat(mime_dir, "/packages", NULL);
-+      package_dir = g_strconcat(mime_dir, "/packages", nullptr);
- 
-       if (!fs::exists(mime_dir) && !fs::is_directory(fs::status(mime_dir)))
-       {
-@@ -3747,7 +3747,7 @@ int main(int argc, char **argv)
- 
-               g_hash_table_foreach(globs_hash, collect_glob2, &glob_list);
-               glob_list = g_list_sort(glob_list, 
(GCompareFunc)compare_glob_by_weight);
--              globs_path = g_strconcat(mime_dir, "/globs.new", NULL);
-+              globs_path = g_strconcat(mime_dir, "/globs.new", nullptr);
-               globs = fopen_gerror(globs_path, error);
-               if (!globs)
-                       goto out;
-@@ -3761,7 +3761,7 @@ int main(int argc, char **argv)
-                       goto out;
-               g_free(globs_path);
- 
--              globs_path = g_strconcat(mime_dir, "/globs2.new", NULL);
-+              globs_path = g_strconcat(mime_dir, "/globs2.new", nullptr);
-               globs = fopen_gerror(globs_path, error);
-               if (!globs)
-                       goto out;
-@@ -3782,7 +3782,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *magic_path;
-               int i;
--              magic_path = g_strconcat(mime_dir, "/magic.new", NULL);
-+              magic_path = g_strconcat(mime_dir, "/magic.new", nullptr);
-               stream = fopen_gerror(magic_path, error);
-               if (!stream)
-                       goto out;
-@@ -3807,7 +3807,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *ns_path;
- 
--              ns_path = g_strconcat(mime_dir, "/XMLnamespaces.new", NULL);
-+              ns_path = g_strconcat(mime_dir, "/XMLnamespaces.new", nullptr);
-               stream = fopen_gerror(ns_path, error);
-               if (!stream)
-                       goto out;
-@@ -3823,7 +3823,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *path;
-               
--              path = g_strconcat(mime_dir, "/subclasses.new", NULL);
-+              path = g_strconcat(mime_dir, "/subclasses.new", nullptr);
-               stream = fopen_gerror(path, error);
-               if (!stream)
-                       goto out;
-@@ -3839,7 +3839,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *path;
-               
--              path = g_strconcat(mime_dir, "/aliases.new", NULL);
-+              path = g_strconcat(mime_dir, "/aliases.new", nullptr);
-               stream = fopen_gerror(path, error);
-               if (!stream)
-                       goto out;
-@@ -3855,7 +3855,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *path;
-               
--              path = g_strconcat(mime_dir, "/types.new", NULL);
-+              path = g_strconcat(mime_dir, "/types.new", nullptr);
-               stream = fopen_gerror(path, error);
-               if (!stream)
-                       goto out;
-@@ -3871,7 +3871,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *icon_path;
- 
--              icon_path = g_strconcat(mime_dir, "/generic-icons.new", NULL);
-+              icon_path = g_strconcat(mime_dir, "/generic-icons.new", 
nullptr);
-               stream = fopen_gerror(icon_path, error);
-               if (!stream)
-                       goto out;
-@@ -3887,7 +3887,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *icon_path;
- 
--              icon_path = g_strconcat(mime_dir, "/icons.new", NULL);
-+              icon_path = g_strconcat(mime_dir, "/icons.new", nullptr);
-               stream = fopen_gerror(icon_path, error);
-               if (!stream)
-                       goto out;
-@@ -3903,7 +3903,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *path;
-               int i;
--              path = g_strconcat(mime_dir, "/treemagic.new", NULL);
-+              path = g_strconcat(mime_dir, "/treemagic.new", nullptr);
-               stream = fopen_gerror(path, error);
-               if (!stream)
-                       goto out;
-@@ -3928,7 +3928,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *path;
-               
--              path = g_strconcat(mime_dir, "/mime.cache.new", NULL);
-+              path = g_strconcat(mime_dir, "/mime.cache.new", nullptr);
-               stream = fopen_gerror(path, error);
-               if (!stream)
-                       goto out;
-@@ -3944,7 +3944,7 @@ int main(int argc, char **argv)
-               FILE *stream;
-               char *path;
- 
--              path = g_strconcat(mime_dir, "/version.new", NULL);
-+              path = g_strconcat(mime_dir, "/version.new", nullptr);
-               stream = fopen_gerror(path, error);
-               if (!stream)
-                       goto out;
diff --git 
a/meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-string-literal-concatenation.patch
 
b/meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-string-literal-concatenation.patch
deleted file mode 100644
index 7825c39312..0000000000
--- 
a/meta/recipes-support/shared-mime-info/shared-mime-info/0001-Fix-string-literal-concatenation.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From ccf704a606625bc62e70dbe815b309c22a0bda05 Mon Sep 17 00:00:00 2001
-From: Tobias Mayer <[email protected]>
-Date: Sun, 8 Oct 2023 00:11:49 +0200
-Subject: [PATCH] Fix string literal concatenation
-
-Clang is not able to disambiguate between multiple string literatals
-and C++11 user defined literals. Spaces help.
-
-Upstream-Status: Backport 
[https://gitlab.freedesktop.org/xdg/shared-mime-info/-/commit/12a3a6b1141c704fc594379af1808bb9008d588c]
-Signed-off-by: Khem Raj <[email protected]>
----
- src/update-mime-database.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/update-mime-database.cpp b/src/update-mime-database.cpp
-index 733ba06..29d82a9 100644
---- a/src/update-mime-database.cpp
-+++ b/src/update-mime-database.cpp
-@@ -2158,7 +2158,7 @@ static void check_in_path_xdg_data(const char *mime_path)
- 
-       env = getenv("XDG_DATA_DIRS");
-       if (!env)
--              env = "/usr/local/share/"PATH_SEPARATOR"/usr/share/";
-+              env = "/usr/local/share/" PATH_SEPARATOR "/usr/share/";
-       dirs = g_strsplit(env, PATH_SEPARATOR, 0);
-       g_return_if_fail(dirs != NULL);
-       for (n = 0; dirs[n]; n++)
-@@ -2170,7 +2170,7 @@ static void check_in_path_xdg_data(const char *mime_path)
-               dirs[n] = g_build_filename(g_get_home_dir(), ".local",
-                                               "share", NULL);
-       n++;
--      
-+
-       for (i = 0; i < n; i++)
-       {
-               if (stat(dirs[i], &dir_info) == 0 &&
--- 
-2.42.0
-
diff --git a/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb 
b/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb
index cae0064333..937428221e 100644
--- a/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb
+++ b/meta/recipes-support/shared-mime-info/shared-mime-info_git.bb
@@ -8,12 +8,9 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
 DEPENDS = "libxml2 itstool-native glib-2.0 shared-mime-info-native 
xmlto-native"
 
-SRC_URI = 
"git://gitlab.freedesktop.org/xdg/shared-mime-info.git;protocol=https;branch=master
 \
-           file://0001-Fix-string-literal-concatenation.patch \
-           file://0001-Fix-literal-as-per-c-11.patch \
-           "
-SRCREV = "8e80a317f5c61a7f410330abea441e0b0b9280b5"
-PV = "2.3"
+SRC_URI = 
"git://gitlab.freedesktop.org/xdg/shared-mime-info.git;protocol=https;branch=master"
+SRCREV = "9a6d6b8e963935f145f3a1ef446552de6996dada"
+PV = "2.4"
 S = "${WORKDIR}/git"
 
 inherit meson pkgconfig gettext python3native mime
-- 
2.39.2

packages/core2-64-poky-linux/shared-mime-info: SRC_URI changed from 
"git://gitlab.freedesktop.org/xdg/shared-mime-info.git;protocol=https;branch=master
 file://0001-Fix-string-literal-concatenation.patch 
file://0001-Fix-literal-as-per-c-11.patch" to 
"git://gitlab.freedesktop.org/xdg/shared-mime-info.git;protocol=https;branch=master"
packages/core2-64-poky-linux/shared-mime-info: PV changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info: PKGV changed from 2.3 [default] 
to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-data: PV changed 
from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-data: PKGSIZE 
changed from 2459704 to 2470771 (+0%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-data: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-dbg: PV changed 
from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-dbg: PKGSIZE 
changed from 697688 to 699800 (+0%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-dbg: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-dev: PV changed 
from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-dev: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-doc: PV changed 
from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-doc: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-af: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-af: 
PKGSIZE changed from 31803 to 31260 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-af: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ar: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ar: 
PKGSIZE changed from 46388 to 45663 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ar: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-as: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-as: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ast: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ast: 
PKGSIZE changed from 11006 to 10593 (-4%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ast: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-az: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-az: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-be+latin: 
PV changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-be+latin: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-be: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-be: 
PKGSIZE changed from 50252 to 58585 (+17%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-be: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-bg: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-bg: 
PKGSIZE changed from 48300 to 47652 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-bg: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-bn-in: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-bn-in: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ca+valencia:
 PV changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ca+valencia:
 PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ca: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ca: 
PKGSIZE changed from 42281 to 41615 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ca: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-cs: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-cs: 
PKGSIZE changed from 37279 to 36683 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-cs: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-cy: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-cy: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-da: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-da: 
PKGSIZE changed from 40231 to 39599 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-da: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-de: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-de: 
PKGSIZE changed from 51057 to 52191 (+2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-de: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-el: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-el: 
PKGSIZE changed from 39876 to 39181 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-el: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-en-gb: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-en-gb: 
PKGSIZE changed from 42873 to 42175 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-en-gb: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eo: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eo: 
PKGSIZE changed from 19696 to 19606 (-0%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eo: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-es: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-es: 
PKGSIZE changed from 54247 to 55893 (+3%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-es: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-et: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-et: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eu: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eu: 
PKGSIZE changed from 43046 to 48584 (+13%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eu: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fa: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fa: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fi: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fi: 
PKGSIZE changed from 43319 to 42633 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fi: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fo: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fo: 
PKGSIZE changed from 27349 to 26842 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fo: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fr: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fr: 
PKGSIZE changed from 41327 to 40688 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fr: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fur: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fur: 
PKGSIZE changed from 36983 to 36428 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-fur: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ga: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ga: 
PKGSIZE changed from 37088 to 36490 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ga: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-gl: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-gl: 
PKGSIZE changed from 46257 to 45688 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-gl: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-gu: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-gu: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-he: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-he: 
PKGSIZE changed from 46156 to 45442 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-he: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hi: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hi: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hr: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hr: 
PKGSIZE changed from 44374 to 43687 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hr: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hu: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hu: 
PKGSIZE changed from 41200 to 40531 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-hu: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ia: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ia: 
PKGSIZE changed from 33691 to 33147 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ia: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-id: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-id: 
PKGSIZE changed from 40358 to 39731 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-id: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-is: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-is: 
PKGSIZE changed from 40863 to 40237 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-is: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-it: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-it: 
PKGSIZE changed from 51911 to 51185 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-it: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ja: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ja: 
PKGSIZE changed from 48916 to 50279 (+3%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ja: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ka: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ka: 
PKGSIZE changed from 18484 to 18219 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ka: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-kk: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-kk: 
PKGSIZE changed from 50983 to 50126 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-kk: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-kn: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-kn: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ko: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ko: 
PKGSIZE changed from 45004 to 44311 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ko: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ky: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ky: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-lt: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-lt: 
PKGSIZE changed from 30850 to 30299 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-lt: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-lv: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-lv: 
PKGSIZE changed from 30603 to 30063 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-lv: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ml: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ml: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-mr: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-mr: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ms: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ms: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nb: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nb: 
PKGSIZE changed from 23982 to 23459 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nb: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nl: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nl: 
PKGSIZE changed from 43939 to 43203 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nl: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nn: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nn: 
PKGSIZE changed from 24579 to 24066 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-nn: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-oc: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-oc: 
PKGSIZE changed from 36827 to 36276 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-oc: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-or: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-or: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pa: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pa: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pl: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pl: 
PKGSIZE changed from 53042 to 54240 (+2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pl: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pt-br: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pt-br: 
PKGSIZE changed from 46197 to 46531 (+1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pt-br: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pt: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pt: 
PKGSIZE changed from 36335 to 35825 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-pt: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ro: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ro: 
PKGSIZE changed from 28233 to 27690 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ro: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ru: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ru: 
PKGSIZE changed from 51705 to 63213 (+22%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ru: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-rw: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-rw: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-si: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-si: 
PKGSIZE changed from 56160 to 55325 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-si: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sk: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sk: 
PKGSIZE changed from 39017 to 38467 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sk: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sl: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sl: 
PKGSIZE changed from 44544 to 43822 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sl: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sq: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sq: 
PKGSIZE changed from 38779 to 38751 (-0%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sq: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sr+latin: 
PV changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sr+latin: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sr: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sr: 
PKGSIZE changed from 44864 to 44195 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sr: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sv: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sv: 
PKGSIZE changed from 50153 to 51291 (+2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-sv: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ta: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ta: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-te: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-te: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-th: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-th: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-tr: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-tr: 
PKGSIZE changed from 44801 to 43999 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-tr: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-uk: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-uk: 
PKGSIZE changed from 62357 to 63803 (+2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-uk: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-vi: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-vi: 
PKGSIZE changed from 27624 to 27098 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-vi: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-wa: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-wa: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-cn: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-cn: 
PKGSIZE changed from 42065 to 41389 (-2%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-cn: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-hk: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-hk: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-tw: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-tw: 
PKGSIZE changed from 40127 to 39853 (-1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-zh-tw: 
PKGV changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-src: PV changed 
from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-src: PKGSIZE 
changed from 87251 to 87264 (+0%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-src: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-staticdev: PV 
changed from "2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-staticdev: PKGV 
changed from 2.3 [default] to 2.4 [default]
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info: FILELIST: 
removed "/usr/share/mime/application/x-bzip-compressed-tar.xml 
/usr/share/mime/application/x-ms-dos-executable.xml 
/usr/share/mime/application/x-bzip.xml", added 
"/usr/share/mime/text/vbscript.encode.xml 
/usr/share/mime/application/x-bzip1.xml 
/usr/share/mime/application/x-dosexec.xml /usr/share/mime/application/json5.xml 
/usr/share/mime/text/x-vb.xml /usr/share/mime/application/x-powershell.xml 
/usr/share/mime/application/its+xml.xml /usr/share/mime/text/jscript.encode.xml 
/usr/share/mime/application/appinstaller.xml 
/usr/share/mime/application/vnd.cups-ppd.xml 
/usr/share/mime/application/wasm.xml /usr/share/mime/application/appx.xml 
/usr/share/mime/application/msix.xml 
/usr/share/mime/application/vnd.microsoft.portable-executable.xml 
/usr/share/mime/application/x-bzip1-compressed-tar.xml 
/usr/share/mime/application/msixbundle.xml /usr/share/mime/text/x-basic.xml 
/usr/share/mime/application/appxbundle.xml /usr
 /share/mime/application/x-ms-shortcut.xml /usr/share/mime/text/x-component.xml 
/usr/share/mime/application/x-msdownload.xml 
/usr/share/mime/application/x-ms-ne-executable.xml 
/usr/share/mime/chemical/x-pdb.xml"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info: PV changed from 
"2.3" to "2.4"
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info: PKGSIZE changed 
from 2823339 to 2845093 (+1%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info: PKGV changed 
from 2.3 [default] to 2.4 [default]
Changes to packages/core2-64-poky-linux/shared-mime-info (sysroot):
  /usr/share/mime/application/appinstaller.xml was added
  /usr/share/mime/application/appxbundle.xml was added
  /usr/share/mime/application/appx.xml was added
  /usr/share/mime/application/its+xml.xml was added
  /usr/share/mime/application/json5.xml was added
  /usr/share/mime/application/msixbundle.xml was added
  /usr/share/mime/application/msix.xml was added
  /usr/share/mime/application/vnd.cups-ppd.xml was added
  /usr/share/mime/application/vnd.microsoft.portable-executable.xml was added
  /usr/share/mime/application/wasm.xml was added
  /usr/share/mime/application/x-bzip1-compressed-tar.xml was added
  /usr/share/mime/application/x-bzip1.xml was added
  /usr/share/mime/application/x-dosexec.xml was added
  /usr/share/mime/application/x-msdownload.xml was added
  /usr/share/mime/application/x-ms-ne-executable.xml was added
  /usr/share/mime/application/x-ms-shortcut.xml was added
  /usr/share/mime/application/x-powershell.xml was added
  /usr/share/mime/chemical was added
  /usr/share/mime/chemical/x-pdb.xml was added
  /usr/share/mime/text/jscript.encode.xml was added
  /usr/share/mime/text/vbscript.encode.xml was added
  /usr/share/mime/text/x-basic.xml was added
  /usr/share/mime/text/x-component.xml was added
  /usr/share/mime/text/x-vb.xml was added
  /usr/share/mime/application/x-bzip-compressed-tar.xml was removed
  /usr/share/mime/application/x-bzip.xml was removed
  /usr/share/mime/application/x-ms-dos-executable.xml was removed
Changes to packages/x86_64-linux/shared-mime-info-native (sysroot):
  /usr/share/mime/application/appinstaller.xml was added
  /usr/share/mime/application/appxbundle.xml was added
  /usr/share/mime/application/appx.xml was added
  /usr/share/mime/application/its+xml.xml was added
  /usr/share/mime/application/json5.xml was added
  /usr/share/mime/application/msixbundle.xml was added
  /usr/share/mime/application/msix.xml was added
  /usr/share/mime/application/vnd.cups-ppd.xml was added
  /usr/share/mime/application/vnd.microsoft.portable-executable.xml was added
  /usr/share/mime/application/wasm.xml was added
  /usr/share/mime/application/x-bzip1-compressed-tar.xml was added
  /usr/share/mime/application/x-bzip1.xml was added
  /usr/share/mime/application/x-dosexec.xml was added
  /usr/share/mime/application/x-msdownload.xml was added
  /usr/share/mime/application/x-ms-ne-executable.xml was added
  /usr/share/mime/application/x-ms-shortcut.xml was added
  /usr/share/mime/application/x-powershell.xml was added
  /usr/share/mime/chemical was added
  /usr/share/mime/chemical/x-pdb.xml was added
  /usr/share/mime/text/jscript.encode.xml was added
  /usr/share/mime/text/vbscript.encode.xml was added
  /usr/share/mime/text/x-basic.xml was added
  /usr/share/mime/text/x-component.xml was added
  /usr/share/mime/text/x-vb.xml was added
  /usr/share/mime/application/x-bzip-compressed-tar.xml was removed
  /usr/share/mime/application/x-bzip.xml was removed
  /usr/share/mime/application/x-ms-dos-executable.xml was removed

Attachment: 0001-shared-mime-info-upgrade-2.3-2.4.patch
Description: Binary data

packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-be: 
PKGSIZE changed from 50252 to 58585 (+17%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-eu: 
PKGSIZE changed from 43046 to 48584 (+13%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info-locale-ru: 
PKGSIZE changed from 51705 to 63213 (+22%)
packages/core2-64-poky-linux/shared-mime-info/shared-mime-info: FILELIST: 
removed "/usr/share/mime/application/x-ms-dos-executable.xml 
/usr/share/mime/application/x-bzip.xml 
/usr/share/mime/application/x-bzip-compressed-tar.xml", added 
"/usr/share/mime/application/x-ms-ne-executable.xml 
/usr/share/mime/application/appinstaller.xml 
/usr/share/mime/text/vbscript.encode.xml 
/usr/share/mime/application/its+xml.xml 
/usr/share/mime/application/appxbundle.xml 
/usr/share/mime/application/msixbundle.xml /usr/share/mime/text/x-component.xml 
/usr/share/mime/application/x-bzip1-compressed-tar.xml 
/usr/share/mime/text/x-basic.xml 
/usr/share/mime/application/vnd.microsoft.portable-executable.xml 
/usr/share/mime/application/x-bzip1.xml 
/usr/share/mime/application/x-ms-shortcut.xml 
/usr/share/mime/application/msix.xml /usr/share/mime/application/wasm.xml 
/usr/share/mime/application/appx.xml /usr/share/mime/text/jscript.encode.xml 
/usr/share/mime/application/vnd.cups-ppd.xml /usr/share/mime/applicati
 on/x-powershell.xml /usr/share/mime/application/json5.xml 
/usr/share/mime/application/x-msdownload.xml /usr/share/mime/chemical/x-pdb.xml 
/usr/share/mime/text/x-vb.xml /usr/share/mime/application/x-dosexec.xml"
Changes to packages/core2-64-poky-linux/shared-mime-info (sysroot):
  /usr/share/mime/application/appinstaller.xml was added
  /usr/share/mime/application/appxbundle.xml was added
  /usr/share/mime/application/appx.xml was added
  /usr/share/mime/application/its+xml.xml was added
  /usr/share/mime/application/json5.xml was added
  /usr/share/mime/application/msixbundle.xml was added
  /usr/share/mime/application/msix.xml was added
  /usr/share/mime/application/vnd.cups-ppd.xml was added
  /usr/share/mime/application/vnd.microsoft.portable-executable.xml was added
  /usr/share/mime/application/wasm.xml was added
  /usr/share/mime/application/x-bzip1-compressed-tar.xml was added
  /usr/share/mime/application/x-bzip1.xml was added
  /usr/share/mime/application/x-dosexec.xml was added
  /usr/share/mime/application/x-msdownload.xml was added
  /usr/share/mime/application/x-ms-ne-executable.xml was added
  /usr/share/mime/application/x-ms-shortcut.xml was added
  /usr/share/mime/application/x-powershell.xml was added
  /usr/share/mime/chemical was added
  /usr/share/mime/chemical/x-pdb.xml was added
  /usr/share/mime/text/jscript.encode.xml was added
  /usr/share/mime/text/vbscript.encode.xml was added
  /usr/share/mime/text/x-basic.xml was added
  /usr/share/mime/text/x-component.xml was added
  /usr/share/mime/text/x-vb.xml was added
  /usr/share/mime/application/x-bzip-compressed-tar.xml was removed
  /usr/share/mime/application/x-bzip.xml was removed
  /usr/share/mime/application/x-ms-dos-executable.xml was removed
Changes to packages/x86_64-linux/shared-mime-info-native (sysroot):
  /usr/share/mime/application/appinstaller.xml was added
  /usr/share/mime/application/appxbundle.xml was added
  /usr/share/mime/application/appx.xml was added
  /usr/share/mime/application/its+xml.xml was added
  /usr/share/mime/application/json5.xml was added
  /usr/share/mime/application/msixbundle.xml was added
  /usr/share/mime/application/msix.xml was added
  /usr/share/mime/application/vnd.cups-ppd.xml was added
  /usr/share/mime/application/vnd.microsoft.portable-executable.xml was added
  /usr/share/mime/application/wasm.xml was added
  /usr/share/mime/application/x-bzip1-compressed-tar.xml was added
  /usr/share/mime/application/x-bzip1.xml was added
  /usr/share/mime/application/x-dosexec.xml was added
  /usr/share/mime/application/x-msdownload.xml was added
  /usr/share/mime/application/x-ms-ne-executable.xml was added
  /usr/share/mime/application/x-ms-shortcut.xml was added
  /usr/share/mime/application/x-powershell.xml was added
  /usr/share/mime/chemical was added
  /usr/share/mime/chemical/x-pdb.xml was added
  /usr/share/mime/text/jscript.encode.xml was added
  /usr/share/mime/text/vbscript.encode.xml was added
  /usr/share/mime/text/x-basic.xml was added
  /usr/share/mime/text/x-component.xml was added
  /usr/share/mime/text/x-vb.xml was added
  /usr/share/mime/application/x-bzip-compressed-tar.xml was removed
  /usr/share/mime/application/x-bzip.xml was removed
  /usr/share/mime/application/x-ms-dos-executable.xml was removed
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190720): 
https://lists.openembedded.org/g/openembedded-core/message/190720
Mute This Topic: https://lists.openembedded.org/mt/102605856/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to