Accepting request 1147130 from GNOME:Next

More SLE fixes

OBS-URL: https://build.opensuse.org/request/show/1147130
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=448
This commit is contained in:
Dominique Leuenberger 2024-02-16 16:35:21 +00:00 committed by Git OBS Bridge
parent 0e45babc89
commit a40f97fc52
2 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Fri Feb 16 15:33:11 UTC 2024 - Michael Gorse <mgorse@suse.com>
- 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 <mgorse@suse.com> Thu Feb 15 04:03:27 UTC 2024 - Michael Gorse <mgorse@suse.com>
@ -96,7 +105,8 @@ Mon Oct 23 18:48:15 UTC 2023 - Mike Gorse <mgorse@suse.com>
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Sep 29 18:10:40 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com> Fri Sep 29 18:10:40 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
- 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 + Fix enable-html5-database setting to properly enable/disable
IndexedDB API. IndexedDB API.
+ Fix the build with GBM disabled. + Fix the build with GBM disabled.

View File

@ -204,6 +204,7 @@ Requires: libjavascriptcoregtk%{_soverlj6api} = %{version}
%else %else
Requires: libjavascriptcoregtk%{_sover} = %{version} Requires: libjavascriptcoregtk%{_sover} = %{version}
%endif %endif
Requires: libwayland-client0 >= 1.20.0
Requires: webkit2gtk-%{_sonameverpkg}-injected-bundles Requires: webkit2gtk-%{_sonameverpkg}-injected-bundles
Requires: xdg-dbus-proxy Requires: xdg-dbus-proxy
Provides: %{_pkgname_no_slpp} = %{version} 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 %package -n WebKitGTK-%{_apiver}-lang
Summary: Translations for package %{name} Summary: Translations for package %{name}
Group: System/Localization Group: System/Localization
@ -466,7 +467,7 @@ cat /proc/meminfo
echo "System limits:" echo "System limits:"
ulimit -a ulimit -a
if test -n "$max_link_jobs" -a "$max_link_jobs" -gt 1 ; then 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_mem=$(awk '/MemTotal/ { print $2 }' /proc/meminfo)
max_jobs="$(($max_mem / $mem_per_process))" 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" 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"