Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe(s) *ccache* to *4.14* has 
Succeeded.

Next steps:
    - apply the patch: git am 0001-ccache-upgrade-4.13.6-4.14.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 2dea6ea63c7f772486e818a55111f7d1747ff5df Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Mon, 24 Aug 2026 05:16:04 +0000
Subject: [PATCH] ccache: upgrade 4.13.6 -> 4.14

Source: doc/news.adoc

== Ccache 4.14

Release date: 2026-08-23

=== Deprecation notice

Built-in support for the HTTP and Redis protocols will be removed in the next
non-bug-fix ccache version. Use the
https://ccache.dev/storage-helpers.html[remote storage helper] mechanism (added
in ccache 4.13) for HTTP/Redis storage instead.

=== Removed functionality

- Removed the `cpp_extension` (`CCACHE_EXTENSION`) configuration option since
  ccache now processes preprocessor output directly in memory instead of using
  intermediate files. +
  [small]#_[contributed by Joel Rosdahl]_#

=== New features and improvements

- Added support for the QCC (QNX) compiler. +
  [small]#_[contributed by Joy Wang]_#

- Added limited support for caching SARIF diagnostics:
  `-fdiagnostics-format=sarif-stderr` and
  `-fdiagnostics-{add,set}-output=sarif:file=...` for GCC, `/experimental:log`
  for MSVC. +
  [small]#_[contributed by Joel Rosdahl, Karl Fessel and Leander Schulten]_#

- Added automatic depend mode for NVCC on Windows. +
  [small]#_[contributed by Xing Xiwen]_#

- Added support for `@layout=local` in the file storage backend, allowing a copy
  or read-only mount of a local cache to be used as remote storage. +
  [small]#_[contributed by Joel Rosdahl]_#

- Extended the remote storage helper protocol with an `exists` operation,
  avoiding transfer of already stored values in reshare mode, and an `info`
  operation for reporting the helper's identity and diagnostics. +
  [small]#_[contributed by Joel Rosdahl]_#

- Added a `--dry-run` option for previewing cleanup, eviction and directory
  trimming operations without removing files. +
  [small]#_[contributed by Joel Rosdahl]_#

- Added support for rewriting absolute profile data file paths to relative,
  improving cache sharing between different directory trees. +
  [small]#_[contributed by GitHub user markyang92]_#

- Added support for reflinking `.dwo` files when file cloning is enabled. +
  [small]#_[contributed by Fabian Parzefall]_#

- Added detection of C23 `#embed` directives in direct and depend mode and of
  assembler `.incbin` directives in depend mode, preventing false cache hits. +
  [small]##_[contributed by Joel Rosdahl and Haaris Rahman]_##

- Added support for `-Wp,` options with multiple macro definitions. +
  [small]#_[contributed by GitHub user subotac]_#

- Ccache now hashes the contents of Clang module files specified with
  `-fmodule-file=`, preventing false cache hits when a module changes. +
  [small]#_[contributed by GitHub user RedNicStone]_#

- Cleanup and eviction operations now print the amount of data and number of
  files removed. +
  [small]#_[contributed by Joel Rosdahl]_#

- Increased the maximum number of raw files stored in a cached result to 256. +
  [small]#_[contributed by Joel Rosdahl]_#

- Modernized use of C++ type traits. +
  [small]#_[contributed by Gregor Jasny]_#

- Improved portability of compiler exit status handling. +
  [small]#_[contributed by Joel Rosdahl]_#

[Changelog truncated as it exceeds 3000 characters;
the full changelog can be found in an attachment to the AUH email]
---
 .../ccache/{ccache_4.13.6.bb => ccache_4.14.bb}                 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/ccache/{ccache_4.13.6.bb => ccache_4.14.bb} (93%)

diff --git a/meta/recipes-devtools/ccache/ccache_4.13.6.bb 
b/meta/recipes-devtools/ccache/ccache_4.14.bb
similarity index 93%
rename from meta/recipes-devtools/ccache/ccache_4.13.6.bb
rename to meta/recipes-devtools/ccache/ccache_4.14.bb
index 21bd193c20..6d922d8514 100644
--- a/meta/recipes-devtools/ccache/ccache_4.13.6.bb
+++ b/meta/recipes-devtools/ccache/ccache_4.14.bb
@@ -16,7 +16,7 @@ DEPENDS = "zstd fmt xxhash"
 
 SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.gz"
 
