Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package MozillaThunderbird for openSUSE:Factory checked in at 2021-10-26 20:13:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/MozillaThunderbird (Old) and /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.1890 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "MozillaThunderbird" Tue Oct 26 20:13:32 2021 rev:265 rq:927299 version:91.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/MozillaThunderbird/MozillaThunderbird.changes 2021-10-12 21:49:38.075895879 +0200 +++ /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.1890/MozillaThunderbird.changes 2021-10-26 20:13:38.826008327 +0200 @@ -1,0 +2,25 @@ +Fri Oct 22 21:27:02 UTC 2021 - Wolfgang Rosenauer <w...@rosenauer.org> + +- Mozilla Thunderbird 91.2.1 + * Preference added to disable automatic pausing RSS feed updates + after a fetch failure + * several bugfixes as outlined in release notes + https://www.thunderbird.net/en-US/thunderbird/91.2.1/releasenotes/ + +------------------------------------------------------------------- +Fri Oct 22 09:16:01 UTC 2021 - Guillaume GARDET <guillaume.gar...@opensuse.org> + +- Increase memory required per threads for aarch64 to avoid OOM + +------------------------------------------------------------------- +Thu Oct 21 13:23:29 UTC 2021 - Martin Li??ka <mli...@suse.cz> + +- Enable LTO on Tumbleweed. + +------------------------------------------------------------------- +Fri Oct 15 20:29:41 UTC 2021 - Wolfgang Rosenauer <w...@rosenauer.org> + +- add mozilla-bmo1724679.patch (bmo#1724679, boo#1182863) + fix some env variables which are enabled for any value + +------------------------------------------------------------------- Old: ---- l10n-91.2.0.tar.xz thunderbird-91.2.0.source.tar.xz thunderbird-91.2.0.source.tar.xz.asc New: ---- l10n-91.2.1.tar.xz mozilla-bmo1724679.patch thunderbird-91.2.1.source.tar.xz thunderbird-91.2.1.source.tar.xz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ MozillaThunderbird.spec ++++++ --- /var/tmp/diff_new_pack.FR3SL9/_old 2021-10-26 20:13:50.938014725 +0200 +++ /var/tmp/diff_new_pack.FR3SL9/_new 2021-10-26 20:13:50.938014725 +0200 @@ -26,8 +26,8 @@ # major 69 # mainver %major.99 %define major 91 -%define mainver %major.2.0 -%define orig_version 91.2.0 +%define mainver %major.2.1 +%define orig_version 91.2.1 %define orig_suffix %{nil} %define update_channel release %define source_prefix thunderbird-%{orig_version} @@ -208,6 +208,7 @@ Patch28: mozilla-libavcodec58_91.patch Patch29: mozilla-silence-no-return-type.patch Patch30: mozilla-bmo531915.patch +Patch31: mozilla-bmo1724679.patch %endif BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: /bin/sh @@ -309,6 +310,7 @@ %patch28 -p1 %patch29 -p1 %patch30 -p1 +%patch31 -p1 %endif %build @@ -390,7 +392,7 @@ echo "" cat << EOF %else -%ifarch ppc64 ppc64le +%ifarch aarch64 ppc64 ppc64le %limit_build -m 2500 %else %limit_build -m 2000 @@ -459,7 +461,7 @@ %endif %ifarch x86_64 # LTO needs newer toolchain stack only (at least GCC 8.2.1 (r268506) -%if 0%{?suse_version} > 1500 && 0%{?suse_version} < 1550 +%if 0%{?suse_version} > 1500 ac_add_options --enable-lto %if 0%{?do_profiling} ac_add_options MOZ_PGO=1 ++++++ l10n-91.2.0.tar.xz -> l10n-91.2.1.tar.xz ++++++ ++++++ mozilla-bmo1724679.patch ++++++ diff --git a/toolkit/components/remote/nsRemoteService.cpp b/toolkit/components/remote/nsRemoteService.cpp --- a/toolkit/components/remote/nsRemoteService.cpp +++ b/toolkit/components/remote/nsRemoteService.cpp @@ -107,7 +107,8 @@ bool useX11Remote = mozilla::widget::GdkIsX11Display(); # if defined(MOZ_ENABLE_DBUS) - if (!useX11Remote || getenv(DBUS_REMOTE_ENV)) { + const char* dbusRemoteEnv = getenv(DBUS_REMOTE_ENV); + if (!useX11Remote || (dbusRemoteEnv && *dbusRemoteEnv == '1')) { client = MakeUnique<nsDBusRemoteClient>(); } # endif diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp --- a/toolkit/xre/nsAppRunner.cpp +++ b/toolkit/xre/nsAppRunner.cpp @@ -4125,7 +4125,7 @@ const char* x11Display = PR_GetEnv("DISPLAY"); // MOZ_ENABLE_WAYLAND is our primary Wayland on/off switch. const char* waylandPref = PR_GetEnv("MOZ_ENABLE_WAYLAND"); - bool enableWayland = !x11Display || (waylandPref && *waylandPref); + bool enableWayland = !x11Display || (waylandPref && *waylandPref == '1'); if (!enableWayland) { const char* backendPref = PR_GetEnv("GDK_BACKEND"); enableWayland = (backendPref && strncmp(backendPref, "wayland", 7) == 0); diff --git a/widget/gtk/nsFilePicker.cpp b/widget/gtk/nsFilePicker.cpp --- a/widget/gtk/nsFilePicker.cpp +++ b/widget/gtk/nsFilePicker.cpp @@ -616,7 +616,7 @@ if (mUseNativeFileChooser && sGtkNativeDialogShowPtr != nullptr) { const char* portalEnvString = g_getenv("GTK_USE_PORTAL"); bool setPortalEnv = - (portalEnvString && atoi(portalEnvString) == 0) || !portalEnvString; + (portalEnvString && *portalEnvString == '0') || !portalEnvString; if (setPortalEnv) { setenv("GTK_USE_PORTAL", "1", true); } diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp --- a/widget/gtk/nsWindow.cpp +++ b/widget/gtk/nsWindow.cpp @@ -8835,7 +8835,7 @@ // decorations does not work with CSD. // We check GTK_CSD as well as gtk_window_should_use_csd() does. const char* csdOverride = getenv("GTK_CSD"); - if (csdOverride && atoi(csdOverride)) { + if (csdOverride && *csdOverride == '1') { sGtkWindowDecoration = GTK_DECORATION_CLIENT; return sGtkWindowDecoration; } ++++++ thunderbird-91.2.0.source.tar.xz -> thunderbird-91.2.1.source.tar.xz ++++++ /work/SRC/openSUSE:Factory/MozillaThunderbird/thunderbird-91.2.0.source.tar.xz /work/SRC/openSUSE:Factory/.MozillaThunderbird.new.1890/thunderbird-91.2.1.source.tar.xz differ: char 15, line 1