Accepting request 1199551 from mozilla:Factory
- Mozilla Thunderbird 115.15.0 MFSA 2024-44 (bsc#1229821) * CVE-2024-8381 (bmo#1912715) Type confusion when looking up a property name in a "with" block * CVE-2024-8382 (bmo#1906744) Internal event interfaces were exposed to web content when browser EventHandler listener callbacks ran * CVE-2024-8384 (bmo#1911288) Garbage collection could mis-color cross-compartment objects in OOM conditions - Use gcc13 on Tumbleweed and where it is available. - Don't use gcc14 as sources don't compile. OBS-URL: https://build.opensuse.org/request/show/1199551 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/MozillaThunderbird?expand=0&rev=341
This commit is contained in:
@@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 6 08:55:26 UTC 2024 - Wolfgang Rosenauer <wr@rosenauer.org>
|
||||||
|
|
||||||
|
- Mozilla Thunderbird 115.15.0
|
||||||
|
MFSA 2024-44 (bsc#1229821)
|
||||||
|
* CVE-2024-8381 (bmo#1912715)
|
||||||
|
Type confusion when looking up a property name in a "with"
|
||||||
|
block
|
||||||
|
* CVE-2024-8382 (bmo#1906744)
|
||||||
|
Internal event interfaces were exposed to web content when
|
||||||
|
browser EventHandler listener callbacks ran
|
||||||
|
* CVE-2024-8384 (bmo#1911288)
|
||||||
|
Garbage collection could mis-color cross-compartment objects
|
||||||
|
in OOM conditions
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 29 06:26:14 UTC 2024 - Manfred Hollstein <manfred.h@gmx.net>
|
||||||
|
|
||||||
|
- Use gcc13 on Tumbleweed and where it is available.
|
||||||
|
- Don't use gcc14 as sources don't compile.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 2 07:08:03 UTC 2024 - Wolfgang Rosenauer <wr@rosenauer.org>
|
Fri Aug 2 07:08:03 UTC 2024 - Wolfgang Rosenauer <wr@rosenauer.org>
|
||||||
|
|
||||||
|
@@ -29,8 +29,8 @@
|
|||||||
# major 69
|
# major 69
|
||||||
# mainver %%major.99
|
# mainver %%major.99
|
||||||
%define major 115
|
%define major 115
|
||||||
%define mainver %major.14.0
|
%define mainver %major.15.0
|
||||||
%define orig_version 115.14.0
|
%define orig_version 115.15.0
|
||||||
%define orig_suffix %nil
|
%define orig_suffix %nil
|
||||||
%define update_channel release
|
%define update_channel release
|
||||||
%define source_prefix thunderbird-%{orig_version}
|
%define source_prefix thunderbird-%{orig_version}
|
||||||
@@ -90,12 +90,17 @@ BuildRequires: autoconf213
|
|||||||
BuildRequires: dbus-1-glib-devel
|
BuildRequires: dbus-1-glib-devel
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: memory-constraints
|
BuildRequires: memory-constraints
|
||||||
|
%if 0%{?suse_version} >= 1699
|
||||||
|
BuildRequires: gcc13
|
||||||
|
BuildRequires: gcc13-c++
|
||||||
|
%else
|
||||||
%if 0%{?suse_version} < 1550 && 0%{?sle_version} <= 150600
|
%if 0%{?suse_version} < 1550 && 0%{?sle_version} <= 150600
|
||||||
BuildRequires: gcc12
|
BuildRequires: gcc13
|
||||||
BuildRequires: gcc12-c++
|
BuildRequires: gcc13-c++
|
||||||
%else
|
%else
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
BuildRequires: cargo1.72
|
BuildRequires: cargo1.72
|
||||||
BuildRequires: rust1.72
|
BuildRequires: rust1.72
|
||||||
%if 0%{useccache} != 0
|
%if 0%{useccache} != 0
|
||||||
@@ -327,9 +332,13 @@ export BUILD_OFFICIAL=1
|
|||||||
export MOZ_TELEMETRY_REPORTING=1
|
export MOZ_TELEMETRY_REPORTING=1
|
||||||
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system
|
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system
|
||||||
export CFLAGS="%{optflags}"
|
export CFLAGS="%{optflags}"
|
||||||
|
%if 0%{?suse_version} >= 1699
|
||||||
|
export CC=gcc-13
|
||||||
|
export CXX=g++-13
|
||||||
|
%else
|
||||||
%if 0%{?suse_version} < 1550 && 0%{?sle_version} <= 150600
|
%if 0%{?suse_version} < 1550 && 0%{?sle_version} <= 150600
|
||||||
export CC=gcc-12
|
export CC=gcc-13
|
||||||
export CXX=g++-12
|
export CXX=g++-13
|
||||||
%else
|
%else
|
||||||
%if 0%{?clang_build} == 0
|
%if 0%{?clang_build} == 0
|
||||||
export CC=gcc
|
export CC=gcc
|
||||||
@@ -339,6 +348,7 @@ export CFLAGS="\$CFLAGS -fimplicit-constexpr"
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
%ifarch %arm %ix86
|
%ifarch %arm %ix86
|
||||||
# Limit RAM usage during link
|
# Limit RAM usage during link
|
||||||
export LDFLAGS="\$LDFLAGS -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
export LDFLAGS="\$LDFLAGS -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:172a381e8712eb00dbed57b0f7f4e9ff23891854f4716af1c478f47c8f361c42
|
|
||||||
size 30003396
|
|
3
l10n-115.15.0.tar.xz
Normal file
3
l10n-115.15.0.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:14f891ecacb5296f675dad6075e512089902824b28928c20ea3a2998797db58b
|
||||||
|
size 30459468
|
@@ -1,10 +1,10 @@
|
|||||||
PRODUCT="thunderbird"
|
PRODUCT="thunderbird"
|
||||||
CHANNEL="esr115"
|
CHANNEL="esr115"
|
||||||
VERSION="115.14.0"
|
VERSION="115.15.0"
|
||||||
VERSION_SUFFIX=""
|
VERSION_SUFFIX=""
|
||||||
PREV_VERSION="115.13.0"
|
PREV_VERSION="115.14.0"
|
||||||
PREV_VERSION_SUFFIX=""
|
PREV_VERSION_SUFFIX=""
|
||||||
#SKIP_LOCALES="" # Uncomment to skip l10n and compare-locales-generation
|
#SKIP_LOCALES="" # Uncomment to skip l10n and compare-locales-generation
|
||||||
RELEASE_REPO="https://hg.mozilla.org/releases/comm-esr115"
|
RELEASE_REPO="https://hg.mozilla.org/releases/comm-esr115"
|
||||||
RELEASE_TAG="99f915f469c83ab9f535e41cce590e44f6ccfa46"
|
RELEASE_TAG="aa5ac5425f0381ec6c3e3d9122b5b9d14cc7e60d"
|
||||||
RELEASE_TIMESTAMP="20240801155430"
|
RELEASE_TIMESTAMP="20240903191356"
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:037fc3f03f5ee4f23d4947ad285504d280e926c4e1a6b224d7351f668c6ed7f0
|
|
||||||
size 533296972
|
|
@@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEErdcHlHlwDcrf3VM34207E/PZMnQFAmar6QAACgkQ4207E/PZ
|
|
||||||
MnQKUQ//auM1mf53PcOxpyX3VNGH6VcquXbFfzdmxStOyijdaVV1q47W6BQjY4uL
|
|
||||||
3+ITqfw63C0rmrlNBS20w0YdRLiQdaRPrLI4Gj6GOLA8oeeYr5yEiXPuDuWvIpL2
|
|
||||||
71UjOiPABanEiXCmnmB4A6zXzeCGLo5lrCfsjJ1Q64uvqL/B6C0T83N2caxzJeRB
|
|
||||||
FIjTHs/HP5jEDNgkPZlRYC6EQzwsu35P8fhx/XjzkZefVsRt9g6EgNjK/fF4Auty
|
|
||||||
LeyjbL4rz20izyh0tJ8f41cZWTHChydp6W9XA7+z7tVlTC92AmhyhKbiJJaC55Gj
|
|
||||||
LptssG21AKyvuAT7q9S1BeZ9oNX5wBfwUGp5YcJGPVssQ0ZGRdpVyLyehsqK5HZM
|
|
||||||
XmkzAoyyqBKRe+0MyiWgGj36STf68wh2ZdRt2yvmymZiWBgtOgSCa3qlXYzFwVWT
|
|
||||||
5GxXbLACO6JKmXg+1PWOLPVvpLMjj2uHOPMWfb8IrgEndA81+D2qQUYh/2VncoRF
|
|
||||||
RdML2m6Yf403xSw+6Ckauhhsx739CnjoISJRTtu9qvYm9wDY9RRZwg6zQsKpww+9
|
|
||||||
0RQntiWLT48uG5/D2OB/jpngsb6QPhpzyLa2qiY1+ctcAcGqPN6MdDrfFIQbpPbO
|
|
||||||
cTWi3ljxL+nbfHVJdHY77IkXF3qwBTQVT4yzS5qWgqPf5kC7c0g=
|
|
||||||
=YzDJ
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
thunderbird-115.15.0.source.tar.xz
Normal file
3
thunderbird-115.15.0.source.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:eb04e62171586570e83ce538d4e2feca51c24b2def84fb5c1d0baa9269d41cc7
|
||||||
|
size 534455612
|
16
thunderbird-115.15.0.source.tar.xz.asc
Normal file
16
thunderbird-115.15.0.source.tar.xz.asc
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEErdcHlHlwDcrf3VM34207E/PZMnQFAmbXrwUACgkQ4207E/PZ
|
||||||
|
MnSSXBAAjscNC/NThi+i8p+exea5QWpM96FZkF5eRJ/jS9dWLm2UH9xZDPyDCJvy
|
||||||
|
PXArlpWlIWWG21Pws7fy4g3RZcceim94QWhgMd75DJCKmZ9dgKJLtZla3Qs226b9
|
||||||
|
G1DwXfonJUEh/cd1fQQ3ewRUwdnzgjyRMvJeDDdzClKqApuEF9hr7h7aJNObzU1R
|
||||||
|
2n2gEpQrKIpWT5ijTlcr4tBTGqs3JkmXhzsH68XpzqXspWcpSJzSiEntH2iBvC8Z
|
||||||
|
dfedsgGBA03gbyuFd+haD3/vxsARHAmme/o5xbrUcUIrZTkRVpI6mnFY0CzFx30K
|
||||||
|
IilGvGy1mW7oxyakNAQvPpSTCcy8FPXdbi1oGRN1nS8kgpJhiW0pb7m7oh5ul1xi
|
||||||
|
Hw1nT3ZJfikr/U2t8nTsXwgiuEnG6hqEh5Us6QR/f8rEEWd9TrbfLWXW4NfWImHZ
|
||||||
|
OafCrzLzAUK4nSzN6AI+ZQqUBq0mru6z67I1CX6t2KCo7GdZwDhsWm8CrN/I0JlF
|
||||||
|
5RuimLUpCs6Q25ZuPFaLojQHzImgXO48Y/lUHtaDYSdHHBhF7GYhLj3zA3ljuDIv
|
||||||
|
rxmJpSaMBgn4zk4igQn7y3ScY5Ht0yHHdd3bkewcD02AuOWqYyFKuYmm3kTU+GjZ
|
||||||
|
nY9j30eL+zXgVDWuD4vlTFvgieag9P6+HK/K8uzflJ8FiHzXy6U=
|
||||||
|
=VPte
|
||||||
|
-----END PGP SIGNATURE-----
|
Reference in New Issue
Block a user