public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Michael Catanzaro <mcatanzaro@gnome.org>
To: git-commits@fedoraproject.org
Subject: [rpms/webkitgtk] f43: Update to 2.52.4
Date: Wed, 03 Jun 2026 14:44:49 GMT [thread overview]
Message-ID: <178049788970.1.17436163478486814835.rpms-webkitgtk-54d26cbba04b@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/webkitgtk
Branch : f43
Commit : 54d26cbba04b1bc30bb58ae6705869014e7fc65a
Author : Michael Catanzaro <mcatanzaro@gnome.org>
Date : 2026-06-03T09:44:44-05:00
Stats : +52/-3 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/webkitgtk/c/54d26cbba04b1bc30bb58ae6705869014e7fc65a?branch=f43
Log:
Update to 2.52.4
---
diff --git a/build.patch b/build.patch
new file mode 100644
index 0000000..df7b660
--- /dev/null
+++ b/build.patch
@@ -0,0 +1,46 @@
+From 5de06e39b421b2db74d30eb0ea76f8b754f8546b Mon Sep 17 00:00:00 2001
+From: Alberto Garcia <berto@igalia.com>
+Date: Tue, 2 Jun 2026 07:24:38 -0700
+Subject: [PATCH] REGRESSION(313606@main): Fails to build with system malloc
+ https://bugs.webkit.org/show_bug.cgi?id=316083
+
+Reviewed by Fujii Hironori.
+
+Don't add bmalloc_CopyHeaders to LLIntOffsetsExtractor_DEPENDENCIES if
+USE_SYSTEM_MALLOC is on.
+
+* Source/JavaScriptCore/CMakeLists.txt:
+
+Canonical link: https://commits.webkit.org/314364@main
+---
+ Source/JavaScriptCore/CMakeLists.txt | 8 ++++++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/Source/JavaScriptCore/CMakeLists.txt b/Source/JavaScriptCore/CMakeLists.txt
+index e65f1d4237d9..2de9aa7792e8 100644
+--- a/Source/JavaScriptCore/CMakeLists.txt
++++ b/Source/JavaScriptCore/CMakeLists.txt
+@@ -427,8 +427,10 @@ set(LLIntSettingsExtractor_DEPENDENCIES
+ JavaScriptCore_CopyHeaders
+ JavaScriptCore_CopyPrivateHeaders
+ WTF_CopyHeaders
+- bmalloc_CopyHeaders
+ )
++if (NOT USE_SYSTEM_MALLOC)
++ list(APPEND LLIntSettingsExtractor_DEPENDENCIES bmalloc_CopyHeaders)
++endif ()
+ WEBKIT_EXECUTABLE(LLIntSettingsExtractor)
+
+ # LLIntSettingsExtractor target needs to have a direct or indirect
+@@ -454,8 +456,10 @@ set(LLIntOffsetsExtractor_DEPENDENCIES
+ JavaScriptCore_CopyHeaders
+ JavaScriptCore_CopyPrivateHeaders
+ WTF_CopyHeaders
+- bmalloc_CopyHeaders
+ )
++if (NOT USE_SYSTEM_MALLOC)
++ list(APPEND LLIntOffsetsExtractor_DEPENDENCIES bmalloc_CopyHeaders)
++endif ()
+ WEBKIT_EXECUTABLE(LLIntOffsetsExtractor)
+
+ # The build system will execute asm.rb every time LLIntOffsetsExtractor's mtime is newer than
diff --git a/sources b/sources
index 5d2ff95..ef800e3 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (webkitgtk-2.52.3.tar.xz.asc) = cb7f6dc0e2d65c763988e9a18c48ee6810d60a8d2351912bdd33358dcd2d46b994ba34f85c6f8315a34d5b5cb78bd2f0dcb78d076af58e657d1817fdd56f005d
-SHA512 (webkitgtk-2.52.3.tar.xz) = 8007688e4eb5b465a6f50e05e89858f970f7bbaed45844b8f97175de1fb24e41e6d88f4f6b6299d5ae2ad4e19483da371ac16257d787626da29de7551fbd2a3c
+SHA512 (webkitgtk-2.52.4.tar.xz) = 0500660199cc00477d4c89b513a4ac772593ea5c490d6ebc97c693761bacd024c80c75df7e826cd1a7c292206d4ab0da2b0d91d0a4790069e575fa58bba7be02
+SHA512 (webkitgtk-2.52.4.tar.xz.asc) = 8d0c7efcdffd67312ce049e10ebe0e0cae914ee53cab6356919b2a70682587f53076abc45a01c2a5bcfb687d9d47a08c12888643134bca8e0ccc889277190b18
diff --git a/webkitgtk.spec b/webkitgtk.spec
index 8b66b7c..a13079b 100644
--- a/webkitgtk.spec
+++ b/webkitgtk.spec
@@ -19,7 +19,7 @@
%endif
Name: webkitgtk
-Version: 2.52.3
+Version: 2.52.4
Release: %autorelease
Summary: GTK web content engine library
@@ -57,6 +57,9 @@ Source1: https://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz.asc
# $ gpg --export --export-options export-minimal 013A0127AC9C65B34FFA62526C1009B693975393 5AA3BC334FD7E3369E7C77B291C559DBE4C9123B > webkitgtk-keys.gpg
Source2: webkitgtk-keys.gpg
+# https://bugs.webkit.org/show_bug.cgi?id=316083
+Patch: build.patch
+
BuildRequires: bison
BuildRequires: bubblewrap
BuildRequires: clang
reply other threads:[~2026-06-03 14:44 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178049788970.1.17436163478486814835.rpms-webkitgtk-54d26cbba04b@fedoraproject.org \
--to=mcatanzaro@gnome.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox