import CS git thunderbird-140.8.0-1.el9_7
This commit is contained in:
parent
dcce4e9f95
commit
8809a2477b
4
.gitignore
vendored
4
.gitignore
vendored
@ -2,5 +2,5 @@ SOURCES/cbindgen-vendor.tar.xz
|
||||
SOURCES/nspr-4.36.0-2.el8_2.src.rpm
|
||||
SOURCES/nss-3.112.0-1.el9_4.src.rpm
|
||||
SOURCES/nss-3.112.0-4.el8_2.src.rpm
|
||||
SOURCES/thunderbird-140.7.0esr.processed-source.tar.xz
|
||||
SOURCES/thunderbird-langpacks-140.7.0esr-20260112.tar.xz
|
||||
SOURCES/thunderbird-140.8.0esr.processed-source.tar.xz
|
||||
SOURCES/thunderbird-langpacks-140.8.0esr-20260223.tar.xz
|
||||
|
||||
@ -2,5 +2,5 @@ bc4adac8f38f5103d8f88564a1545063dd8d6402 SOURCES/cbindgen-vendor.tar.xz
|
||||
0d0ddbd2a73340b3cbc977997f57222946b1e775 SOURCES/nspr-4.36.0-2.el8_2.src.rpm
|
||||
fd3879b176634d66f8ef64d18fdaeec98e140c23 SOURCES/nss-3.112.0-1.el9_4.src.rpm
|
||||
c3f0aaef37972107442e2796efad71be3a98ce3c SOURCES/nss-3.112.0-4.el8_2.src.rpm
|
||||
a4c777243a785021342bb4cff1cfba440a7b94b0 SOURCES/thunderbird-140.7.0esr.processed-source.tar.xz
|
||||
1f374d2cd806d8556e34d0949ec90108999dc415 SOURCES/thunderbird-langpacks-140.7.0esr-20260112.tar.xz
|
||||
81abdcc2a93d5039346e5807dc54593add83e059 SOURCES/thunderbird-140.8.0esr.processed-source.tar.xz
|
||||
229578a15111e8eb73d8f6d13c4a50a6c22a9330 SOURCES/thunderbird-langpacks-140.8.0esr-20260223.tar.xz
|
||||
|
||||
48
SOURCES/build-min-lexical.patch
Normal file
48
SOURCES/build-min-lexical.patch
Normal file
File diff suppressed because one or more lines are too long
@ -31,7 +31,7 @@ rm -vrf ./process-tarball-dir/*/modules/zlib
|
||||
processed_tarball=${1/source/processed-source}
|
||||
|
||||
cd ./process-tarball-dir
|
||||
tar -cf - ./* | xz -9 -T 0 -f > $processed_tarball
|
||||
tar -cf - ./* | xz -9 -T 8 -f > $processed_tarball
|
||||
mv $processed_tarball ..
|
||||
cd ..
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -27,6 +27,7 @@ ac_add_options --without-wasm-sandboxed-libraries
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --with-system-zlib
|
||||
ac_add_options --with-system-bz2
|
||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||
|
||||
export BUILD_OFFICIAL=1
|
||||
|
||||
@ -137,7 +137,7 @@ end}
|
||||
|
||||
Summary: Mozilla Thunderbird mail/newsgroup client
|
||||
Name: thunderbird
|
||||
Version: 140.7.0
|
||||
Version: 140.8.0
|
||||
Release: 1%{?dist}
|
||||
URL: http://www.mozilla.org/projects/thunderbird/
|
||||
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
||||
@ -165,7 +165,7 @@ ExcludeArch: %{ix86}
|
||||
#Source0: https://archive.mozilla.org/pub/thunderbird/releases/%%{version}%%{?pre_version}/source/thunderbird-%%{version}%%{?pre_version}.processed-source.tar.xz
|
||||
Source0: thunderbird-%{version}%{?pre_version}%{?buildnum}.processed-source.tar.xz
|
||||
%if %{with langpacks}
|
||||
Source1: thunderbird-langpacks-%{version}%{?pre_version}-20260112.tar.xz
|
||||
Source1: thunderbird-langpacks-%{version}%{?pre_version}-20260223.tar.xz
|
||||
%endif
|
||||
Source2: cbindgen-vendor.tar.xz
|
||||
Source3: process-official-tarball
|
||||
@ -201,6 +201,7 @@ Patch15: build-system-nss.patch
|
||||
Patch16: build-tb-system-nss.patch
|
||||
Patch17: build-workaround-s390x.patch
|
||||
Patch18: build-annobin-fix.patch
|
||||
Patch19: build-min-lexical.patch
|
||||
|
||||
# -- Upstreamed patches --
|
||||
Patch51: mozilla-bmo1170092.patch
|
||||
@ -459,7 +460,8 @@ Provides: bundled(wllama)
|
||||
Provides: bundled(woff2)
|
||||
Provides: bundled(xsimd)
|
||||
Provides: bundled(xz-embedded)
|
||||
Provides: bundled(zlib)
|
||||
#Not used when with-system-zlib
|
||||
#Provides: bundled(zlib)
|
||||
Provides: bundled(zstd)
|
||||
Provides: bundled(Zycore)
|
||||
Provides: bundled(Zydis)
|
||||
@ -476,7 +478,10 @@ Provides: bundled(libotr)
|
||||
Provides: bundled(qrcode)
|
||||
Provides: bundled(rnp)
|
||||
Provides: bundled(sax-js)
|
||||
Provides: bundled(zlib)
|
||||
#Not used when with-system-zlib
|
||||
#Provides: bundled(zlib)
|
||||
#Not used when with-system-bz2
|
||||
#Provides: bundled(bzip2)
|
||||
|
||||
%if 0%{?bundle_nss}
|
||||
Provides: bundled(nss) = %{nss_version}
|
||||
@ -1098,6 +1103,7 @@ echo "--------------------------------------------"
|
||||
%patch -P15 -p1 -b .build-system-nss
|
||||
%patch -P16 -p1 -b .tb-build-system-nss
|
||||
%patch -P18 -p1 -b .annobin-fix
|
||||
%patch -P19 -p1 -b .min-lexical
|
||||
|
||||
# -- Upstreamed patches --
|
||||
%patch -P51 -p1 -b .mozilla-bmo1170092
|
||||
@ -1711,6 +1717,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
#===============================================================================
|
||||
|
||||
%changelog
|
||||
* Mon Feb 23 2026 Jan Horak <jhorak@redhat.com> - 140.8.0-1
|
||||
- Update to 140.8.0 ESR
|
||||
|
||||
* Mon Jan 12 2026 Jan Horak <jhorak@redhat.com> - 140.7.0-1
|
||||
- Update to 140.7.0 ESR
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user