Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package NetworkManager for openSUSE:Factory checked in at 2023-12-05 17:01:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/NetworkManager (Old) and /work/SRC/openSUSE:Factory/.NetworkManager.new.25432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "NetworkManager" Tue Dec 5 17:01:50 2023 rev:263 rq:1130749 version:1.44.2 Changes: -------- --- /work/SRC/openSUSE:Factory/NetworkManager/NetworkManager.changes 2023-11-29 21:19:02.661441484 +0100 +++ /work/SRC/openSUSE:Factory/.NetworkManager.new.25432/NetworkManager.changes 2023-12-05 17:02:08.118757035 +0100 @@ -1,0 +2,6 @@ +Sun Dec 3 07:39:25 UTC 2023 - Yifan Jiang <[email protected]> + +- Add python3.6-in-sle.patch: SLE still takes python 3.6 as primary + system, the patch allows meson to find python 3.6 in SLE. + +------------------------------------------------------------------- New: ---- python3.6-in-sle.patch BETA DEBUG BEGIN: New: - Add python3.6-in-sle.patch: SLE still takes python 3.6 as primary system, the patch allows meson to find python 3.6 in SLE. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ NetworkManager.spec ++++++ --- /var/tmp/diff_new_pack.1pneV9/_old 2023-12-05 17:02:09.854821027 +0100 +++ /var/tmp/diff_new_pack.1pneV9/_new 2023-12-05 17:02:09.858821175 +0100 @@ -92,6 +92,8 @@ Patch7: nm-add-CAP_SYS_ADMIN-permission.patch # PATCH-FIX-OPENSUSE fix runstatedir from /var/run to /run [email protected] Patch8: nm-runstatedir.patch +# PATCH-FIX-SLE python3.6-in-sle.patch [email protected] -- SLE still takes python 3.6 as primary runtime system, the patch makes meson find python 3.6 +Patch9: python3.6-in-sle.patch BuildRequires: c++_compiler BuildRequires: dnsmasq @@ -301,6 +303,9 @@ %patch -P 6 -p1 %patch -P 7 -p1 %patch -P 8 -p1 +%if 0%{?sle_version} && 0%{?sle_version} < 160000 +%patch -P 9 -p1 +%endif # Fix server.conf's location, to end up in %%{_defaultdocdir}/%%{name}, # rather then %%{_datadir}/doc/%%{name}/examples: ++++++ python3.6-in-sle.patch ++++++ Index: NetworkManager-1.44.2/meson.build =================================================================== --- NetworkManager-1.44.2.orig/meson.build +++ NetworkManager-1.44.2/meson.build @@ -882,7 +882,7 @@ test_args = [ ] py3 = import('python3') -python = py3.find_python() +python = find_program('python3') if python.found() config_h.set_quoted('TEST_NM_PYTHON', python.path())
