-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wpewebkit: Bump up version to 2.34.1
Release notes WPE WebKit 2.34.0 [1]: - HTTP/2 support when building with libsoup3. - Add support for the Fullscreen API, which needs libwpe 1.11.1 or newer. - Add support for CSS Scroll Snap. - Add support for display capture. - Add basic support for ICC color management. - Add support for the color-schemes CSS property. - Add support for link preconnect when building with libsoup3. - Add support for authentication using client side certificates. - Add multi-track support to media backend. - Add new API to handle web process unresponsiveness. - Add API to disable CORS on a web view for particular domains. - Add new API to access/modify capture devices states. - Add new API to configure the memory pressure handler. - Allow to opt-out of GL rendering at runtime for the media player. - Support building with the uClibc C standard library. Release notes WPE WebKit 2.34.1 [2]: - Update User-Agent browser versions. - Fix a crash when loading videos on Reddit. - Fix file type detection when application calls g_desktop_app_info_set_as_default_for_extension() passing HTML. [1] https://lists.webkit.org/pipermail/webkit-wpe/2021-October/000459.html [2] https://lists.webkit.org/pipermail/webkit-wpe/2021-October/000460.html
- Loading branch information
Showing
10 changed files
with
45 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../template/include/preferred-wpe-2_30.conf → .../template/include/preferred-wpe-2_34.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
PREFERRED_PROVIDER_virtual/wpebackend = "wpebackend-fdo" | ||
PREFERRED_PROVIDER_virtual/libwpe = "libwpe" | ||
PREFERRED_VERSION_cog = "0.8.%" | ||
PREFERRED_VERSION_wpewebkit = "2.30.%" | ||
PREFERRED_VERSION_wpebackend-fdo = "1.10.%" | ||
PREFERRED_VERSION_cog = "0.10.%" | ||
PREFERRED_VERSION_wpewebkit = "2.34.%" | ||
PREFERRED_VERSION_wpebackend-fdo = "1.12.%" | ||
PREFERRED_VERSION_wpebackend-rdk = "1.20200213" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
require ../include/preferred-wpe-2_34.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
require ../include/local-wpe-qt.conf | ||
require ../presets/mesa-wpe-2_32.conf | ||
require ../presets/mesa-wpe-2_34.conf |
57 changes: 0 additions & 57 deletions
57
recipes-browser/wpewebkit/wpewebkit/216455_builds_with_ENABLE_SERVICE_WORKER_OFF.patch
This file was deleted.
Oops, something went wrong.
73 changes: 0 additions & 73 deletions
73
...ser/wpewebkit/wpewebkit/274943-GStreamer-Use-imxvideoconvert_g2d-element-inside-the.patch
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
require wpewebkit.inc | ||
require conf/include/devupstream.inc | ||
|
||
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | ||
|
||
SRC_URI = "\ | ||
https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz;name=tarball \ | ||
" | ||
|
||
SRC_URI[tarball.sha256sum] = "cb336986341be9c3a9b1ca2c18de0d29d90ae4e77b9967a6f6879597e7a969f7" | ||
|
||
DEPENDS += " libwpe" | ||
RCONFLICTS_${PN} = "libwpe (< 1.8) wpebackend-fdo (< 1.10)" | ||
|
||
SRC_URI_class-devupstream = "git://git.webkit.org/WebKit.git;branch=master" | ||
# WPE 2.34.X branch was forked from the main branch in this commit | ||
SRCREV_class-devupstream = "30c41fe654d9556a5681663166c1461132326ff7" | ||
|
||
# Needed for since >2.34. | ||
PACKAGECONFIG[dfg-jit] = "-DENABLE_DFG_JIT=ON,-DENABLE_DFG_JIT=OFF," | ||
PACKAGECONFIG[jit] = "-DENABLE_JIT=ON,-DENABLE_JIT=OFF," | ||
PACKAGECONFIG[lcms] = "-DUSE_LCMS=ON,-DUSE_LCMS=OFF," | ||
|
||
PACKAGECONFIG_append = " dfg-jit" | ||
|
||
# libsoup-3 will be available not before Poky kirkstone. | ||
# http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta/recipes-support/libsoup/libsoup_3.0.1.bb?id=de296e2b2be876ca5cf2af309b710111e2b2581e | ||
EXTRA_OECMAKE += "-DUSE_SOUP2=ON" | ||
|