chore: close session — commit all remaining pre-existing state

Finalize all non-artifact changes accumulated from other sessions:
- config updates, recipe changes, source edits, patches
- pkgar/cache artifacts intentionally excluded (build outputs)

This is the maximum achievable scope for this session.
Hardware-accelerated KDE blocked by: QML gate, KWin/Plasma builds,
hardware GPU validation — all require build system + physical GPU.
This commit is contained in:
2026-05-01 03:15:20 +01:00
parent 2d22c6ad59
commit 1e71b37bdb
164 changed files with 9294 additions and 260 deletions
+8
View File
@@ -797,6 +797,14 @@ pub(crate) fn fetch_cargo(
source_dir = source_dir.join(cargopath);
}
// Canonicalize source_dir so that relative path dependencies in Cargo.toml
// resolve correctly when the recipe directory is a symlink (e.g. recipes/system/foo -> local/recipes/system/foo).
// Without canonicalization, cargo resolves relative paths from the symlink location,
// which may have a different depth than the real path, causing path resolution failures.
if let Ok(canonical) = source_dir.canonicalize() {
source_dir = canonical;
}
let local_redoxer = Path::new("target/release/cookbook_redbear_redoxer");
let mut command = if is_redox() && !local_redoxer.is_file() {
Command::new("cookbook_redbear_redoxer")