Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mkosi for openSUSE:Factory checked in at 2026-09-10 11:49:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mkosi (Old) and /work/SRC/openSUSE:Factory/.mkosi.new.1265 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mkosi" Thu Sep 10 11:49:45 2026 rev:34 rq:1376850 version:27 Changes: -------- --- /work/SRC/openSUSE:Factory/mkosi/mkosi.changes 2026-09-07 16:24:36.166208396 +0200 +++ /work/SRC/openSUSE:Factory/.mkosi.new.1265/mkosi.changes 2026-09-10 11:52:21.816037286 +0200 @@ -1,0 +2,6 @@ +Thu Sep 10 06:45:37 UTC 2026 - Antonio Feijoo <[email protected]> + +- Add 0003-mkosi-obs-Only-configure-MakeScriptsExecutable-in-th.patch: + * Backport upstream patch to fix build of signed UKI images in OBS. + +------------------------------------------------------------------- New: ---- 0003-mkosi-obs-Only-configure-MakeScriptsExecutable-in-th.patch ----------(New B)---------- New: - Add 0003-mkosi-obs-Only-configure-MakeScriptsExecutable-in-th.patch: * Backport upstream patch to fix build of signed UKI images in OBS. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mkosi.spec ++++++ --- /var/tmp/diff_new_pack.87dLdQ/_old 2026-09-10 11:52:22.718075119 +0200 +++ /var/tmp/diff_new_pack.87dLdQ/_new 2026-09-10 11:52:22.721075245 +0200 @@ -40,6 +40,8 @@ Patch0: 0001-tests-skip-test_fork_and_wait-if-on-rc-1.patch # PATCH-FIX-UPSTREAM https://github.com/systemd/mkosi/pull/4442 Patch1: 0002-opensuse-tolerate-missing-RPM-keyring.patch +# PATCH-FIX-UPSTREAM https://github.com/systemd/mkosi/pull/4453 +Patch2: 0003-mkosi-obs-Only-configure-MakeScriptsExecutable-in-th.patch BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest} BuildRequires: %{python_module wheel} ++++++ 0003-mkosi-obs-Only-configure-MakeScriptsExecutable-in-th.patch ++++++ >From 847d113863affa6d6ed393ae6a0b8cd5590e00d6 Mon Sep 17 00:00:00 2001 From: Luca Boccassi <[email protected]> Date: Wed, 9 Sep 2026 10:53:02 +0100 Subject: [PATCH] mkosi-obs: Only configure MakeScriptsExecutable in the main image MakeScriptsExecutable= is multiversal and cannot be configured in subimages. Move it to the existing main-image-only drop-in so subimages can include mkosi-obs again and inherit the value. Follow-up for 427970d8fd336b7eccbb75ef3780f4f47b32ef54 Fixes: https://github.com/systemd/mkosi/issues/4451 --- mkosi/resources/mkosi-obs/mkosi.conf | 3 --- mkosi/resources/mkosi-obs/mkosi.conf.d/main.conf | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/mkosi/resources/mkosi-obs/mkosi.conf b/mkosi/resources/mkosi-obs/mkosi.conf index a939b18e..811ccb59 100644 --- a/mkosi/resources/mkosi-obs/mkosi.conf +++ b/mkosi/resources/mkosi-obs/mkosi.conf @@ -8,6 +8,3 @@ SecureBoot=no SignExpectedPcr=no Verity=defer Checksum=yes - -[Build] -MakeScriptsExecutable=yes diff --git a/mkosi/resources/mkosi-obs/mkosi.conf.d/main.conf b/mkosi/resources/mkosi-obs/mkosi.conf.d/main.conf index 0f045278..cffcffb6 100644 --- a/mkosi/resources/mkosi-obs/mkosi.conf.d/main.conf +++ b/mkosi/resources/mkosi-obs/mkosi.conf.d/main.conf @@ -11,6 +11,7 @@ ToolsTree= CacheDirectory= Incremental=no WithNetwork=never +MakeScriptsExecutable=yes [Distribution] RepositoryKeyCheck=no -- 2.51.0
