Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package wpewebkit for openSUSE:Factory checked in at 2026-08-20 16:14:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wpewebkit (Old) and /work/SRC/openSUSE:Factory/.wpewebkit.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wpewebkit" Thu Aug 20 16:14:10 2026 rev:15 rq:1372009 version:2.52.5 Changes: -------- --- /work/SRC/openSUSE:Factory/wpewebkit/wpewebkit.changes 2026-06-22 17:43:06.318497779 +0200 +++ /work/SRC/openSUSE:Factory/.wpewebkit.new.1258/wpewebkit.changes 2026-08-20 16:14:12.531940892 +0200 @@ -1,0 +2,18 @@ +Wed Aug 19 06:53:13 UTC 2026 - Dominique Leuenberger <[email protected]> + +- Add 70960.patch: Fix build using cmake 4.4. + +------------------------------------------------------------------- +Mon Jul 20 08:10:33 UTC 2026 - Bjørn Lie <[email protected]> + +- Update to version 2.52.5: + + Fire scrollend event for instant programmatic scrolls. + + Increase network idle connection timeout to 115 seconds. + + Add User-Agent quirk for HBO Max. + + Add User-Agent quirk to make WebXR work better on ikea.com. + + Make MiniBrowser exit cleanly when receiving signals and PGO + profiles are being gathered. + + Fix the build with system malloc. + + Fix several crashes and rendering issues. + +------------------------------------------------------------------- Old: ---- wpewebkit-2.52.4.tar.xz New: ---- 70960.patch wpewebkit-2.52.5.tar.xz ----------(New B)---------- New: - Add 70960.patch: Fix build using cmake 4.4. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wpewebkit.spec ++++++ --- /var/tmp/diff_new_pack.tWmCbV/_old 2026-08-20 16:14:14.363005784 +0200 +++ /var/tmp/diff_new_pack.tWmCbV/_new 2026-08-20 16:14:14.364005819 +0200 @@ -23,7 +23,7 @@ Name: wpewebkit %define _lto_cflags %{nil} -Version: 2.52.4 +Version: 2.52.5 Release: 0 Summary: Library for rendering web content, WPE Port License: BSD-3-Clause AND LGPL-2.1-only @@ -31,6 +31,8 @@ URL: https://wpewebkit.org/ Source: %{url}/releases/%{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM +Patch0: https://github.com/WebKit/WebKit/pull/70960.patch # PATCH-FIX-UPSTREAM riscv-platformenable.patch gh#Webkit/Webkit#64268 Patch1: riscv-platformenable.patch ++++++ 70960.patch ++++++ >From 4bfeff8c67ad47b7bb0f3d78390789f6f2af5dd2 Mon Sep 17 00:00:00 2001 From: Fujii Hironori <[email protected]> Date: Wed, 5 Aug 2026 07:18:26 -0700 Subject: [PATCH] [CMake 4.4][WPE] _WEBKIT_TARGET_LINK_FRAMEWORK reports "Unknown arguments specified" error https://bugs.webkit.org/show_bug.cgi?id=321081 Reviewed by Adrian Perez de Castro. CMake 4.4 reports the following error for WPE. > -- Using platform-specific CMakeLists: > /run/build/webkitwpe/Source/JavaScriptCore/shell/PlatformWPE.cmake > CMake Error at Source/cmake/WebKitMacros.cmake:554 (if): > if given arguments: > > "(" "NOT" "_linked_into" ")" "OR" "(" "JavaScriptCore" "STREQUAL" ")" > "OR" "(" "NOT" "IN_LIST" "jsc_FRAMEWORKS" ")" > > Unknown arguments specified > Call Stack (most recent call first): > Source/cmake/WebKitMacros.cmake:756 (_WEBKIT_TARGET_LINK_FRAMEWORK) > Source/JavaScriptCore/shell/CMakeLists.txt:126 (WEBKIT_EXECUTABLE) Replaced `${_linked_into}` with `_linked_into`. * Source/cmake/WebKitMacros.cmake(_WEBKIT_TARGET_LINK_FRAMEWORK): Canonical link: https://commits.webkit.org/318630@main --- Source/cmake/WebKitMacros.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake/WebKitMacros.cmake b/Source/cmake/WebKitMacros.cmake index 9d79754186cbb..9cbd52cc981d5 100644 --- a/Source/cmake/WebKitMacros.cmake +++ b/Source/cmake/WebKitMacros.cmake @@ -551,7 +551,7 @@ macro(_WEBKIT_TARGET_LINK_FRAMEWORK _target) get_property(_linked_into GLOBAL PROPERTY ${framework}_LINKED_INTO) # See if the target is linking a framework that the specified framework is already linked into - if ((NOT _linked_into) OR (${framework} STREQUAL ${_linked_into}) OR (NOT ${_linked_into} IN_LIST ${_target}_FRAMEWORKS)) + if ((NOT _linked_into) OR (framework STREQUAL _linked_into) OR (NOT _linked_into IN_LIST ${_target}_FRAMEWORKS)) list(APPEND ${_target}_PRIVATE_LIBRARIES WebKit::${framework}) # The WebKit:: alias targets do not propagate OBJECT libraries so the ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.tWmCbV/_old 2026-08-20 16:14:14.414007591 +0200 +++ /var/tmp/diff_new_pack.tWmCbV/_new 2026-08-20 16:14:14.417007698 +0200 @@ -1,6 +1,6 @@ -mtime: 1781251788 -commit: 196591a6ca95da6258deacee0e3a3950fa2740d9ab159818f3ff1239f3feabd5 +mtime: 1787122555 +commit: eac9aaab77ab697661b631d3ae4f7b95e35a6b4bbe3e69146b2fc0dabe13c476 url: https://src.opensuse.org/GNOME/wpewebkit -revision: 196591a6ca95da6258deacee0e3a3950fa2740d9ab159818f3ff1239f3feabd5 +revision: eac9aaab77ab697661b631d3ae4f7b95e35a6b4bbe3e69146b2fc0dabe13c476 projectscmsync: https://src.opensuse.org/GNOME/_ObsPrj ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-08-19 08:55:55.000000000 +0200 @@ -0,0 +1,4 @@ +*.obscpio +*.osc +_build.* +.pbuild ++++++ wpewebkit-2.52.4.tar.xz -> wpewebkit-2.52.5.tar.xz ++++++ /work/SRC/openSUSE:Factory/wpewebkit/wpewebkit-2.52.4.tar.xz /work/SRC/openSUSE:Factory/.wpewebkit.new.1258/wpewebkit-2.52.5.tar.xz differ: char 13, line 1
