internal/rosa/package: migrate dbus
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 2m48s
Test / Hakurei (push) Successful in 3m48s
Test / ShareFS (push) Successful in 3m45s
Test / Sandbox (race detector) (push) Successful in 5m25s
Test / Hakurei (race detector) (push) Successful in 6m32s
Test / Flake checks (push) Successful in 1m18s

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
+18
View File
@@ -674,6 +674,24 @@ func (s *S) getFrame() azalea.Frame {
return
}},
k("meson"): {F: func(
args azalea.FArgs,
) (v any, set bool, err error) {
var attr MesonHelper
if err = args.Apply(map[unique.Handle[azalea.Ident]]any{
k("preCompile"): &attr.ScriptCompileEarly,
k("postCompile"): &attr.ScriptCompiled,
k("postInstall"): &attr.Script,
k("setup"): &attr.Setup,
k("skipTest"): &attr.SkipTest,
}); err != nil {
return
}
v = &attr
set = true
return
}},
k("makeMaker"): {F: func(
args azalea.FArgs,
) (v any, set bool, err error) {