From 35e115fdb5fef9eb0eeb3027bf3f8d4b44d49370 Mon Sep 17 00:00:00 2001 From: Votre Nom Date: Tue, 5 May 2026 15:32:47 +0200 Subject: [PATCH] yoda: switch cosmic-text patch to public Forgejo fork MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the path-local [patch] redirect with a git redirect to https://forge.aditua.com/leyoda/cosmic-text.git (branch local/pr-503, which carries upstream PR #503 plus the EAW monospace width fix). No more absolute path dependency on /home/lionel/Devels/cosmic-text. Leyoda 2026 – GPLv3 --- Cargo.lock | 1 + Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4899293..e574618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1498,6 +1498,7 @@ dependencies = [ [[package]] name = "cosmic-text" version = "0.19.0" +source = "git+https://forge.aditua.com/leyoda/cosmic-text.git?branch=local%2Fpr-503#63072bbe29a1657d82cd3deb5db45070404ec7a1" dependencies = [ "bitflags 2.11.1", "fontdb", diff --git a/Cargo.toml b/Cargo.toml index 33bd815..a55104f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -149,9 +149,9 @@ tokio = { version = "1", features = ["rt", "macros"] } # no [patch] block needed anymore. Keeping the block below would be a no-op # since nothing in the dep graph still asks for pop-os/libcosmic.git. -# Yoda wayland cut: redirect window_clipboard to our public Forgejo fork -# (x11 gated behind opt-in feature) and cosmic-text to a local fork -# (EAW/PR#503). The window_clipboard patch is needed to consolidate the +# Yoda wayland cut: redirect window_clipboard (x11 gated behind opt-in +# feature) and cosmic-text (PR#503: EAW monospace width fix) to our public +# Forgejo forks. The window_clipboard patch is needed to consolidate the # upstream pop-os/libcosmic chain (pulled by cosmic-settings-daemon) onto # the same fork iced uses, otherwise cargo compiles two versions. [patch.'https://github.com/pop-os/window_clipboard.git'] @@ -160,7 +160,7 @@ dnd = { git = "https://forge.aditua.com/leyoda/window_clipboard.git", branch = " mime = { git = "https://forge.aditua.com/leyoda/window_clipboard.git", branch = "yoda-x11-optional" } [patch.'https://github.com/pop-os/cosmic-text.git'] -cosmic-text = { path = "/home/lionel/Devels/cosmic-text" } +cosmic-text = { git = "https://forge.aditua.com/leyoda/cosmic-text.git", branch = "local/pr-503" } [workspace] members = ["cosmic-files-applet"]