From 16172ad5a3b0a80fb2a069ab8eef34d6457c40fc Mon Sep 17 00:00:00 2001 From: leyoda Date: Sat, 16 May 2026 18:08:59 +0200 Subject: [PATCH] yoda: relocate local fork paths from ~/Devels to ~/Projets/COSMIC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mise à jour des path= absolus (libcosmic, cosmic-config, cosmic-theme, iced_futures/winit, window_clipboard, dnd, mime, cosmic-text) après consolidation des forks cosmic-* sous ~/Projets/COSMIC/. Inclut subscriptions/sound/Cargo.toml (libcosmic-yoda). Leyoda 2026 – GPLv3 --- Cargo.toml | 22 +++++++++++----------- subscriptions/sound/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 395b8fd..0b6601c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ rust-version = "1.90" cosmic-randr = { git = "https://github.com/pop-os/cosmic-randr" } tokio = { version = "1.49.0", features = ["macros"] } # Yoda fork: direct path dep on iced_winit in libcosmic-yoda's submodule. -iced_winit = { path = "/home/lionel/Devels/libcosmic/iced/winit", default-features = false } +iced_winit = { path = "/home/lionel/Projets/COSMIC/libcosmic/iced/winit", default-features = false } # Yoda fork — libcosmic-yoda by path, replaces upstream git dep. [workspace.dependencies.libcosmic-yoda] @@ -22,10 +22,10 @@ features = [ "tokio", "qr_code", ] -path = "/home/lionel/Devels/libcosmic" +path = "/home/lionel/Projets/COSMIC/libcosmic" [workspace.dependencies.cosmic-config] -path = "/home/lionel/Devels/libcosmic/cosmic-config" +path = "/home/lionel/Projets/COSMIC/libcosmic/cosmic-config" [workspace.dependencies.cosmic-bg-config] git = "https://github.com/pop-os/cosmic-bg" @@ -76,10 +76,10 @@ cosmic-client-toolkit = { git = "https://github.com/pop-os/cosmic-protocols//", # cosmic-settings-config, cosmic-settings-daemon-config) to our local paths so # the whole graph resolves against a single cosmic-config / cosmic-theme / iced_*. [patch.'https://github.com/pop-os/libcosmic'] -cosmic-config = { path = "/home/lionel/Devels/libcosmic/cosmic-config" } -cosmic-theme = { path = "/home/lionel/Devels/libcosmic/cosmic-theme" } -iced_futures = { path = "/home/lionel/Devels/libcosmic/iced/futures" } -iced_winit = { path = "/home/lionel/Devels/libcosmic/iced/winit" } +cosmic-config = { path = "/home/lionel/Projets/COSMIC/libcosmic/cosmic-config" } +cosmic-theme = { path = "/home/lionel/Projets/COSMIC/libcosmic/cosmic-theme" } +iced_futures = { path = "/home/lionel/Projets/COSMIC/libcosmic/iced/futures" } +iced_winit = { path = "/home/lionel/Projets/COSMIC/libcosmic/iced/winit" } # [patch.'https://github.com/pop-os/dbus-settings-bindings'] # cosmic-dbus-networkmanager = { path = "../dbus-settings-bindings/networkmanager" } @@ -89,12 +89,12 @@ iced_winit = { path = "/home/lionel/Devels/libcosmic/iced/winit" } # Yoda wayland cut v5: redirect window_clipboard + cosmic-text to our local # forks (x11 gated behind opt-in feature + EAW/PR#503 respectively). [patch.'https://github.com/pop-os/window_clipboard.git'] -window_clipboard = { path = "/home/lionel/Devels/window_clipboard" } -dnd = { path = "/home/lionel/Devels/window_clipboard/dnd" } -mime = { path = "/home/lionel/Devels/window_clipboard/mime" } +window_clipboard = { path = "/home/lionel/Projets/COSMIC/window_clipboard" } +dnd = { path = "/home/lionel/Projets/COSMIC/window_clipboard/dnd" } +mime = { path = "/home/lionel/Projets/COSMIC/window_clipboard/mime" } [patch.'https://github.com/pop-os/cosmic-text'] -cosmic-text = { path = "/home/lionel/Devels/cosmic-text" } +cosmic-text = { path = "/home/lionel/Projets/COSMIC/cosmic-text" } [patch.crates-io] atspi = { git = "https://github.com/wash2/atspi" } diff --git a/subscriptions/sound/Cargo.toml b/subscriptions/sound/Cargo.toml index e8c81e2..0ea0154 100644 --- a/subscriptions/sound/Cargo.toml +++ b/subscriptions/sound/Cargo.toml @@ -10,7 +10,7 @@ publish = true cosmic-pipewire = { path = "../../crates/cosmic-pipewire" } futures = "0.3.32" intmap = "3.1.3" -libcosmic-yoda = { path = "/home/lionel/Devels/libcosmic", default-features = false } +libcosmic-yoda = { path = "/home/lionel/Projets/COSMIC/libcosmic", default-features = false } numtoa = "1.0.0-alpha1" rustix = "1.1.3" tokio = { version = "1.49.0", features = ["process", "rt", "time"] }