From 32b53a23e88c7a08d289e81b24b8430efe3b2fd9 Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Mon, 12 Jul 2021 22:19:11 +0300 Subject: [PATCH] package/wpewebkit: bump to version 2.32.2 Bugfix release, mainly solves a few issues with input events and a few crashes. Release notes: https://wpewebkit.org/release/wpewebkit-2.32.2.html The patch for building against uClibc has been included in this release, therefore "0001-Support-building-against-uClibc.patch" is removed. Signed-off-by: Adrian Perez de Castro Signed-off-by: Thomas Petazzoni --- ...0001-Support-building-against-uClibc.patch | 82 ------------------- package/wpewebkit/wpewebkit.hash | 8 +- package/wpewebkit/wpewebkit.mk | 2 +- 3 files changed, 5 insertions(+), 87 deletions(-) delete mode 100644 package/wpewebkit/0001-Support-building-against-uClibc.patch diff --git a/package/wpewebkit/0001-Support-building-against-uClibc.patch b/package/wpewebkit/0001-Support-building-against-uClibc.patch deleted file mode 100644 index 7c0918a195..0000000000 --- a/package/wpewebkit/0001-Support-building-against-uClibc.patch +++ /dev/null @@ -1,82 +0,0 @@ -From 624d3b6a99778443e35fb260bef50a3969df9215 Mon Sep 17 00:00:00 2001 -From: Adrian Perez de Castro -Date: Wed, 26 May 2021 01:24:59 +0300 -Subject: [PATCH] Support building against uClibc - https://bugs.webkit.org/show_bug.cgi?id=226244 - -Reviewed by Michael Catanzaro. - -Source/JavaScriptCore: - -* assembler/MacroAssemblerARM64.cpp: -(getauxval): Provide a fallback implementation of getauxval() for -systems which do not provide , like those using uClibc -as their C library. - -Source/WTF: - -* wtf/PlatformRegisters.h: Use the header instead of -, which is enough to gain access to the type definitions -for CPU registers and is available on every libc. On the other hand, -uClibc does not have , so this fixes the build in that -case. - -Signed-off-by: Adrian Perez de Castro -[Backport from upstream: - - https://bugs.webkit.org/show_bug.cgi?id=226244 - - https://trac.webkit.org/changeset/278302 (current svn, soon legacy) - - https://commits.webkit.org/238339@main (future-proof for after the migration to git) -] -[yann.morin.1998@free.fr: add upstream commit refs] -Signed-off-by: Yann E. MORIN ---- - .../assembler/MacroAssemblerARM64.cpp | 18 ++++++++++++++++++ - Source/WTF/wtf/PlatformRegisters.h | 2 +- - 2 files changed, 19 insertions(+), 1 deletion(-) - -diff --git a/Source/JavaScriptCore/assembler/MacroAssemblerARM64.cpp b/Source/JavaScriptCore/assembler/MacroAssemblerARM64.cpp -index 9e5c5147ea0..d20e632d825 100644 ---- a/Source/JavaScriptCore/assembler/MacroAssemblerARM64.cpp -+++ b/Source/JavaScriptCore/assembler/MacroAssemblerARM64.cpp -@@ -34,7 +34,25 @@ - - #if OS(LINUX) - #include -+#if __has_include() - #include -+#else -+#include -+// Provide an implementation for C libraries which do not ship one. -+static unsigned long getauxval(unsigned long type) -+{ -+ char** env = environ; -+ while (*env++) { /* no-op */ } -+ -+ for (auto* auxv = reinterpret_cast(env); *auxv != AT_NULL; auxv += 2) { -+ if (*auxv == type) -+ return auxv[1]; -+ } -+ -+ errno = ENOENT; -+ return 0; -+} -+#endif - #endif - - namespace JSC { -diff --git a/Source/WTF/wtf/PlatformRegisters.h b/Source/WTF/wtf/PlatformRegisters.h -index d26ef985169..e7f15b7eb62 100644 ---- a/Source/WTF/wtf/PlatformRegisters.h -+++ b/Source/WTF/wtf/PlatformRegisters.h -@@ -35,7 +35,7 @@ - #elif OS(WINDOWS) - #include - #else --#include -+#include - #endif - - namespace WTF { --- -2.31.1 - diff --git a/package/wpewebkit/wpewebkit.hash b/package/wpewebkit/wpewebkit.hash index 0c8c6dba6f..28e3feae90 100644 --- a/package/wpewebkit/wpewebkit.hash +++ b/package/wpewebkit/wpewebkit.hash @@ -1,7 +1,7 @@ -# From https://wpewebkit.org/releases/wpewebkit-2.32.1.tar.xz.sums -md5 1dd3f56b8eba16266166d757acb979fc wpewebkit-2.32.1.tar.xz -sha1 c5b3a48d886375a6982dd2dc5c9cc2f92f5a9690 wpewebkit-2.32.1.tar.xz -sha256 7b6b39a12ccf3f84da4cc6ac59e02fbe328f7476eaeb9c23de9b9288c2c2f39c wpewebkit-2.32.1.tar.xz +# From https://wpewebkit.org/releases/wpewebkit-2.32.2.tar.xz.sums +md5 a6624736150045a54037457416820b19 wpewebkit-2.32.2.tar.xz +sha1 7b41a49f97b4cb458b6896623a02f4861cbcf728 wpewebkit-2.32.2.tar.xz +sha256 2f0ebef0395a5a9e37a8609093f86140f74504f9954f97799b95f5dfbe186739 wpewebkit-2.32.2.tar.xz # Hashes for license files: sha256 0b5d3a7cc325942567373b0ecd757d07c132e0ebd7c97bfc63f7e1a76094edb4 Source/WebCore/LICENSE-APPLE diff --git a/package/wpewebkit/wpewebkit.mk b/package/wpewebkit/wpewebkit.mk index 39424a26fa..339dedd49b 100644 --- a/package/wpewebkit/wpewebkit.mk +++ b/package/wpewebkit/wpewebkit.mk @@ -4,7 +4,7 @@ # ################################################################################ -WPEWEBKIT_VERSION = 2.32.1 +WPEWEBKIT_VERSION = 2.32.2 WPEWEBKIT_SITE = http://www.wpewebkit.org/releases WPEWEBKIT_SOURCE = wpewebkit-$(WPEWEBKIT_VERSION).tar.xz WPEWEBKIT_INSTALL_STAGING = YES -- 2.30.2