Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package PackageKit for openSUSE:Factory checked in at 2024-01-18 21:51:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/PackageKit (Old) and /work/SRC/openSUSE:Factory/.PackageKit.new.16006 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "PackageKit" Thu Jan 18 21:51:44 2024 rev:236 rq:1139465 version:1.2.8 Changes: -------- --- /work/SRC/openSUSE:Factory/PackageKit/PackageKit.changes 2023-11-29 21:19:51.271231296 +0100 +++ /work/SRC/openSUSE:Factory/.PackageKit.new.16006/PackageKit.changes 2024-01-18 21:51:51.361409869 +0100 @@ -1,0 +2,6 @@ +Tue Jan 2 08:23:40 UTC 2024 - Alynx Zhou <alynx.z...@suse.com> + +- Add PackageKit-find-python-3-6.patch: Specify the Python version + we need to build this package. + +------------------------------------------------------------------- New: ---- PackageKit-find-python-3-6.patch BETA DEBUG BEGIN: New: - Add PackageKit-find-python-3-6.patch: Specify the Python version we need to build this package. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ PackageKit.spec ++++++ --- /var/tmp/diff_new_pack.p3YiYK/_old 2024-01-18 21:51:52.393447109 +0100 +++ /var/tmp/diff_new_pack.p3YiYK/_new 2024-01-18 21:51:52.397447253 +0100 @@ -1,7 +1,7 @@ # # spec file for package PackageKit # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -59,6 +59,9 @@ # PATCH-FIX-UPSTREAM PackageKit-dynamic-export.patch boo#1213309 dims...@opensuse.org -- Fix loading modules when built with glib 2.70 Patch16: PackageKit-dynamic-export.patch +# PATCH-FIX-SLE PackageKit-find-python-3-6.patch alynx.z...@suse.com -- Build PackageKit with Python 3.6 +Patch1001: PackageKit-find-python-3-6.patch + BuildRequires: fdupes BuildRequires: gcc-c++ BuildRequires: gobject-introspection-devel @@ -274,7 +277,17 @@ %lang_package %prep -%autosetup -p1 +%setup -q +%patch -P 1 -p1 +%patch -P 2 -p1 +%patch -P 3 -p1 +%patch -P 4 -p1 +%patch -P 7 -p1 +%patch -P 15 -p1 +%patch -P 16 -p1 +%if 0%{?sle_version} && 0%{?sle_version} < 160000 +%patch -P 1001 -p1 +%endif %build %meson \ ++++++ PackageKit-find-python-3-6.patch ++++++ diff --unified --recursive --text --new-file --color PackageKit-1.2.8.old/backends/dnf/meson.build PackageKit-1.2.8.new/backends/dnf/meson.build --- PackageKit-1.2.8.old/backends/dnf/meson.build 2023-11-09 04:35:41.000000000 +0800 +++ PackageKit-1.2.8.new/backends/dnf/meson.build 2024-01-02 16:12:35.600072285 +0800 @@ -8,7 +8,7 @@ endif python = import('python') -python_exec = python.find_installation() +python_exec = python.find_installation('python3.6') python_package_dir = get_option('pythonpackagedir') if python_package_dir == '' python_package_dir = python_exec.get_install_dir()