diff --git a/webkit2gtk3.changes b/webkit2gtk3.changes index 87b6281..4306cd3 100644 --- a/webkit2gtk3.changes +++ b/webkit2gtk3.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Fri Feb 16 15:33:11 UTC 2024 - Michael Gorse + +- Increase mem_per_process again to match what is in SLE. The build + was sporadically failing there (bsc#1198743). +- Require libwaylandclient0 >= 1.20. 15.4 originally had 1.19.0, + but webkitgtk uses a function added in 1.20.0, so we need to + ensure that the wayland update is pulled in (bsc#1215072). + ------------------------------------------------------------------- Thu Feb 15 04:03:27 UTC 2024 - Michael Gorse @@ -96,7 +105,8 @@ Mon Oct 23 18:48:15 UTC 2023 - Mike Gorse ------------------------------------------------------------------- Fri Sep 29 18:10:40 UTC 2023 - Bjørn Lie -- Update to version 2.42.1: +- Update to version 2.42.1 (boo#1215661 boo#1215866 boo#1215867 + boo#1215868 boo#1215869 boo#1215870): + Fix enable-html5-database setting to properly enable/disable IndexedDB API. + Fix the build with GBM disabled. diff --git a/webkit2gtk3.spec b/webkit2gtk3.spec index 574ebba..5d26a1e 100644 --- a/webkit2gtk3.spec +++ b/webkit2gtk3.spec @@ -204,6 +204,7 @@ Requires: libjavascriptcoregtk%{_soverlj6api} = %{version} %else Requires: libjavascriptcoregtk%{_sover} = %{version} %endif +Requires: libwayland-client0 >= 1.20.0 Requires: webkit2gtk-%{_sonameverpkg}-injected-bundles Requires: xdg-dbus-proxy Provides: %{_pkgname_no_slpp} = %{version} @@ -438,8 +439,8 @@ A small test browswer from webkit, useful for testing features. -# Expand %%lang_package to Obsoletes its older-name counterpart +# Expand %%lang_package to Obsoletes its older-name counterpart %package -n WebKitGTK-%{_apiver}-lang Summary: Translations for package %{name} Group: System/Localization @@ -466,7 +467,7 @@ cat /proc/meminfo echo "System limits:" ulimit -a if test -n "$max_link_jobs" -a "$max_link_jobs" -gt 1 ; then - mem_per_process=1500000 + mem_per_process=2000000 max_mem=$(awk '/MemTotal/ { print $2 }' /proc/meminfo) max_jobs="$(($max_mem / $mem_per_process))" test "$max_link_jobs" -gt "$max_jobs" && max_link_jobs="$max_jobs" && echo "Warning: Reducing number of link jobs to $max_jobs because of memory limits"