Hello community,

here is the log from the commit of package fwupd for openSUSE:Factory checked 
in at 2020-12-12 20:27:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/fwupd (Old)
 and      /work/SRC/openSUSE:Factory/.fwupd.new.2328 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "fwupd"

Sat Dec 12 20:27:50 2020 rev:37 rq:854569 version:1.5.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/fwupd/fwupd.changes      2020-12-05 
20:35:33.306609676 +0100
+++ /work/SRC/openSUSE:Factory/.fwupd.new.2328/fwupd.changes    2020-12-12 
20:28:02.181581553 +0100
@@ -1,0 +2,40 @@
+Wed Dec 09 07:53:07 UTC 2020 - g...@suse.com
+
+- Update to version 1.5.3:
+  + Lower the CURL version required to fix build in RHEL
+  + Do not use meson ternary operations to avoid bumping the
+    required meson version
+  + Added Lite Mk III
+  + Allow setting the GMainContext when used for sync methods
+  + Fall back to the misc device for serio devices
+  + Actually implement rescan in FuUdevDevice
+  + bcm57xx: Refactor CRC code to remove extra byteswap
+  + bcm57xx: Fix CRC check
+  + synaptics-rmi: Don't crash if calling ->to_string() before
+    ->setup()
+  + Fix a possible critical warning due to missing retval
+  + Add the serio->firmare_id for UDev devices
+  + Export the driver name from FuUdevDevice
+  + Allow the client to send PKCS7 and GPG signatures
+  + Force the remote kind to JCat server-side
+  + Only parse the signature if the remote is JCat
+  + fu-main: Fix sender_features insert with wrong size
+  + make platform integrity plugin optional and disabled by default
+  + Add quirk for Western Digital
+  + Mark more user-visible strings as translatable
+  + modem-manager: validate firmware update method combinations
+  + modem-manager: remove unused byte counts in QMI/PDC update logic
+  + modem-manager: make sure the correct interface number is used
+    for QMI
+  + modem-manager: udev monitoring only if device switches layout
+  + modem-manager: plug udev client leak
+  + Restrict loading component types of firmware
+- Enable supported_build to clarify that this package is supported
+  (bsc#1179790)
+- Drop fwupd-platform-integrity.conf since upstream disables the
+  platform integrity module by default now due to incompleteness.
+- Address fwupd-refresh.service in %preun, %pre, %post, and %postun
+  and provide a rc link for it
+- Version "Obsoletes: dbxtool" and "Obsoletes: fwupdate"
+
+-------------------------------------------------------------------

Old:
----
  fwupd-1.5.2.tar.xz

New:
----
  fwupd-1.5.3.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ fwupd.spec ++++++
--- /var/tmp/diff_new_pack.U1oxXP/_old  2020-12-12 20:28:02.817582212 +0100
+++ /var/tmp/diff_new_pack.U1oxXP/_new  2020-12-12 20:28:02.821582216 +0100
@@ -30,7 +30,7 @@
 %endif
 
 Name:           fwupd
-Version:        1.5.2
+Version:        1.5.3
 Release:        0
 Summary:        Device firmware updater daemon
 License:        GPL-2.0-or-later AND LGPL-2.1-or-later
@@ -105,8 +105,8 @@
 BuildRequires:  pkgconfig(libsmbios_c) >= 2.3.0
 %endif
 %if %{with efi_fw_update}
-Obsoletes:      dbxtool
-Obsoletes:      fwupdate
+Obsoletes:      dbxtool <= 8
+Obsoletes:      fwupdate <= 12
 Provides:       dbxtool
 %ifarch x86_64
 Requires:       shim >= 11
@@ -201,6 +201,7 @@
   -Dplugin_msr=false \
 %endif
   -Dgtkdoc=true \
+  -Dsupported_build=true \
   -Dtests=false
 %meson_build
 
@@ -213,6 +214,7 @@
 mkdir -p %{buildroot}%{_sbindir}
 ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rc%{name}
 ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rcfwupd-offline-update
+ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rcfwupd-refresh
 %find_lang %{name}
 
 # Do not ship default polkit .rules - openSUSE overrides them anyway - 
boo#1125428
@@ -238,17 +240,17 @@
 %postun -n libfwupdplugin1 -p /sbin/ldconfig
 
 %preun
-%service_del_preun %{name}.service fwupd-offline-update.service
+%service_del_preun %{name}.service fwupd-offline-update.service 
fwupd-refresh.service
 
 %pre
-%service_add_pre %{name}.service fwupd-offline-update.service
+%service_add_pre %{name}.service fwupd-offline-update.service 
fwupd-refresh.service
 
 %post
 %udev_rules_update
-%service_add_post %{name}.service fwupd-offline-update.service
+%service_add_post %{name}.service fwupd-offline-update.service 
fwupd-refresh.service
 
 %postun
-%service_del_postun %{name}.service fwupd-offline-update.service
+%service_del_postun %{name}.service fwupd-offline-update.service 
fwupd-refresh.service
 %if %{with efi_fw_update}
 if [ -e /etc/os-release ]; then
   . /etc/os-release
@@ -284,6 +286,7 @@
 %{_bindir}/fwupdtool
 %{_sbindir}/rc%{name}
 %{_sbindir}/rcfwupd-offline-update
+%{_sbindir}/rcfwupd-refresh
 %{_datadir}/dbus-1/system.d/org.freedesktop.fwupd.conf
 %{_datadir}/dbus-1/interfaces/org.freedesktop.fwupd.xml
 %{_datadir}/dbus-1/system-services/org.freedesktop.fwupd.service
@@ -318,7 +321,6 @@
 %ifarch %{ix86} x86_64
 %{_modulesloaddir}/fwupd-msr.conf
 %endif
-%{_modulesloaddir}/fwupd-platform-integrity.conf
 %config %{_sysconfdir}/%{name}/
 %dir %{_sysconfdir}/pki
 %dir %{_sysconfdir}/pki/fwupd

++++++ _service ++++++
--- /var/tmp/diff_new_pack.U1oxXP/_old  2020-12-12 20:28:02.853582250 +0100
+++ /var/tmp/diff_new_pack.U1oxXP/_new  2020-12-12 20:28:02.853582250 +0100
@@ -4,7 +4,7 @@
     <param name="scm">git</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="changesgenerate">enable</param>
-    <param name="revision">1.5.2</param>
+    <param name="revision">1.5.3</param>
   </service>
   <service name="recompress" mode="disabled">
     <param name="file">*.tar</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.U1oxXP/_old  2020-12-12 20:28:02.873582270 +0100
+++ /var/tmp/diff_new_pack.U1oxXP/_new  2020-12-12 20:28:02.873582270 +0100
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/hughsie/fwupd.git</param>
-              <param 
name="changesrevision">c21cff1c04140c5f208db6e118155c61e6085873</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">e300ca513f812a053e7e262cc5d48150c152bd82</param></service></servicedata>
\ No newline at end of file

++++++ fwupd-1.5.2.tar.xz -> fwupd-1.5.3.tar.xz ++++++
++++ 5873 lines of diff (skipped)
_______________________________________________
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org

Reply via email to