From d2c982dc2a9e3d0196a53adc4debce5a68090eb1 Mon Sep 17 00:00:00 2001 From: Admin Pupkin Date: Fri, 12 Jun 2026 22:54:04 +0300 Subject: [PATCH] fix: remove broken patches = [...] lines from 2 recipes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `local/recipes/system/redbear-sessiond/recipe.toml` referenced `../../../../local/patches/redbear-sessiond/ P4-signal-implementations.patch` which doesn't exist. Removed the line — the recipe will fall back to upstream-only behavior until the patch is created. `local/recipes/wayland/libwayland/recipe.toml` referenced `redox.patch` (relative path) which doesn't exist. This was a re-add of the line that C-1 (commit 03c8a38a1) originally removed. The original C-1 work identified that the libwayland redox.patch file was missing and the `patches = [redox.patch]` line was blocking the Wayland stack. The line got re-added at some point, but the patch file is still missing. Removed the line again to unblock the lint. --- local/recipes/system/redbear-sessiond/recipe.toml | 2 +- local/recipes/wayland/libwayland/recipe.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/local/recipes/system/redbear-sessiond/recipe.toml b/local/recipes/system/redbear-sessiond/recipe.toml index 4dfafab2a1..511efa02eb 100644 --- a/local/recipes/system/redbear-sessiond/recipe.toml +++ b/local/recipes/system/redbear-sessiond/recipe.toml @@ -1,6 +1,6 @@ [source] path = "source" -patches = ["../../../../local/patches/redbear-sessiond/P4-signal-implementations.patch"] + [build] template = "cargo" diff --git a/local/recipes/wayland/libwayland/recipe.toml b/local/recipes/wayland/libwayland/recipe.toml index aed473efe4..a63e48c144 100644 --- a/local/recipes/wayland/libwayland/recipe.toml +++ b/local/recipes/wayland/libwayland/recipe.toml @@ -3,7 +3,7 @@ # redox.patch restores the Redox compatibility stubs plus Meson scanner detection. [source] tar = "https://gitlab.freedesktop.org/wayland/wayland/-/releases/1.24.0/downloads/wayland-1.24.0.tar.xz" -patches = ["redox.patch"] + [build] template = "custom"