Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package seamonkey for openSUSE:Factory checked in at 2023-08-05 12:55:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/seamonkey (Old) and /work/SRC/openSUSE:Factory/.seamonkey.new.22712 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "seamonkey" Sat Aug 5 12:55:10 2023 rev:23 rq:1102406 version:2.53.17 Changes: -------- --- /work/SRC/openSUSE:Factory/seamonkey/seamonkey.changes 2023-03-31 21:16:39.118704869 +0200 +++ /work/SRC/openSUSE:Factory/.seamonkey.new.22712/seamonkey.changes 2023-08-05 12:55:27.000787500 +0200 @@ -1,0 +2,29 @@ +Fri Aug 04 13:04:12 UTC 2023 - Tristan Miller <[email protected]> + +- update to SeaMonkey 2.53.17 + * Fix macOS Contacts permission request bug 1826719. + * Remove SeaMonkey 2.57 links from debugQA bug 1829683. + * Treat opening urls from the library as external bug 1619108. + * Disable spam warning for autogenerated links in plaintext messages + bug 619031. + * Switch SeaMonkey build files to Python 3 bug 1635849. + * Remove empty overlays from Composer bug 1828533. + * Move xpfe autocomplete to comm-central suite bug 1418512. + * Remove nsIPrefBranch2 and nsIPrefBranchInternal bug 1374847. + * SeaMonkey 2.53.17 uses the same backend as Firefox and contains + the relevant Firefox 60.8 security fixes. + * SeaMonkey 2.53.17 shares most parts of the mail and news code with + Thunderbird. Please read the Thunderbird 60.8.0 release notes for + specific security fixes in this release. + * Additional important security fixes up to Current Firefox 102.11 + and Thunderbird 102.11 ESR plus many enhancements have been + backported. We will continue to enhance SeaMonkey security in + subsequent 2.53.x beta and release versions as fast as we are able + to. + * Adapt mozilla-nongnome-proxies.patch for SeaMonkey 2.53.17 + * Adapt seamonkey-lto.patch for SeaMonkey 2.53.17 + * Remove obsolete %clean section from seamonkey.spec +- request inclusion in Leap 15.4 and 15.5: + https://bugzilla.opensuse.org/show_bug.cgi?id=1213986 + +------------------------------------------------------------------- Old: ---- seamonkey-2.53.16.source-l10n.tar.xz seamonkey-2.53.16.source.tar.xz New: ---- seamonkey-2.53.17.source-l10n.tar.xz seamonkey-2.53.17.source.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ seamonkey.spec ++++++ --- /var/tmp/diff_new_pack.omySCP/_old 2023-08-05 12:55:31.588816848 +0200 +++ /var/tmp/diff_new_pack.omySCP/_new 2023-08-05 12:55:31.616817027 +0200 @@ -72,9 +72,9 @@ %endif Provides: web_browser Provides: browser(npapi) -Version: 2.53.16 +Version: 2.53.17 Release: 0 -%define releasedate 20230331000000 +%define releasedate 20230804000000 Summary: An integrated web browser, composer, mail/news client, and IRC client License: MPL-2.0 Group: Productivity/Networking/Web/Browsers @@ -219,7 +219,7 @@ cp %{SOURCE12} GNUmakefile -%patch1 -p2 +%patch1 -p1 %patch3 -p2 %patch4 -p1 %patch5 -p0 @@ -416,10 +416,6 @@ mkdir -p %{buildroot}%{_datadir}/appdata install -m0644 -t %{buildroot}%{_datadir}/appdata/ $RPM_BUILD_DIR/*.appdata.xml -%clean -rm -rf $RPM_BUILD_ROOT -rm -rf %{_tmppath}/translations.* - %files -f seamonkey.lang %defattr(-,root,root) %{_bindir}/%{progname} ++++++ mozilla-nongnome-proxies.patch ++++++ --- /var/tmp/diff_new_pack.omySCP/_old 2023-08-05 12:55:31.644817206 +0200 +++ /var/tmp/diff_new_pack.omySCP/_new 2023-08-05 12:55:31.648817231 +0200 @@ -1,10 +1,10 @@ -From: Wolfgang Rosenauer +From: Wolfgang Rosenauer, Tristan Miller Subject: Do not use gconf for proxy settings if not running within Gnome -diff -ruN seamonkey/mozilla/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp seamonkey.new/mozilla/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp ---- seamonkey/mozilla/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp 2020-02-18 00:39:44.000000000 +0100 -+++ seamonkey.new/mozilla/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp 2020-03-02 12:41:27.735383057 +0100 -@@ -59,13 +59,17 @@ +diff -ruN seamonkey-2.53.17b1.orig/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp seamonkey-2.53.17b1/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp +--- seamonkey-2.53.17b1.orig/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp 2023-06-10 12:41:26.000000000 +0200 ++++ seamonkey-2.53.17b1/toolkit/system/unixproxy/nsUnixSystemProxySettings.cpp 2023-07-12 09:41:08.047344985 +0200 +@@ -55,10 +55,14 @@ nsresult nsUnixSystemProxySettings::Init() { @@ -12,9 +12,6 @@ - if (mGSettings) { - mGSettings->GetCollectionForSchema(NS_LITERAL_CSTRING("org.gnome.system.proxy"), - getter_AddRefs(mProxySettings)); -- } -- if (!mProxySettings) { -- mGConf = do_GetService(NS_GCONFSERVICE_CONTRACTID); + // only use GSettings if that is a GNOME session + const char* sessionType = PR_GetEnv("DESKTOP_SESSION"); + if (sessionType && !strcmp(sessionType, "gnome")) { @@ -23,9 +20,6 @@ + mGSettings->GetCollectionForSchema(NS_LITERAL_CSTRING("org.gnome.system.proxy"), + getter_AddRefs(mProxySettings)); + } -+ if (!mProxySettings) { -+ mGConf = do_GetService(NS_GCONFSERVICE_CONTRACTID); -+ } } return NS_OK; ++++++ seamonkey-2.53.16.source-l10n.tar.xz -> seamonkey-2.53.17.source-l10n.tar.xz ++++++ /work/SRC/openSUSE:Factory/seamonkey/seamonkey-2.53.16.source-l10n.tar.xz /work/SRC/openSUSE:Factory/.seamonkey.new.22712/seamonkey-2.53.17.source-l10n.tar.xz differ: char 122917, line 489 ++++++ seamonkey-2.53.16.source.tar.xz -> seamonkey-2.53.17.source.tar.xz ++++++ /work/SRC/openSUSE:Factory/seamonkey/seamonkey-2.53.16.source.tar.xz /work/SRC/openSUSE:Factory/.seamonkey.new.22712/seamonkey-2.53.17.source.tar.xz differ: char 27, line 1 ++++++ seamonkey-lto.patch ++++++ --- /var/tmp/diff_new_pack.omySCP/_old 2023-08-05 12:55:31.820818332 +0200 +++ /var/tmp/diff_new_pack.omySCP/_new 2023-08-05 12:55:31.852818536 +0200 @@ -1,12 +1,13 @@ ---- seamonkey-2.53.9/security/sandbox/linux/moz.build 2021-08-08 15:02:00.000000000 +0200 -+++ seamonkey-2.53.9.new/security/sandbox/linux/moz.build 2021-08-26 14:43:43.392464338 +0200 -@@ -99,7 +99,7 @@ +diff -ruN seamonkey-2.53.17b1.orig/security/sandbox/linux/moz.build seamonkey-2.53.17b1/security/sandbox/linux/moz.build +--- seamonkey-2.53.17b1.orig/security/sandbox/linux/moz.build 2023-06-10 12:41:21.000000000 +0200 ++++ seamonkey-2.53.17b1/security/sandbox/linux/moz.build 2023-07-12 09:48:50.099448143 +0200 +@@ -101,7 +101,7 @@ # forcing there to be only one partition. for f in CONFIG['OS_CXXFLAGS']: if f.startswith('-flto') and CONFIG['CC_TYPE'] != 'clang': - LDFLAGS += ['--param lto-partitions=1'] + LDFLAGS += ['--param=lto-partitions=1'] - # -if CONFIG['MOZ_ALSA']: - # - DEFINES['MOZ_ALSA'] = True + DEFINES['NS_NO_XPCOM'] = True + DisableStlWrapping()
