import webkit2gtk3-2.34.6-1.el8
This commit is contained in:
parent
4959673f79
commit
02265d131b
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/webkitgtk-2.32.3.tar.xz
|
SOURCES/webkitgtk-2.34.6.tar.xz
|
||||||
|
SOURCES/webkitgtk-keys.gpg
|
||||||
|
@ -1 +1,2 @@
|
|||||||
9c9b2cb2638ea40706765768dd5cb3c95ab46dcb SOURCES/webkitgtk-2.32.3.tar.xz
|
bb82517289baf9c858fa406d1d845274f81e25cb SOURCES/webkitgtk-2.34.6.tar.xz
|
||||||
|
cf57cbbadf2a07c6ede1c886f9742b7d352460c0 SOURCES/webkitgtk-keys.gpg
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
Index: /Source/WTF/wtf/CrossThreadTask.h
|
|
||||||
===================================================================
|
|
||||||
--- /Source/WTF/wtf/CrossThreadTask.h (revision 281383)
|
|
||||||
+++ /Source/WTF/wtf/CrossThreadTask.h (revision 281384)
|
|
||||||
@@ -88,5 +88,5 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
-template<typename T, typename std::enable_if<std::is_base_of<ThreadSafeRefCounted<T>, T>::value, int>::type = 0, typename... Parameters, typename... Arguments>
|
|
||||||
+template<typename T, typename std::enable_if<std::is_base_of<ThreadSafeRefCountedBase, T>::value, int>::type = 0, typename... Parameters, typename... Arguments>
|
|
||||||
CrossThreadTask createCrossThreadTask(T& callee, void (T::*method)(Parameters...), const Arguments&... arguments)
|
|
||||||
{
|
|
||||||
@@ -96,5 +96,5 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
-template<typename T, typename std::enable_if<!std::is_base_of<ThreadSafeRefCounted<T>, T>::value, int>::type = 0, typename... Parameters, typename... Arguments>
|
|
||||||
+template<typename T, typename std::enable_if<!std::is_base_of<ThreadSafeRefCountedBase, T>::value, int>::type = 0, typename... Parameters, typename... Arguments>
|
|
||||||
CrossThreadTask createCrossThreadTask(T& callee, void (T::*method)(Parameters...), const Arguments&... arguments)
|
|
||||||
{
|
|
||||||
Index: /Source/WebCore/Modules/indexeddb/IDBRequest.cpp
|
|
||||||
===================================================================
|
|
||||||
--- /Source/WebCore/Modules/indexeddb/IDBRequest.cpp (revision 281383)
|
|
||||||
+++ /Source/WebCore/Modules/indexeddb/IDBRequest.cpp (revision 281384)
|
|
||||||
@@ -309,5 +309,6 @@
|
|
||||||
targets = { this, m_transaction.get(), &m_transaction->database() };
|
|
||||||
|
|
||||||
- m_hasPendingActivity = false;
|
|
||||||
+ if (event.isTrusted())
|
|
||||||
+ m_hasPendingActivity = false;
|
|
||||||
|
|
||||||
{
|
|
@ -1,16 +1,19 @@
|
|||||||
diff --git a/Source/WTF/wtf/PageBlock.h b/Source/WTF/wtf/PageBlock.h
|
diff --git a/Source/WTF/wtf/PageBlock.h b/Source/WTF/wtf/PageBlock.h
|
||||||
index c655a50c2c89..c4a6b8d09f16 100644
|
index 9bb7fffcc1ae..3e1e24aa69f5 100644
|
||||||
--- a/Source/WTF/wtf/PageBlock.h
|
--- a/Source/WTF/wtf/PageBlock.h
|
||||||
+++ b/Source/WTF/wtf/PageBlock.h
|
+++ b/Source/WTF/wtf/PageBlock.h
|
||||||
@@ -49,9 +49,9 @@ namespace WTF {
|
@@ -45,11 +45,11 @@ namespace WTF {
|
||||||
|
// On Linux, Power systems normally use 64 KiB pages.
|
||||||
|
//
|
||||||
// Use 64 KiB for any unknown CPUs to be conservative.
|
// Use 64 KiB for any unknown CPUs to be conservative.
|
||||||
#if OS(DARWIN) || PLATFORM(PLAYSTATION)
|
-#if OS(DARWIN) || PLATFORM(PLAYSTATION) || CPU(MIPS) || CPU(MIPS64) || (OS(LINUX) && CPU(ARM64))
|
||||||
|
+#if OS(DARWIN) || PLATFORM(PLAYSTATION) || CPU(MIPS) || CPU(MIPS64)
|
||||||
constexpr size_t CeilingOnPageSize = 16 * KB;
|
constexpr size_t CeilingOnPageSize = 16 * KB;
|
||||||
-#elif USE(64KB_PAGE_BLOCK) || CPU(PPC) || CPU(PPC64) || CPU(PPC64LE) || CPU(UNKNOWN)
|
-#elif CPU(PPC) || CPU(PPC64) || CPU(PPC64LE) || CPU(UNKNOWN)
|
||||||
+#elif USE(64KB_PAGE_BLOCK) || CPU(PPC) || CPU(PPC64) || CPU(PPC64LE) || CPU(UNKNOWN) || CPU(ARM64)
|
+#elif CPU(PPC) || CPU(PPC64) || CPU(PPC64LE) || CPU(UNKNOWN) || CPU(ARM64)
|
||||||
constexpr size_t CeilingOnPageSize = 64 * KB;
|
constexpr size_t CeilingOnPageSize = 64 * KB;
|
||||||
-#elif OS(WINDOWS) || CPU(MIPS) || CPU(MIPS64) || CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64)
|
-#elif OS(WINDOWS) || CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(RISCV64)
|
||||||
+#elif OS(WINDOWS) || CPU(MIPS) || CPU(MIPS64) || CPU(X86) || CPU(X86_64) || CPU(ARM)
|
+#elif OS(WINDOWS) || CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(RISCV64)
|
||||||
constexpr size_t CeilingOnPageSize = 4 * KB;
|
constexpr size_t CeilingOnPageSize = 4 * KB;
|
||||||
#else
|
#else
|
||||||
#error Must set CeilingOnPageSize in PageBlock.h when adding a new CPU architecture!
|
#error Must set CeilingOnPageSize in PageBlock.h when adding a new CPU architecture!
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
diff --git a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
diff --git a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
||||||
index 6dd9f20e4ff2..995f355f6ee3 100644
|
index bd2d4d20206f..0fe471bde384 100644
|
||||||
--- a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
--- a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
||||||
+++ b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
+++ b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
|
||||||
@@ -400,6 +400,9 @@ static void webkitWebContextConstructed(GObject* object)
|
@@ -415,6 +415,9 @@ static void webkitWebContextConstructed(GObject* object)
|
||||||
#endif
|
g_clear_pointer(&priv->memoryPressureSettings, webkit_memory_pressure_settings_free);
|
||||||
#endif
|
}
|
||||||
|
|
||||||
+ if (!g_strcmp0(g_get_prgname(), "evolution"))
|
+ if (!g_strcmp0(g_get_prgname(), "evolution"))
|
||||||
+ configuration.setUsesSingleWebProcess(true);
|
+ configuration.setUsesSingleWebProcess(true);
|
||||||
|
6
SOURCES/webkitgtk-2.34.6.tar.xz.asc
Normal file
6
SOURCES/webkitgtk-2.34.6.tar.xz.asc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iF0EABECAB0WIQRao7wzT9fjNp58d7KRxVnb5MkSOwUCYg5JzQAKCRCRxVnb5MkS
|
||||||
|
O2fTAJ0bM+z81IRILK3jrBeY2FvVF9XMgACffrCY/lTW8tvkhMt+xNQvn5aPLO4=
|
||||||
|
=duRI
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -11,13 +11,18 @@
|
|||||||
%bcond_without docs
|
%bcond_without docs
|
||||||
|
|
||||||
Name: webkit2gtk3
|
Name: webkit2gtk3
|
||||||
Version: 2.32.3
|
Version: 2.34.6
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: GTK Web content engine library
|
Summary: GTK Web content engine library
|
||||||
|
|
||||||
License: LGPLv2
|
License: LGPLv2
|
||||||
URL: http://www.webkitgtk.org/
|
URL: http://www.webkitgtk.org/
|
||||||
Source0: http://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz
|
Source0: http://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz
|
||||||
|
Source1: https://webkitgtk.org/releases/webkitgtk-%{version}.tar.xz.asc
|
||||||
|
# Use the keys from https://webkitgtk.org/verifying.html
|
||||||
|
# $ gpg --import aperez.key carlosgc.key
|
||||||
|
# $ gpg --export --export-options export-minimal D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3 5AA3BC334FD7E3369E7C77B291C559DBE4C9123B > webkitgtk-keys.gpg
|
||||||
|
Source2: webkitgtk-keys.gpg
|
||||||
|
|
||||||
# https://bugs.webkit.org/show_bug.cgi?id=193749
|
# https://bugs.webkit.org/show_bug.cgi?id=193749
|
||||||
Patch0: evolution-shared-secondary-process.patch
|
Patch0: evolution-shared-secondary-process.patch
|
||||||
@ -26,11 +31,7 @@ Patch0: evolution-shared-secondary-process.patch
|
|||||||
# https://bugs.webkit.org/show_bug.cgi?id=227905
|
# https://bugs.webkit.org/show_bug.cgi?id=227905
|
||||||
Patch1: aarch64-page-size.patch
|
Patch1: aarch64-page-size.patch
|
||||||
|
|
||||||
# https://bugs.webkit.org/show_bug.cgi?id=229375
|
|
||||||
Patch2: CVE-2021-30858.patch
|
|
||||||
|
|
||||||
BuildRequires: bison
|
BuildRequires: bison
|
||||||
BuildRequires: bubblewrap
|
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: flex
|
BuildRequires: flex
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -48,7 +49,6 @@ BuildRequires: python3
|
|||||||
BuildRequires: ruby
|
BuildRequires: ruby
|
||||||
BuildRequires: rubygem-json
|
BuildRequires: rubygem-json
|
||||||
BuildRequires: rubygems
|
BuildRequires: rubygems
|
||||||
#BuildRequires: xdg-dbus-proxy
|
|
||||||
|
|
||||||
BuildRequires: pkgconfig(atspi-2)
|
BuildRequires: pkgconfig(atspi-2)
|
||||||
BuildRequires: pkgconfig(cairo)
|
BuildRequires: pkgconfig(cairo)
|
||||||
@ -64,14 +64,13 @@ BuildRequires: pkgconfig(freetype2)
|
|||||||
BuildRequires: pkgconfig(gl)
|
BuildRequires: pkgconfig(gl)
|
||||||
BuildRequires: pkgconfig(glib-2.0)
|
BuildRequires: pkgconfig(glib-2.0)
|
||||||
BuildRequires: pkgconfig(glesv2)
|
BuildRequires: pkgconfig(glesv2)
|
||||||
BuildRequires: pkgconfig(gnutls)
|
|
||||||
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
||||||
BuildRequires: pkgconfig(gstreamer-1.0)
|
BuildRequires: pkgconfig(gstreamer-1.0)
|
||||||
BuildRequires: pkgconfig(gstreamer-plugins-base-1.0)
|
BuildRequires: pkgconfig(gstreamer-plugins-base-1.0)
|
||||||
BuildRequires: pkgconfig(gstreamer-plugins-bad-1.0)
|
BuildRequires: pkgconfig(gstreamer-plugins-bad-1.0)
|
||||||
BuildRequires: pkgconfig(gtk+-2.0)
|
|
||||||
BuildRequires: pkgconfig(gtk+-3.0)
|
BuildRequires: pkgconfig(gtk+-3.0)
|
||||||
BuildRequires: pkgconfig(harfbuzz)
|
BuildRequires: pkgconfig(harfbuzz)
|
||||||
|
BuildRequires: pkgconfig(lcms2)
|
||||||
BuildRequires: pkgconfig(icu-uc)
|
BuildRequires: pkgconfig(icu-uc)
|
||||||
BuildRequires: pkgconfig(libjpeg)
|
BuildRequires: pkgconfig(libjpeg)
|
||||||
BuildRequires: pkgconfig(libnotify)
|
BuildRequires: pkgconfig(libnotify)
|
||||||
@ -82,6 +81,7 @@ BuildRequires: pkgconfig(libseccomp)
|
|||||||
BuildRequires: pkgconfig(libsecret-1)
|
BuildRequires: pkgconfig(libsecret-1)
|
||||||
BuildRequires: pkgconfig(libsoup-2.4)
|
BuildRequires: pkgconfig(libsoup-2.4)
|
||||||
BuildRequires: pkgconfig(libsystemd)
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
|
BuildRequires: pkgconfig(libtasn1)
|
||||||
BuildRequires: pkgconfig(libwebp)
|
BuildRequires: pkgconfig(libwebp)
|
||||||
BuildRequires: pkgconfig(libwoff2dec)
|
BuildRequires: pkgconfig(libwoff2dec)
|
||||||
BuildRequires: pkgconfig(libxslt)
|
BuildRequires: pkgconfig(libxslt)
|
||||||
@ -89,12 +89,17 @@ BuildRequires: pkgconfig(sqlite3)
|
|||||||
BuildRequires: pkgconfig(upower-glib)
|
BuildRequires: pkgconfig(upower-glib)
|
||||||
BuildRequires: pkgconfig(wayland-client)
|
BuildRequires: pkgconfig(wayland-client)
|
||||||
BuildRequires: pkgconfig(wayland-egl)
|
BuildRequires: pkgconfig(wayland-egl)
|
||||||
|
BuildRequires: pkgconfig(wayland-protocols)
|
||||||
BuildRequires: pkgconfig(wayland-server)
|
BuildRequires: pkgconfig(wayland-server)
|
||||||
BuildRequires: pkgconfig(xt)
|
BuildRequires: pkgconfig(xt)
|
||||||
|
|
||||||
# If Geoclue is not running, the geolocation API will not work.
|
# If Geoclue is not running, the geolocation API will not work.
|
||||||
Recommends: geoclue2
|
Recommends: geoclue2
|
||||||
|
|
||||||
|
# Needed for various GStreamer elements.
|
||||||
|
Recommends: gstreamer1-plugins-bad-free
|
||||||
|
Recommends: gstreamer1-plugins-good
|
||||||
|
|
||||||
# Obsolete libwebkit2gtk from the webkitgtk3 package
|
# Obsolete libwebkit2gtk from the webkitgtk3 package
|
||||||
Obsoletes: libwebkit2gtk < 2.5.0
|
Obsoletes: libwebkit2gtk < 2.5.0
|
||||||
Provides: libwebkit2gtk = %{version}-%{release}
|
Provides: libwebkit2gtk = %{version}-%{release}
|
||||||
@ -169,6 +174,7 @@ The %{name}-jsc-devel package contains libraries, build data, and header
|
|||||||
files for developing applications that use JavaScript engine from %{name}.
|
files for developing applications that use JavaScript engine from %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||||
%autosetup -p1 -n webkitgtk-%{version} -S git
|
%autosetup -p1 -n webkitgtk-%{version} -S git
|
||||||
|
|
||||||
# Remove bundled libraries
|
# Remove bundled libraries
|
||||||
@ -202,6 +208,7 @@ pushd %{_target_platform}
|
|||||||
-DPORT=GTK \
|
-DPORT=GTK \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
-DENABLE_BUBBLEWRAP_SANDBOX=OFF \
|
-DENABLE_BUBBLEWRAP_SANDBOX=OFF \
|
||||||
|
-DUSE_SOUP2=ON \
|
||||||
%if %{with docs}
|
%if %{with docs}
|
||||||
-DENABLE_GTKDOC=ON \
|
-DENABLE_GTKDOC=ON \
|
||||||
%endif
|
%endif
|
||||||
@ -292,9 +299,22 @@ export NINJA_STATUS="[%f/%t][%e] "
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Sep 28 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.32.3-2
|
* Thu Feb 17 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 2.34.6-1
|
||||||
- Fix CVE-2021-30858
|
- Update to 2.34.6
|
||||||
- Resolves: #2006428
|
Related: #1985042
|
||||||
|
|
||||||
|
* Wed Feb 09 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 2.34.5-1
|
||||||
|
- Update to 2.34.5
|
||||||
|
- Related: #1985042
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Michael Catanzaro <mcatanzaro@redhat.com> - 2.34.4-1
|
||||||
|
- Update to 2.34.4
|
||||||
|
- Resolves: #1985042
|
||||||
|
|
||||||
|
* Tue Sep 28 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.32.4-1
|
||||||
|
- Update to 2.32.4
|
||||||
|
- Related: #1985042
|
||||||
|
- Resolves: #2006429
|
||||||
|
|
||||||
* Fri Jul 23 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.32.3-1
|
* Fri Jul 23 2021 Michael Catanzaro <mcatanzaro@redhat.com> - 2.32.3-1
|
||||||
- Update to 2.32.3
|
- Update to 2.32.3
|
||||||
|
Loading…
Reference in New Issue
Block a user