-SRC_URI[sha256sum] = 
"d42ace95dec14583fb8af19ed117919995bd910376f52d9b6f546046b792dfb7"
+SRC_URI[sha256sum] = 
"fca63f36a83fb2f4b3cc4c01b2c7a1cd6e3629e7f7bd1e01a2eb8810f947c5ab"
 
 inherit cmake github-releases
 
-- 
2.47.1

Changelog for ccache: 4.13.6 -> 4.14
Source: doc/news.adoc

== Ccache 4.14

Release date: 2026-08-23

=== Deprecation notice

Built-in support for the HTTP and Redis protocols will be removed in the next
non-bug-fix ccache version. Use the
https://ccache.dev/storage-helpers.html[remote storage helper] mechanism (added
in ccache 4.13) for HTTP/Redis storage instead.

=== Removed functionality

- Removed the `cpp_extension` (`CCACHE_EXTENSION`) configuration option since
  ccache now processes preprocessor output directly in memory instead of using
  intermediate files. +
  [small]#_[contributed by Joel Rosdahl]_#

=== New features and improvements

- Added support for the QCC (QNX) compiler. +
  [small]#_[contributed by Joy Wang]_#

- Added limited support for caching SARIF diagnostics:
  `-fdiagnostics-format=sarif-stderr` and
  `-fdiagnostics-{add,set}-output=sarif:file=...` for GCC, `/experimental:log`
  for MSVC. +
  [small]#_[contributed by Joel Rosdahl, Karl Fessel and Leander Schulten]_#

- Added automatic depend mode for NVCC on Windows. +
  [small]#_[contributed by Xing Xiwen]_#

- Added support for `@layout=local` in the file storage backend, allowing a copy
  or read-only mount of a local cache to be used as remote storage. +
  [small]#_[contributed by Joel Rosdahl]_#

- Extended the remote storage helper protocol with an `exists` operation,
  avoiding transfer of already stored values in reshare mode, and an `info`
  operation for reporting the helper's identity and diagnostics. +
  [small]#_[contributed by Joel Rosdahl]_#

- Added a `--dry-run` option for previewing cleanup, eviction and directory
  trimming operations without removing files. +
  [small]#_[contributed by Joel Rosdahl]_#

- Added support for rewriting absolute profile data file paths to relative,
  improving cache sharing between different directory trees. +
  [small]#_[contributed by GitHub user markyang92]_#

- Added support for reflinking `.dwo` files when file cloning is enabled. +
  [small]#_[contributed by Fabian Parzefall]_#

- Added detection of C23 `#embed` directives in direct and depend mode and of
  assembler `.incbin` directives in depend mode, preventing false cache hits. +
  [small]##_[contributed by Joel Rosdahl and Haaris Rahman]_##

- Added support for `-Wp,` options with multiple macro definitions. +
  [small]#_[contributed by GitHub user subotac]_#

- Ccache now hashes the contents of Clang module files specified with
  `-fmodule-file=`, preventing false cache hits when a module changes. +
  [small]#_[contributed by GitHub user RedNicStone]_#

- Cleanup and eviction operations now print the amount of data and number of
  files removed. +
  [small]#_[contributed by Joel Rosdahl]_#

- Increased the maximum number of raw files stored in a cached result to 256. +
  [small]#_[contributed by Joel Rosdahl]_#

- Modernized use of C++ type traits. +
  [small]#_[contributed by Gregor Jasny]_#

- Improved portability of compiler exit status handling. +
  [small]#_[contributed by Joel Rosdahl]_#

- Made path rewriting on Windows case-insensitive and Unicode-aware. +
  [small]#_[contributed by Joel Rosdahl]_#

- Made `ignore_headers_in_manifest` match case-insensitively on Windows. +
  [small]#_[contributed by GitHub user trustytrojan]_#

- Reduced the number of system calls for IPC requests. +
  [small]#_[contributed by Joel Rosdahl]_#

=== Bug fixes

- Fixed `base_dir` path rewriting when using MSVC's `/Yu` option: paths are no
  longer rewritten to relative when using a precompiled header, since MSVC then
  does not like relative paths for the `/Yu` and `/FI` arguments. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed handling of compiler options when one recognized option is a prefix of
  another. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed `base_dir` handling for include paths in preprocessor mode (regression
  in ccache 4.12.2). +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed handling of Clang 22's `--warning-suppression-mappings` option. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed error handling when a Clang configuration file cannot be hashed. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed a remote storage configuration with `read_only=false` being treated as
  read-only. +
  [small]#_[contributed by GitHub user ThisIsFineTM]_#

- Fixed interrupted system calls when communicating with remote storage
  helpers. +
  [small]#_[contributed by Joel Rosdahl]_#

- Avoided a race if starting a remote storage helper takes an unexpectedly long
  time. +
  [small]#_[contributed by Joel Rosdahl]_#

- Avoided spawning and waiting for a remote storage helper when IPC access is
  denied by a sandbox. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed the free space check for the inode cache. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed handling of empty atomic file writes and improved robustness if
  opening an atomic file stream fails. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed a size overflow when allocating very large files on Windows. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed thread safety of time conversion fallbacks on systems without
  `gmtime_r` and `localtime_r`. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed handling of systems that report zero available hardware threads. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed reporting of errors from `posix_spawnp`. +
  [small]#_[contributed by Joel Rosdahl]_#

- Fixed the statistics counter used when a Clang sanitize ignorelist cannot be
  read. +
  [small]#_[contributed by Joel Rosdahl]_#

=== Build improvements

- Fixed building with Clang 23. +
  [small]#_[contributed by GitHub user LinuxUserGD]_#

- Added missing CMake probe for `gmtime_r`. +
  [small]#_[contributed by Joel Rosdahl]_#

=== Documentation improvements

- Improved `base_dir` documentation. +
  [small]#_[contributed by Joel Rosdahl]_#

- Clarified syntax of configuration options that take path lists. +
  [small]#_[contributed by Joel Rosdahl]_#
packages/x86-64-v3-poky-linux/ccache/ccache-dbg: PKGSIZE changed from 41467144 
to 42017296 (+1%)
packages/x86-64-v3-poky-linux/ccache/ccache-dbg: PKGV changed from 4.13.6 
[default] to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache-dbg: PV changed from "4.13.6" to 
"4.14"
packages/x86-64-v3-poky-linux/ccache/ccache-dev: PKGV changed from 4.13.6 
[default] to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache-dev: PV changed from "4.13.6" to 
"4.14"
packages/x86-64-v3-poky-linux/ccache/ccache-doc: PKGV changed from 4.13.6 
[default] to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache-doc: PV changed from "4.13.6" to 
"4.14"
packages/x86-64-v3-poky-linux/ccache/ccache-locale: PKGV changed from 4.13.6 
[default] to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache-locale: PV changed from "4.13.6" to 
"4.14"
packages/x86-64-v3-poky-linux/ccache/ccache-src: FILELIST: directory renamed 
/usr/src/debug/ccache/4.13.6/src/third_party/tl-expected/tl -> 
/usr/src/debug/ccache/4.14/src/third_party/tl-expected/tl, directory renamed 
/usr/src/debug/ccache/4.13.6/src/ccache/storage/local -> 
/usr/src/debug/ccache/4.14/src/ccache/storage/local, directory renamed 
/usr/src/debug/ccache/4.13.6/src/ccache/storage -> 
/usr/src/debug/ccache/4.14/src/ccache/storage, directory renamed 
/usr/src/debug/ccache/4.13.6/src/ccache/compiler -> 
/usr/src/debug/ccache/4.14/src/ccache/compiler, directory renamed 
/usr/src/debug/ccache/4.13.6/src/third_party/blake3/blake3 -> 
/usr/src/debug/ccache/4.14/src/third_party/blake3/blake3, directory renamed 
/usr/src/debug/ccache/4.13.6/src/ccache/storage/remote -> 
/usr/src/debug/ccache/4.14/src/ccache/storage/remote, directory renamed 
/usr/src/debug/ccache/4.13.6/src/ccache/util -> 
/usr/src/debug/ccache/4.14/src/ccache/util, directory renamed 
/usr/src/debug/ccache/4.13.6/src/ccache/c
 ore -> /usr/src/debug/ccache/4.14/src/ccache/core, directory renamed 
/usr/src/debug/ccache/4.13.6/src/third_party/cxxurl/cxxurl -> 
/usr/src/debug/ccache/4.14/src/third_party/cxxurl/cxxurl, directory renamed 
/usr/src/debug/ccache/4.13.6/src/third_party/cpp-httplib -> 
/usr/src/debug/ccache/4.14/src/third_party/cpp-httplib, removed 
"/usr/src/debug/ccache/4.13.6/src/ccache/version.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/inodecache.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/depfile.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/compopt.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/context.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/main.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/hashutil.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/execute.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/ccache.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/ccache.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/config.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/config.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/hash
 .cpp /usr/src/debug/ccache/4.13.6/src/ccache/depfile.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/inodecache.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/progressbar.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/execute.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/signalhandler.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/signalhandler.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/language.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/hashutil.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/argprocessing.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/argprocessing.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/hash.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/language.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/progressbar.cpp 
