Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qt6-webengine for openSUSE:Factory 
checked in at 2026-03-28 20:12:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qt6-webengine (Old)
 and      /work/SRC/openSUSE:Factory/.qt6-webengine.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qt6-webengine"

Sat Mar 28 20:12:53 2026 rev:55 rq:1342822 version:6.11.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/qt6-webengine/qt6-webengine.changes      
2026-02-24 15:38:15.437563996 +0100
+++ /work/SRC/openSUSE:Factory/.qt6-webengine.new.8177/qt6-webengine.changes    
2026-03-28 20:13:32.045876131 +0100
@@ -1,0 +2,10 @@
+Mon Mar 23 10:37:56 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.11.0
+  https://www.qt.io/blog/qt-6.11-released
+  Based on Chromium version: 140.0.7339.264
+  Patched with security patches up to Chromium version: 146.0.7680.80
+- Drop patch, merged upstream:
+  * 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch
+
+-------------------------------------------------------------------

Old:
----
  0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch
  qtwebengine-everywhere-src-6.10.2.tar.xz

New:
----
  qtwebengine-everywhere-src-6.11.0.tar.xz

----------(Old B)----------
  Old:- Drop patch, merged upstream:
  * 0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch
----------(Old E)----------

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

Other differences:
------------------
++++++ qt6-webengine.spec ++++++
--- /var/tmp/diff_new_pack.VPlMRu/_old  2026-03-28 20:13:52.318712826 +0100
+++ /var/tmp/diff_new_pack.VPlMRu/_new  2026-03-28 20:13:52.318712826 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package qt6-webengine
 #
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,8 +15,9 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
-%define real_version 6.10.2
-%define short_version 6.10
+
+%define real_version 6.11.0
+%define short_version 6.11
 %define tar_name qtwebengine-everywhere-src
 %define tar_suffix %{nil}
 #
@@ -54,7 +55,7 @@
 %global lts_version 6.8.0
 #
 Name:           qt6-webengine%{?pkg_suffix}
-Version:        6.10.2
+Version:        6.11.0
 Release:        0
 Summary:        Web browser engine for Qt applications
 License:        GPL-2.0-only OR LGPL-3.0-only OR GPL-3.0-only
@@ -62,7 +63,6 @@
 Source0:        
https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
 Source99:       qt6-webengine-rpmlintrc
 # Patches 0-100 are upstream patches #
-Patch0:         0001-sandbox-Fix-build-with-glibc-2.43-and-above.patch
 # Patches 100-200 are openSUSE and/or non-upstream(able) patches #
 Patch100:       rtc-dont-use-h264.patch
 Patch101:       QtWebEngine_6.8_skip_xnnpack.patch
@@ -437,6 +437,9 @@
 # This shouldn't be needed
 rm -r %{buildroot}%{_qt6_cmakedir}/Qt6BuildInternals
 
+# Only needed internally
+rm %{buildroot}%{_qt6_cmakedir}/Qt6/Find{Bindgen,QWELibClang,Rust}.cmake
+
 # E: files-duplicated-waste
 %fdupes %{buildroot}%{_qt6_examplesdir}
 

++++++ qtwebengine-everywhere-src-6.10.2.tar.xz -> 
qtwebengine-everywhere-src-6.11.0.tar.xz ++++++
/work/SRC/openSUSE:Factory/qt6-webengine/qtwebengine-everywhere-src-6.10.2.tar.xz
 
/work/SRC/openSUSE:Factory/.qt6-webengine.new.8177/qtwebengine-everywhere-src-6.11.0.tar.xz
 differ: char 26, line 1

++++++ rtc-dont-use-h264.patch ++++++
--- /var/tmp/diff_new_pack.VPlMRu/_old  2026-03-28 20:13:52.406716458 +0100
+++ /var/tmp/diff_new_pack.VPlMRu/_new  2026-03-28 20:13:52.410716623 +0100
@@ -7,16 +7,17 @@
 index 66ed8434ff0..cbd78d582e6 100644
 --- a/src/3rdparty/chromium/third_party/webrtc/webrtc.gni
 +++ b/src/3rdparty/chromium/third_party/webrtc/webrtc.gni
-@@ -184,7 +184,7 @@ declare_args() {
-   # Enabling H264 when building with MSVC is currently not supported, see
-   # bugs.webrtc.org/9213#c13 for more info.
-   rtc_use_h264 =
--      proprietary_codecs && !is_android && !is_ios && !(is_win && !is_clang)
-+      false
+@@ -185,8 +185,7 @@ declare_args() {
+   if (build_with_chromium) {
+     rtc_use_h264 = media_use_openh264
+   } else {
+-    rtc_use_h264 =
+-        proprietary_codecs && !is_android && !is_ios && !(is_win && !is_clang)
++    rtc_use_h264 = false
+   }
  
    # Use system OpenH264
-   rtc_system_openh264 = false
-@@ -193,7 +193,7 @@ declare_args() {
+@@ -196,7 +195,7 @@ declare_args() {
    if (build_with_chromium) {
      rtc_use_h265 = enable_hevc_parser_and_hw_decoder
    } else {

Reply via email to