From d0e07f9565614b3ad37cb22f0b7579776f677374 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Wed, 25 Mar 2026 00:14:44 +0300 Subject: [PATCH] Update runtime to 50 - Update the runtime version to 50 - Use the blueprint-compiler module from the runtime - Drop ineffective cleanup commands --- dev.zelikos.rollit.json | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) diff --git a/dev.zelikos.rollit.json b/dev.zelikos.rollit.json index cbe5cfb..fa0aad4 100644 --- a/dev.zelikos.rollit.json +++ b/dev.zelikos.rollit.json @@ -1,38 +1,20 @@ { "id": "dev.zelikos.rollit", "runtime": "org.gnome.Platform", - "runtime-version": "48", + "runtime-version": "50", "sdk": "org.gnome.Sdk", "sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"], "command": "rollit", - "finish-args": ["--share=ipc", "--socket=fallback-x11", "--device=dri", "--socket=wayland"], + "finish-args": [ + "--share=ipc", + "--socket=fallback-x11", + "--device=dri", + "--socket=wayland" + ], "build-options": { "append-path": "/usr/lib/sdk/rust-stable/bin" }, - "cleanup": [ - "/include", - "/lib/pkgconfig", - "/man", - "/share/doc", - "/share/gtk-doc", - "/share/man", - "/share/pkgconfig", - "*.la", - "*.a" - ], "modules": [ - { - "name": "blueprint-compiler", - "buildsystem": "meson", - "cleanup": ["*"], - "sources": [ - { - "type": "git", - "url": "https://gitlab.gnome.org/jwestman/blueprint-compiler", - "tag": "v0.16.0" - } - ] - }, { "name": "rollit", "buildsystem": "meson", @@ -46,7 +28,10 @@ "generated-sources.json", { "type": "shell", - "commands": ["mkdir .cargo", "cp cargo/config .cargo/"] + "commands": [ + "mkdir .cargo", + "cp cargo/config .cargo/" + ] } ] }