/usr/src/debug/ccache/4.13.6/src/ccache/macroskip.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/compopt.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/context.hpp 
/usr/src/debug/ccache/4.13.6/src/ccache/argsinfo.hpp", added 
"/usr/src/debug/ccache/4.14/src/ccache/context.hpp /usr/src/de
 bug/ccache/4.14/src/ccache/context.cpp 
/usr/src/debug/ccache/4.14/src/ccache/hashutil.cpp 
/usr/src/debug/ccache/4.14/src/ccache/hashutil.hpp 
/usr/src/debug/ccache/4.14/src/ccache/ccache.cpp 
/usr/src/debug/ccache/4.14/src/ccache/argprocessing.cpp 
/usr/src/debug/ccache/4.14/src/ccache/hash.cpp 
/usr/src/debug/ccache/4.14/src/ccache/argsinfo.hpp 
/usr/src/debug/ccache/4.14/src/ccache/config.hpp 
/usr/src/debug/ccache/4.14/src/ccache/signalhandler.cpp 
/usr/src/debug/ccache/4.14/src/ccache/language.cpp 
/usr/src/debug/ccache/4.14/src/ccache/inodecache.cpp 
/usr/src/debug/ccache/4.14/src/ccache/ccache.hpp 
/usr/src/debug/ccache/4.14/src/ccache/main.cpp 
/usr/src/debug/ccache/4.14/src/ccache/argprocessing.hpp 
/usr/src/debug/ccache/4.14/src/ccache/progressbar.hpp 
/usr/src/debug/ccache/4.14/src/ccache/compopt.cpp 
/usr/src/debug/ccache/4.14/src/ccache/compopt.hpp 
/usr/src/debug/ccache/4.14/src/ccache/version.cpp 
/usr/src/debug/ccache/4.14/src/ccache/hash.hpp 
/usr/src/debug/ccache/4.14/src/ccache/exe
 cute.cpp /usr/src/debug/ccache/4.14/src/ccache/depfile.cpp 
/usr/src/debug/ccache/4.14/src/ccache/depfile.hpp 
/usr/src/debug/ccache/4.14/src/ccache/execute.hpp 
/usr/src/debug/ccache/4.14/src/ccache/signalhandler.hpp 
/usr/src/debug/ccache/4.14/src/ccache/progressbar.cpp 
/usr/src/debug/ccache/4.14/src/ccache/config.cpp 
/usr/src/debug/ccache/4.14/src/ccache/inodecache.hpp 
/usr/src/debug/ccache/4.14/src/ccache/language.hpp"
packages/x86-64-v3-poky-linux/ccache/ccache-src: PKGSIZE changed from 1844974 
to 1871899 (+1%)
packages/x86-64-v3-poky-linux/ccache/ccache-src: PKGV changed from 4.13.6 
[default] to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache-src: PV changed from "4.13.6" to 
"4.14"
packages/x86-64-v3-poky-linux/ccache/ccache-staticdev: PKGV changed from 4.13.6 
[default] to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache-staticdev: PV changed from "4.13.6" 
to "4.14"
packages/x86-64-v3-poky-linux/ccache/ccache: PKGSIZE changed from 2062920 to 
2107944 (+2%)
packages/x86-64-v3-poky-linux/ccache/ccache: PKGV changed from 4.13.6 [default] 
to 4.14 [default]
packages/x86-64-v3-poky-linux/ccache/ccache: PV changed from "4.13.6" to "4.14"
packages/x86-64-v3-poky-linux/ccache: SRC_URI changed from 
"https://github.com/ccache/ccache/releases//download/v4.13.6/ccache-4.13.6.tar.gz";
 to 
"https://github.com/ccache/ccache/releases//download/v4.14/ccache-4.14.tar.gz";
packages/x86-64-v3-poky-linux/ccache: PKGV changed from 4.13.6 [default] to 
4.14 [default]
packages/x86-64-v3-poky-linux/ccache: PV changed from "4.13.6" to "4.14"

Attachment: 0001-ccache-upgrade-4.13.6-4.14.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#244062): 
https://lists.openembedded.org/g/openembedded-core/message/244062
Mute This Topic: https://lists.openembedded.org/mt/120898895/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to