Hello, this email is a notification from the Auto Upgrade Helper that the automatic attempt to upgrade the recipe(s) *fontconfig* to *2.18.0* has Succeeded.
Next steps:
- apply the patch: git am 0001-fontconfig-upgrade-2.17.1-2.18.0.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 27ba0ac578a9c5a321bfc1d2c31997bb3ede1075 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Mon, 1 Jun 2026 11:15:17 +0000
Subject: [PATCH] fontconfig: upgrade 2.17.1 -> 2.18.0
---
...ded-missing-target-rule-dependencies.patch | 31 ---------
.../fontconfig/fontconfig/musl-fix.patch | 66 -------------------
.../fontconfig/revert-static-pkgconfig.patch | 8 +++
...tconfig_2.17.1.bb => fontconfig_2.18.0.bb} | 4 +-
4 files changed, 9 insertions(+), 100 deletions(-)
delete mode 100644
meta/recipes-graphics/fontconfig/fontconfig/0001-build-Added-missing-target-rule-dependencies.patch
delete mode 100644 meta/recipes-graphics/fontconfig/fontconfig/musl-fix.patch
rename meta/recipes-graphics/fontconfig/{fontconfig_2.17.1.bb =>
fontconfig_2.18.0.bb} (92%)
diff --git
a/meta/recipes-graphics/fontconfig/fontconfig/0001-build-Added-missing-target-rule-dependencies.patch
b/meta/recipes-graphics/fontconfig/fontconfig/0001-build-Added-missing-target-rule-dependencies.patch
deleted file mode 100644
index 40b25cc926..0000000000
---
a/meta/recipes-graphics/fontconfig/fontconfig/0001-build-Added-missing-target-rule-dependencies.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 0bba79bfd3d8a216794d15af97ce4abefd4b8748 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Florian=20=22sp1rit=22=E2=80=8B?= <[email protected]>
-Date: Sat, 9 Aug 2025 20:22:43 +0200
-Subject: [PATCH] build: Added missing target rule-dependencies
-
-02b835b62 did not appropriately ensure, that the patternlib_internal
-target waits until the {ft_,}alias_headers have finished generating the
-headers that it depends on.
-
-Upstream-Status: Backport [0bba79bfd3d8a216794d15af97ce4abefd4b8748]
-Signed-off-by: Ross Burton <[email protected]>
----
- src/meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/meson.build b/src/meson.build
-index c4d65d6c..10866aa8 100644
---- a/src/meson.build
-+++ b/src/meson.build
-@@ -9,7 +9,7 @@ endif
- # Factor our pattern manipulation code into its own library
- # to break the depedency cycle:
- # FontConfig pattern handling - Fontations code - FontConfig.
--pattern_sources = [ 'fcpat.c', fcstdint_h, fclang_h ]
-+pattern_sources = [ 'fcpat.c', fcstdint_h, fclang_h, alias_headers,
ft_alias_headers ]
- pattern_lib = static_library('patternlib_internal',
- pattern_sources,
- include_directories: incbase,
---
-2.43.0
-
diff --git a/meta/recipes-graphics/fontconfig/fontconfig/musl-fix.patch
b/meta/recipes-graphics/fontconfig/fontconfig/musl-fix.patch
deleted file mode 100644
index c4508bd15a..0000000000
--- a/meta/recipes-graphics/fontconfig/fontconfig/musl-fix.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From 75cc3e6ef0e451f42d3464ed4d639304ad9a4f58 Mon Sep 17 00:00:00 2001
-From: Akira TAGOH <[email protected]>
-Date: Thu, 3 Jul 2025 03:31:49 +0900
-Subject: [PATCH] test: Fix a build issue with musl libc
-
-Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/484
-
-Changelog: fixed
-Upstream-Status: Backport
[https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/75cc3e6ef0e451f42d3464ed4d639304ad9a4f58]
-Signed-off-by: Alexander Kanavin <[email protected]>
----
- test/test-mt-fccfg.c | 22 ++++++++++++++++++++--
- 1 file changed, 20 insertions(+), 2 deletions(-)
-
-diff --git a/test/test-mt-fccfg.c b/test/test-mt-fccfg.c
-index 24ad7583..3b7d843d 100644
---- a/test/test-mt-fccfg.c
-+++ b/test/test-mt-fccfg.c
-@@ -1,9 +1,12 @@
- /* Copyright (C) 2025 fontconfig Authors */
- /* SPDX-License-Identifier: HPND */
-+#ifdef HAVE_CONFIG_H
-+# include "config.h"
-+#endif
-+
- #include <fontconfig/fontconfig.h>
-
- #include <stdio.h>
--#define __USE_XOPEN
- #include <pthread.h>
- #include <stdlib.h>
-
-@@ -13,6 +16,21 @@ struct thr_arg_s {
- int thr_num;
- };
-
-+#ifdef _WIN32
-+int
-+setenv (const char *name, const char *value, int o)
-+{
-+ size_t len = strlen (name) + strlen (value) + 1;
-+ char *s = malloc (len + 1);
-+ int ret;
-+
-+ snprintf (s, len, "%s=%s", name, value);
-+ ret = _putenv (s);
-+ free (s);
-+ return ret;
-+}
-+#endif
-+
- static void *
- run_test_in_thread (void *arg)
- {
-@@ -61,7 +79,7 @@ test (void)
- if (c1 == c2)
- return 1;
- /* To make visible if we have any references */
-- putenv ("FC_DEBUG=16");
-+ setenv ("FC_DEBUG", "16", 1);
- FcFini();
-
- return 0;
---
-GitLab
-
diff --git
a/meta/recipes-graphics/fontconfig/fontconfig/revert-static-pkgconfig.patch
b/meta/recipes-graphics/fontconfig/fontconfig/revert-static-pkgconfig.patch
index 30d6423037..2eb548783b 100644
--- a/meta/recipes-graphics/fontconfig/fontconfig/revert-static-pkgconfig.patch
+++ b/meta/recipes-graphics/fontconfig/fontconfig/revert-static-pkgconfig.patch
@@ -1,3 +1,8 @@
+From ccd98685b3cd1f9c5f674d2807d32f1956a47ec4 Mon Sep 17 00:00:00 2001
+From: Khem Raj <[email protected]>
+Date: Thu, 23 Apr 2015 20:35:32 -0700
+Subject: [PATCH] fontconfig: Fix pkgconfig file generation to not have
+
Revert part of
http://cgit.freedesktop.org/fontconfig/commit/fontconfig.pc.in?id=338ffe6b886ad4ba86ff471cb59c4a5e5ffbe408
We really dont do static linking so its not going to cause issues for us but
as such this is harming us by adding absolute
paths into -I options into fontconfig.pc which is them prepended with sysroot
when read back by cross pkg-config and
@@ -7,6 +12,9 @@ gently refuses and rightly so.
Upstream-Status: Inappropriate [OE-Specific]
Signed-off-by: Khem Raj <[email protected]>
+---
+ fontconfig.pc.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fontconfig.pc.in b/fontconfig.pc.in
index 61b35fb..5bc9bab 100644
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.17.1.bb
b/meta/recipes-graphics/fontconfig/fontconfig_2.18.0.bb
similarity index 92%
rename from meta/recipes-graphics/fontconfig/fontconfig_2.17.1.bb
rename to meta/recipes-graphics/fontconfig/fontconfig_2.18.0.bb
index 0d0fcfcceb..7d356c409a 100644
--- a/meta/recipes-graphics/fontconfig/fontconfig_2.17.1.bb
+++ b/meta/recipes-graphics/fontconfig/fontconfig_2.18.0.bb
@@ -22,10 +22,8 @@ DEPENDS = "expat freetype zlib gperf-native util-linux"
SRC_URI =
"https://gitlab.freedesktop.org/api/v4/projects/890/packages/generic/fontconfig/${PV}/fontconfig-${PV}.tar.xz
\
file://revert-static-pkgconfig.patch \
- file://musl-fix.patch \
- file://0001-build-Added-missing-target-rule-dependencies.patch \
"
-SRC_URI[sha256sum] =
"9f5cae93f4fffc1fbc05ae99cdfc708cd60dfd6612ffc0512827025c026fa541"
+SRC_URI[sha256sum] =
"e7064a4725431ddba06ff8b971ec5a4b422e23b0169ce215747beedcb30e9073"
UPSTREAM_CHECK_URI =
"https://gitlab.freedesktop.org/fontconfig/fontconfig/-/tags"
UPSTREAM_CHECK_REGEX = "releases/(?P<pver>.+)"
--
2.47.1
packages/x86-64-v3-poky-linux/fontconfig/fontconfig-utils: PKGSIZE changed from 142368 to 156824 (+10%) packages/x86-64-v3-poky-linux/fontconfig/fontconfig-utils: FILELIST: added "/usr/bin/fc-genconf" packages/x86-64-v3-poky-linux/fontconfig/fontconfig: FILELIST: removed "/usr/lib/libfontconfig.so.1.16.0", added "/usr/share/fontconfig/conf.avail/05-macos.conf /etc/fonts/conf.d/48-guessfamily.conf /etc/fonts/conf.d/05-macos.conf /usr/lib/libfontconfig.so.1.17.0" Changes to packages/x86-64-v3-poky-linux/fontconfig (sysroot): /usr/lib/libfontconfig.so.1 changed symlink target from libfontconfig.so.1.16.0 to libfontconfig.so.1.17.0 /usr/lib/libfontconfig.so.1.16.0 moved to /usr/lib/libfontconfig.so.1.17.0 /usr/share/fontconfig/conf.avail/05-macos.conf was added
0001-fontconfig-upgrade-2.17.1-2.18.0.patch
Description: Binary data
packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dbg: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dbg: PKGSIZE changed from 2504504 to 2617344 (+5%) packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dbg: FILELIST: removed "/usr/lib/.debug/libfontconfig.so.1.16.0", added "/usr/lib/.debug/libfontconfig.so.1.17.0 /usr/bin/.debug/fc-genconf" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dbg: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dev: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dev: PKGSIZE changed from 43207 to 44602 (+3%) packages/x86-64-v3-poky-linux/fontconfig/fontconfig-dev: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-doc: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-doc: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-locale-ka: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-locale-ka: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-locale-zh-cn: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-locale-zh-cn: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-src: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-src: PKGSIZE changed from 1007008 to 1062168 (+5%) packages/x86-64-v3-poky-linux/fontconfig/fontconfig-src: FILELIST: directory renamed /usr/src/debug/fontconfig/2.17.1/fc-pattern -> /usr/src/debug/fontconfig/2.18.0/fc-pattern, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-conflist -> /usr/src/debug/fontconfig/2.18.0/fc-conflist, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-match -> /usr/src/debug/fontconfig/2.18.0/fc-match, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-cache -> /usr/src/debug/fontconfig/2.18.0/fc-cache, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-cat -> /usr/src/debug/fontconfig/2.18.0/fc-cat, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-lang -> /usr/src/debug/fontconfig/2.18.0/fc-lang, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-scan -> /usr/src/debug/fontconfig/2.18.0/fc-scan, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-case -> /usr/src/debug/fontconfig/2.18.0/fc-case, directory renamed /usr/src/debug/fontconfig/2.17.1 -> /usr/src/debug/fontconfig/2.1 8.0, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-query -> /usr/src/debug/fontconfig/2.18.0/fc-query, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-validate -> /usr/src/debug/fontconfig/2.18.0/fc-validate, directory renamed /usr/src/debug/fontconfig/2.17.1/fontconfig -> /usr/src/debug/fontconfig/2.18.0/fontconfig, directory renamed /usr/src/debug/fontconfig/2.17.1/fc-list -> /usr/src/debug/fontconfig/2.18.0/fc-list, removed "/usr/src/debug/fontconfig/2.17.1/src/fcserialize.c /usr/src/debug/fontconfig/2.17.1/src/fcmd5.h /usr/src/debug/fontconfig/2.17.1/src/fcptrlist.c /usr/src/debug/fontconfig/2.17.1/src/fcmatch.c /usr/src/debug/fontconfig/2.17.1/src/fcmatrix.c /usr/src/debug/fontconfig/2.17.1/src/fcformat.c /usr/src/debug/fontconfig/2.17.1/src/fccache.c /usr/src/debug/fontconfig/2.17.1/src/fcobjshash.gperf /usr/src/debug/fontconfig/2.17.1/src/fcdir.c /usr/src/debug/fontconfig/2.17.1/src/fcmutex.h /usr/src/debug/fontconfig/2.17.1/src/fcatomic.h /usr/src/debug/fontcon fig/2.17.1/src/fcdefault.c /usr/src/debug/fontconfig/2.17.1/src/fcint.h /usr/src/debug/fontconfig/2.17.1/src/fcatomic.c /usr/src/debug/fontconfig/2.17.1/src/fcdbg.c /usr/src/debug/fontconfig/2.17.1/src/fcfs.c /usr/src/debug/fontconfig/2.17.1/src/fcweight.c /usr/src/debug/fontconfig/2.17.1/src/fcpat.c /usr/src/debug/fontconfig/2.17.1/src/fccharset.c /usr/src/debug/fontconfig/2.17.1/src/fcfreetype.c /usr/src/debug/fontconfig/2.17.1/src/fcstr.c /usr/src/debug/fontconfig/2.17.1/src/fchash.c /usr/src/debug/fontconfig/2.17.1/src/fcobjs.c /usr/src/debug/fontconfig/2.17.1/src/fclist.c /usr/src/debug/fontconfig/2.17.1/src/ftglue.c /usr/src/debug/fontconfig/2.17.1/src/ftglue.h /usr/src/debug/fontconfig/2.17.1/src/fcstat.c /usr/src/debug/fontconfig/2.17.1/src/fccompat.c /usr/src/debug/fontconfig/2.17.1/src/fcxml.c /usr/src/debug/fontconfig/2.17.1/src/fccfg.c /usr/src/debug/fontconfig/2.17.1/src/fcfoundry.h /usr/src/debug/fontconfig/2.17.1/src/fcname.c /usr/src/debug/fontconfig/2.17.1/src/fclan g.c /usr/src/debug/fontconfig/2.17.1/src/fcinit.c /usr/src/debug/fontconfig/2.17.1/src/fcrange.c", added "/usr/src/debug/fontconfig/2.18.0/src/fcserialize.c /usr/src/debug/fontconfig/2.18.0/src/fcmd5.h /usr/src/debug/fontconfig/2.18.0/src/fcptrlist.c /usr/src/debug/fontconfig/2.18.0/src/fcmatch.c /usr/src/debug/fontconfig/2.18.0/src/fcmatrix.c /usr/src/debug/fontconfig/2.18.0/src/fcconffile.c /usr/src/debug/fontconfig/2.18.0/src/fccache.c /usr/src/debug/fontconfig/2.18.0/src/fcformat.c /usr/src/debug/fontconfig/2.18.0/src/fcobjshash.gperf /usr/src/debug/fontconfig/2.18.0/src/fcdir.c /usr/src/debug/fontconfig/2.18.0/src/fcmutex.h /usr/src/debug/fontconfig/2.18.0/src/fcatomic.h /usr/src/debug/fontconfig/2.18.0/src/fcdefault.c /usr/src/debug/fontconfig/2.18.0/src/fcint.h /usr/src/debug/fontconfig/2.18.0/src/fcatomic.c /usr/src/debug/fontconfig/2.18.0/src/fcdbg.c /usr/src/debug/fontconfig/2.18.0/src/fcfs.c /usr/src/debug/fontconfig/2.18.0/fc-genconf/fc-genconf.c /usr/src/debug/fontconfi g/2.18.0/src/fcweight.c /usr/src/debug/fontconfig/2.18.0/src/fcpat.c /usr/src/debug/fontconfig/2.18.0/src/fccharset.c /usr/src/debug/fontconfig/2.18.0/src/fcfreetype.c /usr/src/debug/fontconfig/2.18.0/src/fcstr.c /usr/src/debug/fontconfig/2.18.0/src/fchash.c /usr/src/debug/fontconfig/2.18.0/fc-const/fcconst.h /usr/src/debug/fontconfig/2.18.0/src/fcobjs.c /usr/src/debug/fontconfig/2.18.0/src/fclist.c /usr/src/debug/fontconfig/2.18.0/src/ftglue.c /usr/src/debug/fontconfig/2.18.0/src/ftglue.h /usr/src/debug/fontconfig/2.18.0/src/fcstat.c /usr/src/debug/fontconfig/2.18.0/src/fccompat.c /usr/src/debug/fontconfig/2.18.0/src/fcxml.c /usr/src/debug/fontconfig/2.18.0/src/fccfg.c /usr/src/debug/fontconfig/2.18.0/src/fcfoundry.h /usr/src/debug/fontconfig/2.18.0/src/fcname.c /usr/src/debug/fontconfig/2.18.0/src/fclang.c /usr/src/debug/fontconfig/2.18.0/src/fcinit.c /usr/src/debug/fontconfig/2.18.0/src/fcrange.c" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-src: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-staticdev: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-staticdev: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig-utils: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-utils: PKGSIZE changed from 142368 to 156824 (+10%) packages/x86-64-v3-poky-linux/fontconfig/fontconfig-utils: FILELIST: added "/usr/bin/fc-genconf" packages/x86-64-v3-poky-linux/fontconfig/fontconfig-utils: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig/fontconfig: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig/fontconfig: PKGSIZE changed from 482072 to 525857 (+9%) packages/x86-64-v3-poky-linux/fontconfig/fontconfig: FILELIST: removed "/usr/lib/libfontconfig.so.1.16.0", added "/usr/lib/libfontconfig.so.1.17.0 /usr/share/fontconfig/conf.avail/05-macos.conf /etc/fonts/conf.d/05-macos.conf /etc/fonts/conf.d/48-guessfamily.conf" packages/x86-64-v3-poky-linux/fontconfig/fontconfig: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig: PKGV changed from 2.17.1 [default] to 2.18.0 [default] packages/x86-64-v3-poky-linux/fontconfig: PV changed from "2.17.1" to "2.18.0" packages/x86-64-v3-poky-linux/fontconfig: SRC_URI changed from "https://gitlab.freedesktop.org/api/v4/projects/890/packages/generic/fontconfig/2.17.1/fontconfig-2.17.1.tar.xz file://revert-static-pkgconfig.patch file://musl-fix.patch file://0001-build-Added-missing-target-rule-dependencies.patch" to "https://gitlab.freedesktop.org/api/v4/projects/890/packages/generic/fontconfig/2.18.0/fontconfig-2.18.0.tar.xz file://revert-static-pkgconfig.patch" Changes to packages/x86-64-v3-poky-linux/fontconfig (sysroot): /usr/lib/libfontconfig.so.1 changed symlink target from libfontconfig.so.1.16.0 to libfontconfig.so.1.17.0 /usr/lib/libfontconfig.so.1.16.0 moved to /usr/lib/libfontconfig.so.1.17.0 /usr/share/fontconfig/conf.avail/05-macos.conf was added
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#237918): https://lists.openembedded.org/g/openembedded-core/message/237918 Mute This Topic: https://lists.openembedded.org/mt/119594472/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
