Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package virt-manager for openSUSE:Factory checked in at 2025-05-26 18:31:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virt-manager (Old) and /work/SRC/openSUSE:Factory/.virt-manager.new.2732 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "virt-manager" Mon May 26 18:31:36 2025 rev:275 rq:1278884 version:5.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/virt-manager/virt-manager.changes 2025-04-20 20:11:44.662613223 +0200 +++ /work/SRC/openSUSE:Factory/.virt-manager.new.2732/virt-manager.changes 2025-05-26 18:31:46.577947434 +0200 @@ -1,0 +2,6 @@ +Mon May 19 15:14:01 MDT 2025 - carn...@suse.com + +- Add detection code for SLES 16 media (bsc#1236252, bsc#1243296) + virtinst-add-sle16-detection-support.patch + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ virtinst-add-sle16-detection-support.patch ++++++ --- /var/tmp/diff_new_pack.8Ifak4/_old 2025-05-26 18:31:48.034008541 +0200 +++ /var/tmp/diff_new_pack.8Ifak4/_new 2025-05-26 18:31:48.038008709 +0200 @@ -1,14 +1,27 @@ ---- virt-manager-5.0.0/virtinst/install/urldetect.py.orig 2025-01-17 13:13:11.582745934 -0700 -+++ virt-manager-5.0.0/virtinst/install/urldetect.py 2025-01-17 13:15:08.122748711 -0700 +Index: virt-manager-4.1.0/virtinst/install/urldetect.py +=================================================================== +--- virt-manager-4.1.0.orig/virtinst/install/urldetect.py ++++ virt-manager-4.1.0/virtinst/install/urldetect.py @@ -279,6 +279,10 @@ class _SUSEContent(object): else: if "SUSE SL Micro" in self.product_name: sle_version = self.product_name.strip().rsplit(' ')[3] -+ elif "SUSE SLES" in self.product_name: ++ elif "SUSE SLES Full" in self.product_name: + # For SLES 16 -+ sle_version = self.product_name.strip().rsplit(' ')[2] ++ sle_version = self.product_name.strip().rsplit(' ')[3] + sle_version = sle_version.rstrip(".0") else: sle_version = self.product_name.strip().rsplit(' ')[4] if len(self.product_name.strip().rsplit(' ')) > 5 and not " Micro " in self.product_name: +@@ -582,6 +586,10 @@ class _SuseDistro(_RHELDistro): + self._kernel_paths.append( + ("suseboot/linux64", "suseboot/initrd64")) + ++ # Tested with SLES 16 ++ self._kernel_paths.append( ++ ("../boot/%s/loader/linux" % tree_arch, ++ "../boot/%s/loader/initrd" % tree_arch)) + # Tested with SLES 12 for ppc64le, all s390x + self._kernel_paths.append( + ("boot/%s/linux" % tree_arch,