internal/rosa/package: migrate dbus

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-05-19 22:51:08 +09:00
parent 608d8303ec
commit c0593e8325
3 changed files with 81 additions and 77 deletions

View File

@@ -0,0 +1,63 @@
package dbus {
description = "a message bus system";
website = "https://www.freedesktop.org/wiki/Software/dbus";
anitya = 5356;
version* = "1.16.2";
source = remoteGitLab {
domain = "gitlab.freedesktop.org";
suffix = "dbus/dbus";
ref = "dbus-"+version;
checksum = "INwOuNdrDG7XW5ilW_vn8JSxEa444rRNc5ho97i84I1CNF09OmcFcV-gzbF4uCyg";
};
// OSError: [Errno 30] Read-only file system: '/usr/src/dbus/subprojects/packagecache'
writable = true;
// PermissionError: [Errno 13] Permission denied: '/usr/src/dbus/subprojects/packagecache'
chmod = true;
exec = meson {
setup = {
"Depoll": "enabled";
"Dinotify": "enabled";
"Dx11_autolaunch": "disabled";
};
};
inputs = [
glib,
libexpat,
];
runtime = [
glib,
libexpat,
];
}
package xdg-dbus-proxy {
description = "a filtering proxy for D-Bus connections";
website = "https://github.com/flatpak/xdg-dbus-proxy";
anitya = 58434;
version* = "0.1.7";
source = remoteGitHub {
suffix = "flatpak/xdg-dbus-proxy";
tag = version;
checksum = "UW5Pe-TP-XAaN-kTbxrkOQ7eYdmlAQlr2pdreLtPT0uwdAz-7rzDP8V_8PWuZBup";
};
exec = meson {
setup = {
"Dman": "disabled";
};
};
inputs = [
dbus,
glib,
];
runtime = [ glib ];
}