Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package openSUSE-MicroOS for
openSUSE:Factory checked in at 2026-02-14 21:36:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-MicroOS (Old)
and /work/SRC/openSUSE:Factory/.openSUSE-MicroOS.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-MicroOS"
Sat Feb 14 21:36:51 2026 rev:98 rq:1332426 version:16.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/openSUSE-MicroOS/openSUSE-MicroOS.changes
2025-10-30 17:09:23.221546864 +0100
+++
/work/SRC/openSUSE:Factory/.openSUSE-MicroOS.new.1977/openSUSE-MicroOS.changes
2026-02-14 21:37:39.965508840 +0100
@@ -1,0 +2,7 @@
+Mon Feb 9 16:26:35 UTC 2026 - Dominique Leuenberger <[email protected]>
+
+- Use zypp-* configuration packages and patch zypp.conf only when
+ it still exists (i.e when libzypp is not yet updated)
+ (jsc#PED-14658).
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ openSUSE-MicroOS.kiwi ++++++
--- /var/tmp/diff_new_pack.dXiPvS/_old 2026-02-14 21:37:41.293563583 +0100
+++ /var/tmp/diff_new_pack.dXiPvS/_new 2026-02-14 21:37:41.297563747 +0100
@@ -804,6 +804,10 @@
so avoid using namedCollection at least for basesystem -->
<package name="patterns-microos-basesystem"/>
<package name="patterns-microos-base-zypper"/>
+ <!-- Configure zypper for no-recommends, no-multiversion and
excludedocs -->
+ <package name="zypp-excludedocs"/>
+ <package name="zypp-no-multiversion"/>
+ <package name="zypp-no-recommends"/>
<package name="patterns-microos-defaults"/>
<package name="patterns-microos-selinux"/>
<package name="kernel-default"/>
++++++ config.sh ++++++
--- /var/tmp/diff_new_pack.dXiPvS/_old 2026-02-14 21:37:41.381567210 +0100
+++ /var/tmp/diff_new_pack.dXiPvS/_new 2026-02-14 21:37:41.385567375 +0100
@@ -62,9 +62,6 @@
zypper --non-interactive rm -u live-add-yast-repos
fi
-# Adjust zypp conf
-sed -i 's/^multiversion =.*/multiversion =/g' /etc/zypp/zypp.conf
-
#=====================================
# Configure snapper
#-------------------------------------
@@ -141,15 +138,21 @@
install_items+=" /usr/lib/systemd/systemd-growfs "
EOF
-#======================================
-# Disable recommends on virtual images (keep hardware supplements, see
bsc#1089498)
-#--------------------------------------
-sed -i 's/.*solver.onlyRequires.*/solver.onlyRequires = true/g'
/etc/zypp/zypp.conf
-
-#======================================
-# Disable installing documentation
-#--------------------------------------
-sed -i 's/.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/g'
/etc/zypp/zypp.conf
+# if /etc/zypp/zypp.conf exists, patch it - otherwise rely on packages
providing functionality
+if [ -f /etc/zypp/zypp.conf ]; then
+ #======================================
+ # Disable recommends on virtual images (keep hardware supplements, see
bsc#1089498)
+ #--------------------------------------
+ sed -i 's/.*solver.onlyRequires.*/solver.onlyRequires = true/g'
/etc/zypp/zypp.conf
+
+ #======================================
+ # Disable installing documentation
+ #--------------------------------------
+ sed -i 's/.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/g'
/etc/zypp/zypp.conf
+
+ # Adjust zypp conf
+ sed -i 's/^multiversion =.*/multiversion =/g' /etc/zypp/zypp.conf
+fi
# # we need this for trans file triggers
# echo "techpreview.ZYPP_SINGLE_RPMTRANS = 1" >> /etc/zypp/zypp.conf