|
|
ea29f4 |
# Set for local builds only
|
|
|
83ba88 |
%global disable_toolsets 0
|
|
|
83ba88 |
|
|
|
763d03 |
# Produce debug (non-optimized) package build. Suitable for debugging only
|
|
|
763d03 |
# as the build is *very* slow.
|
|
|
763d03 |
%global debug_build 0
|
|
|
763d03 |
|
|
|
763d03 |
%if 0%{?rhel} > 9
|
|
|
26f3ef |
%global dictionarydir hunspell
|
|
|
26f3ef |
%else
|
|
|
26f3ef |
%global dictionarydir myspell
|
|
|
83ba88 |
%endif
|
|
|
83ba88 |
|
|
|
946e85 |
%{lua:
|
|
|
763d03 |
function dist_to_rhel_minor(str, start)
|
|
|
946e85 |
match = string.match(str, ".module%+el8.%d+")
|
|
|
946e85 |
if match then
|
|
|
946e85 |
return string.sub(match, 13)
|
|
|
946e85 |
end
|
|
|
946e85 |
match = string.match(str, ".el8_%d+")
|
|
|
946e85 |
if match then
|
|
|
946e85 |
return string.sub(match, 6)
|
|
|
946e85 |
end
|
|
|
946e85 |
match = string.match(str, ".el8")
|
|
|
946e85 |
if match then
|
|
|
22011a |
return 10
|
|
|
946e85 |
end
|
|
|
91ba48 |
match = string.match(str, ".module%+el9.%d+")
|
|
|
91ba48 |
if match then
|
|
|
91ba48 |
return string.sub(match, 13)
|
|
|
91ba48 |
end
|
|
|
91ba48 |
match = string.match(str, ".el9_%d+")
|
|
|
91ba48 |
if match then
|
|
|
91ba48 |
return string.sub(match, 6)
|
|
|
91ba48 |
end
|
|
|
91ba48 |
match = string.match(str, ".el9")
|
|
|
91ba48 |
if match then
|
|
|
09032f |
return 5
|
|
|
91ba48 |
end
|
|
|
91ba48 |
return -1
|
|
|
91ba48 |
end}
|
|
|
91ba48 |
|
|
|
763d03 |
%global rhel_minor_version %{lua:print(dist_to_rhel_minor(rpm.expand("%dist")))}
|
|
|
83ba88 |
|
|
|
763d03 |
# System libraries options
|
|
|
83ba88 |
%global system_nss 1
|
|
|
83ba88 |
%global bundle_nss 0
|
|
|
b0b627 |
|
|
|
83ba88 |
%if 0%{?rhel} == 8
|
|
|
763d03 |
%if %{rhel_minor_version} <= 6
|
|
|
2559ee |
%global bundle_nss 1
|
|
|
2559ee |
%global system_nss 1
|
|
|
763d03 |
%global _build_id_links none
|
|
|
83ba88 |
%endif
|
|
|
83ba88 |
%endif
|
|
|
763d03 |
%if 0%{?rhel} == 9
|
|
|
763d03 |
%if %{rhel_minor_version} <= 0
|
|
|
763d03 |
%global bundle_nss 1
|
|
|
763d03 |
%global system_nss 1
|
|
|
763d03 |
%global _build_id_links none
|
|
|
763d03 |
%endif
|
|
|
ea29f4 |
%endif
|
|
|
ae11a9 |
|
|
|
763d03 |
%global dts_version 10
|
|
|
2559ee |
%global llvm_version 7.0
|
|
|
763d03 |
%global nspr_version 4.35
|
|
|
763d03 |
%global nspr_version_max 4.36
|
|
|
763d03 |
%global nss_version 3.90
|
|
|
763d03 |
%global nss_version_max 3.91
|
|
|
763d03 |
%global rust_version 1.66
|
|
|
763d03 |
%global system_libvpx 0
|
|
|
2559ee |
|
|
|
763d03 |
# Toolsets setup
|
|
|
763d03 |
%global use_dts 0
|
|
|
763d03 |
%global use_gcc_ts 0
|
|
|
763d03 |
%global use_llvm_ts 0
|
|
|
763d03 |
%global use_nodejs_scl 0
|
|
|
763d03 |
%global use_rust_ts 1
|
|
|
763d03 |
%global use_python3_scl 0
|
|
|
a8a561 |
|
|
|
763d03 |
%global nodejs_build_req nodejs
|
|
|
26f3ef |
|
|
|
26f3ef |
%if 0%{?rhel} >= 8
|
|
|
763d03 |
%global use_rust_ts 0
|
|
|
0fe52e |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
%if 0%{?rhel} == 8 && %{rhel_minor_version} < 6
|
|
|
763d03 |
%ifarch aarch64
|
|
|
763d03 |
%global use_gcc_ts 1
|
|
|
763d03 |
%endif
|
|
|
763d03 |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
%if 0%{?rhel} == 7
|
|
|
763d03 |
%global use_dts 1
|
|
|
763d03 |
%global use_llvm_ts 1
|
|
|
763d03 |
%global use_nodejs_scl 1
|
|
|
763d03 |
%global nodejs_build_req rh-nodejs10-nodejs
|
|
|
763d03 |
%global llvm_version 11.0
|
|
|
763d03 |
%global use_python3_scl 1
|
|
|
26f3ef |
%endif
|
|
|
2559ee |
|
|
|
ea29f4 |
%if 0%{?disable_toolsets}
|
|
|
ea29f4 |
%global use_dts 0
|
|
|
763d03 |
%global use_llvm_ts 0
|
|
|
763d03 |
%global use_nodejs_scl 0
|
|
|
763d03 |
%global use_rust_ts 0
|
|
|
763d03 |
%global use_python3_scl 0
|
|
|
ea29f4 |
%endif
|
|
|
ea29f4 |
|
|
|
763d03 |
# librnp with openssl support, not available in RHEL7 because it requires openssl >= 1.1.1e,
|
|
|
763d03 |
# nor in rhel-8.1.0 or rhel-8.2.0
|
|
|
763d03 |
%global use_openssl_for_librnp 1
|
|
|
763d03 |
%if 0%{?rhel} == 7 || (0%{?rhel} == 8 && %{rhel_minor_version} < 4)
|
|
|
763d03 |
%global use_openssl_for_librnp 0
|
|
|
5b75f5 |
%endif
|
|
|
a8a561 |
|
|
|
e75128 |
|
|
|
26f3ef |
%define thunderbird_app_id \{3550f703-e582-4d05-9a08-453d09bdfdc6\}
|
|
|
26f3ef |
%define mozappdir %{_libdir}/thunderbird
|
|
|
763d03 |
%global langpackdir %{mozappdir}/extensions
|
|
|
2559ee |
%define bundled_install_path %{mozappdir}/bundled
|
|
|
763d03 |
##global pre_version b2
|
|
|
763d03 |
# Workaround the dreaded "upstream source file changed content" rpminspect failure.
|
|
|
763d03 |
# If set to .b2 or .b3 ... the processed source file needs to be renamed before upload, e.g.
|
|
|
763d03 |
# thunderbird-102.8.0.b2.processed-source.tar.xz
|
|
|
763d03 |
# When unset use processed source file name as is.
|
|
|
09032f |
##global buildnum .b2
|
|
|
763d03 |
|
|
|
763d03 |
%bcond_without langpacks
|
|
|
ae11a9 |
|
|
|
26f3ef |
# Exclude private libraries from autogenerated provides and requires
|
|
|
26f3ef |
%global __provides_exclude_from ^%{mozappdir}
|
|
|
26f3ef |
%global __requires_exclude ^(%%(find %{buildroot}%{mozappdir} -name '*.so' | xargs -n1 basename | sort -u | paste -s -d '|' -))
|
|
|
093384 |
|
|
|
e75128 |
Summary: Mozilla Thunderbird mail/newsgroup client
|
|
|
e75128 |
Name: thunderbird
|
|
|
3bd749 |
Version: 115.12.1
|
|
|
09032f |
Release: 1%{?dist}
|
|
|
e75128 |
URL: http://www.mozilla.org/projects/thunderbird/
|
|
|
e75128 |
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
|
|
a8a561 |
|
|
|
2559ee |
%if 0%{?rhel} == 9
|
|
|
2559ee |
ExcludeArch: %{ix86}
|
|
|
2559ee |
%endif
|
|
|
2559ee |
%if 0%{?rhel} == 8
|
|
|
cb713e |
# Started to ship on aarch64 in RHEL 8.2, on s390x in RHEL 8.3
|
|
|
763d03 |
%if %{rhel_minor_version} == 1
|
|
|
cb713e |
ExcludeArch: %{ix86} s390x aarch64
|
|
|
805725 |
%else
|
|
|
cb713e |
%if %{rhel_minor_version} == 2
|
|
|
cb713e |
ExcludeArch: %{ix86} s390x
|
|
|
cb713e |
%else
|
|
|
2559ee |
ExcludeArch: %{ix86}
|
|
|
cb713e |
%endif
|
|
|
805725 |
%endif
|
|
|
2559ee |
%endif
|
|
|
ae11a9 |
%if 0%{?rhel} == 7
|
|
|
3bd749 |
ExcludeArch: aarch64 s390 ppc ppc64
|
|
|
ae11a9 |
%endif
|
|
|
a8a561 |
|
|
|
763d03 |
# We can't use the official tarball as it contains some test files that use
|
|
|
763d03 |
# licenses that are rejected by Red Hat Legal.
|
|
|
763d03 |
# The official tarball has to be always processed by the process-official-tarball
|
|
|
763d03 |
# script
|
|
|
763d03 |
#Source0: https://archive.mozilla.org/pub/thunderbird/releases/%%{version}%%{?pre_version}/source/thunderbird-%%{version}%%{?pre_version}.processed-source.tar.xz
|
|
|
5ba6ec |
Source0: thunderbird-%{version}%{?pre_version}%{?buildnum}.processed-source.tar.xz
|
|
|
763d03 |
%if %{with langpacks}
|
|
|
3bd749 |
Source1: thunderbird-langpacks-%{version}-20240618.tar.xz
|
|
|
eae897 |
%endif
|
|
|
2559ee |
Source2: cbindgen-vendor.tar.xz
|
|
|
26f3ef |
Source3: process-official-tarball
|
|
|
e75128 |
Source10: thunderbird-mozconfig
|
|
|
763d03 |
Source12: thunderbird-redhat-default-prefs.js
|
|
|
e75128 |
Source20: thunderbird.desktop
|
|
|
e75128 |
Source21: thunderbird.sh.in
|
|
|
ae11a9 |
Source24: mozilla-api-key
|
|
|
26f3ef |
Source25: thunderbird-symbolic.svg
|
|
|
ae11a9 |
Source27: google-api-key
|
|
|
26f3ef |
Source32: node-stdout-nonblocking-wrapper
|
|
|
26f3ef |
Source35: google-loc-api-key
|
|
|
83ba88 |
Source401: nss-setup-flags-env.inc
|
|
|
763d03 |
Source402: nspr-4.35.0-1.el8_1.src.rpm
|
|
|
763d03 |
Source403: nss-3.90.0-2.el8_1.src.rpm
|
|
|
763d03 |
Source404: nss-3.90.0-3.el9_0.src.rpm
|
|
|
763d03 |
|
|
|
763d03 |
# ---- RHEL specific patches ---
|
|
|
763d03 |
# -- Downstream only --
|
|
|
763d03 |
Patch01: build-disable-elfhack.patch
|
|
|
763d03 |
Patch02: firefox-gcc-build.patch
|
|
|
763d03 |
Patch03: build-big-endian-errors.patch
|
|
|
763d03 |
Patch05: build-rhel7-lower-node-min-version.patch
|
|
|
763d03 |
Patch06: build-ppc64-abiv2.patch
|
|
|
763d03 |
Patch07: build-rhel7-nasm-dwarf.patch
|
|
|
763d03 |
Patch08: build-tb-rnp-openssl.patch
|
|
|
763d03 |
Patch09: disable-openpgp-in-thunderbird.patch
|
|
|
763d03 |
|
|
|
763d03 |
# -- Upstreamed patches --
|
|
|
763d03 |
Patch51: mozilla-bmo1170092.patch
|
|
|
763d03 |
|
|
|
763d03 |
# -- Submitted upstream, not merged --
|
|
|
763d03 |
Patch101: mozilla-bmo1670333.patch
|
|
|
763d03 |
# Big endian fix
|
|
|
763d03 |
Patch102: mozilla-bmo1504834-part1.patch
|
|
|
763d03 |
Patch103: mozilla-bmo1504834-part3.patch
|
|
|
763d03 |
# Big endian fix
|
|
|
763d03 |
Patch104: mozilla-bmo849632.patch
|
|
|
763d03 |
# Big endian fix
|
|
|
763d03 |
Patch105: mozilla-bmo998749.patch
|
|
|
763d03 |
# Big endian fix
|
|
|
763d03 |
Patch106: mozilla-bmo1716707-swizzle.patch
|
|
|
763d03 |
Patch107: mozilla-bmo1716707-svg.patch
|
|
|
763d03 |
Patch108: mozilla-bmo1789216-disable-av1.patch
|
|
|
763d03 |
|
|
|
763d03 |
# ---- Fedora specific patches ----
|
|
|
763d03 |
Patch151: firefox-enable-addons.patch
|
|
|
763d03 |
Patch152: rhbz-1173156.patch
|
|
|
763d03 |
Patch154: firefox-nss-addon-hack.patch
|
|
|
763d03 |
# ARM run-time patch
|
|
|
763d03 |
Patch155: rhbz-1354671.patch
|
|
|
763d03 |
|
|
|
c26c11 |
# ---- Security patches ----
|
|
|
c26c11 |
Patch301: CVE-2023-44488-libvpx.patch
|
|
|
c26c11 |
|
|
|
763d03 |
# BUILD REQURES/REQUIRES
|
|
|
763d03 |
%if %{?system_nss} && !0%{?bundle_nss}
|
|
|
83ba88 |
BuildRequires: pkgconfig(nspr) >= %{nspr_version}
|
|
|
763d03 |
BuildRequires: pkgconfig(nspr) < %{nspr_version_max}
|
|
|
83ba88 |
BuildRequires: pkgconfig(nss) >= %{nss_version}
|
|
|
763d03 |
BuildRequires: pkgconfig(nss) < %{nss_version_max}
|
|
|
83ba88 |
BuildRequires: nss-static >= %{nss_version}
|
|
|
763d03 |
BuildRequires: nss-static < %{nss_version_max}
|
|
|
83ba88 |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
%if %{?system_libvpx}
|
|
|
763d03 |
BuildRequires: libvpx-devel >= 1.8.2
|
|
|
83ba88 |
%endif
|
|
|
763d03 |
|
|
|
83ba88 |
BuildRequires: bzip2-devel
|
|
|
763d03 |
BuildRequires: dbus-glib-devel
|
|
|
763d03 |
BuildRequires: desktop-file-utils
|
|
|
763d03 |
BuildRequires: libappstream-glib
|
|
|
763d03 |
BuildRequires: libjpeg-devel
|
|
|
763d03 |
BuildRequires: libstdc++-devel
|
|
|
763d03 |
BuildRequires: libstdc++-static
|
|
|
763d03 |
BuildRequires: m4
|
|
|
763d03 |
BuildRequires: make
|
|
|
763d03 |
BuildRequires: nasm >= 1.13
|
|
|
763d03 |
BuildRequires: %{nodejs_build_req} >= 10.21
|
|
|
763d03 |
BuildRequires: pciutils-libs
|
|
|
763d03 |
BuildRequires: perl-interpreter
|
|
|
763d03 |
BuildRequires: pkgconfig(alsa)
|
|
|
763d03 |
BuildRequires: pkgconfig(dri)
|
|
|
763d03 |
BuildRequires: pkgconfig(freetype2)
|
|
|
26f3ef |
BuildRequires: pkgconfig(gtk+-3.0)
|
|
|
26f3ef |
BuildRequires: pkgconfig(krb5)
|
|
|
763d03 |
BuildRequires: pkgconfig(libcurl)
|
|
|
763d03 |
BuildRequires: pkgconfig(libffi)
|
|
|
763d03 |
BuildRequires: pkgconfig(libnotify)
|
|
|
763d03 |
BuildRequires: pkgconfig(libpng)
|
|
|
763d03 |
BuildRequires: pkgconfig(libpulse)
|
|
|
763d03 |
BuildRequires: pkgconfig(libstartup-notification-1.0)
|
|
|
83ba88 |
BuildRequires: pkgconfig(pango)
|
|
|
763d03 |
BuildRequires: pkgconfig(xrender)
|
|
|
83ba88 |
BuildRequires: pkgconfig(xt)
|
|
|
26f3ef |
BuildRequires: pkgconfig(xtst)
|
|
|
763d03 |
BuildRequires: pkgconfig(zlib)
|
|
|
763d03 |
BuildRequires: zip
|
|
|
ae11a9 |
|
|
|
26f3ef |
%if 0%{?rhel} == 7
|
|
|
763d03 |
%if 0%{?use_python3_scl}
|
|
|
763d03 |
BuildRequires: rh-python38-python-devel
|
|
|
763d03 |
BuildRequires: rh-python38-python-setuptools
|
|
|
ea29f4 |
BuildRequires: scl-utils
|
|
|
763d03 |
%endif
|
|
|
83ba88 |
BuildRequires: findutils
|
|
|
763d03 |
%else
|
|
|
763d03 |
BuildRequires: pipewire-devel
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
|
|
|
ae11a9 |
%if 0%{?rhel} == 8
|
|
|
432c6c |
BuildRequires: cargo
|
|
|
82b545 |
BuildRequires: clang-devel >= %{llvm_version}
|
|
|
763d03 |
BuildRequires: clang >= %{llvm_version}
|
|
|
763d03 |
BuildRequires: llvm-devel >= %{llvm_version}
|
|
|
763d03 |
BuildRequires: llvm >= %{llvm_version}
|
|
|
763d03 |
%if 0%{?disable_toolsets} == 0
|
|
|
763d03 |
BuildRequires: python38-devel
|
|
|
763d03 |
BuildRequires: python38-setuptools
|
|
|
763d03 |
%endif
|
|
|
83ba88 |
BuildRequires: rustfmt >= %{rust_version}
|
|
|
763d03 |
BuildRequires: rust >= %{rust_version}
|
|
|
26f3ef |
%endif
|
|
|
26f3ef |
|
|
|
763d03 |
%if 0%{?rhel} == 9
|
|
|
763d03 |
BuildRequires: cargo
|
|
|
22011a |
BuildRequires: clang clang-libs llvm llvm-devel
|
|
|
763d03 |
BuildRequires: gcc
|
|
|
763d03 |
BuildRequires: gcc-c++
|
|
|
763d03 |
BuildRequires: python3-devel
|
|
|
763d03 |
BuildRequires: python3-setuptools
|
|
|
763d03 |
BuildRequires: rust
|
|
|
763d03 |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
%if 0%{?use_dts}
|
|
|
763d03 |
BuildRequires: devtoolset-%{dts_version}-gcc
|
|
|
763d03 |
BuildRequires: devtoolset-%{dts_version}-gcc-c++
|
|
|
763d03 |
BuildRequires: devtoolset-%{dts_version}-libatomic-devel
|
|
|
83ba88 |
%endif
|
|
|
26f3ef |
|
|
|
763d03 |
%if 0%{?use_llvm_ts}
|
|
|
ea29f4 |
BuildRequires: llvm-toolset-%{llvm_version}
|
|
|
2559ee |
BuildRequires: llvm-toolset-%{llvm_version}-clang
|
|
|
2559ee |
BuildRequires: llvm-toolset-%{llvm_version}-clang-devel
|
|
|
763d03 |
BuildRequires: llvm-toolset-%{llvm_version}-llvm-devel
|
|
|
ea29f4 |
%endif
|
|
|
ea29f4 |
|
|
|
763d03 |
%if 0%{?use_rust_ts}
|
|
|
763d03 |
BuildRequires: rust-toolset-%{rust_version}
|
|
|
26f3ef |
%endif
|
|
|
83ba88 |
|
|
|
83ba88 |
# Bundled nss/nspr requirement
|
|
|
83ba88 |
%if 0%{?bundle_nss}
|
|
|
763d03 |
BuildRequires: gawk
|
|
|
763d03 |
BuildRequires: gcc-c++
|
|
|
83ba88 |
BuildRequires: nss-softokn
|
|
|
763d03 |
BuildRequires: perl-interpreter
|
|
|
83ba88 |
BuildRequires: pkgconfig
|
|
|
83ba88 |
BuildRequires: psmisc
|
|
|
763d03 |
BuildRequires: sqlite-devel
|
|
|
83ba88 |
BuildRequires: xmlto
|
|
|
763d03 |
BuildRequires: zlib-devel
|
|
|
83ba88 |
%endif
|
|
|
83ba88 |
|
|
|
763d03 |
%if 0%{?rhel} == 8 && %{rhel_minor_version} < 6
|
|
|
763d03 |
%ifarch aarch64
|
|
|
763d03 |
BuildRequires: gcc-toolset-12-gcc-plugin-annobin
|
|
|
763d03 |
%endif
|
|
|
a8a561 |
%endif
|
|
|
a8a561 |
|
|
|
763d03 |
%if %{?use_openssl_for_librnp}
|
|
|
763d03 |
BuildRequires: pkgconfig(openssl)
|
|
|
26f3ef |
%endif
|
|
|
83ba88 |
|
|
|
763d03 |
Requires: p11-kit-trust
|
|
|
763d03 |
Requires: pciutils-libs
|
|
|
763d03 |
|
|
|
763d03 |
%if %{?system_nss} && !0%{?bundle_nss}
|
|
|
763d03 |
Requires: nspr >= %{nspr_version}
|
|
|
763d03 |
Requires: nss >= %{nss_version}
|
|
|
26f3ef |
%endif
|
|
|
26f3ef |
|
|
|
26f3ef |
Obsoletes: mozilla <= 37:1.7.13
|
|
|
26f3ef |
Provides: webclient
|
|
|
0423e8 |
|
|
|
2559ee |
# Bundled libraries
|
|
|
763d03 |
#Provides: bundled(libjxl) it's used only on nightly builds
|
|
|
2559ee |
Provides: bundled(angle)
|
|
|
763d03 |
Provides: bundled(aom)
|
|
|
0423e8 |
Provides: bundled(audioipc-2)
|
|
|
763d03 |
Provides: bundled(bergamot-translator)
|
|
|
0423e8 |
Provides: bundled(brotli)
|
|
|
0423e8 |
Provides: bundled(bzip2)
|
|
|
2559ee |
Provides: bundled(cairo)
|
|
|
0423e8 |
Provides: bundled(cfworker)
|
|
|
763d03 |
Provides: bundled(cld2)
|
|
|
763d03 |
Provides: bundled(cubeb)
|
|
|
0423e8 |
Provides: bundled(d3.js)
|
|
|
0423e8 |
Provides: bundled(double-conversion)
|
|
|
0423e8 |
Provides: bundled(expat)
|
|
|
763d03 |
Provides: bundled(fastText)
|
|
|
763d03 |
Provides: bundled(fathom)
|
|
|
0423e8 |
Provides: bundled(fdlibm)
|
|
|
0423e8 |
Provides: bundled(ffvpx)
|
|
|
0423e8 |
Provides: bundled(freetype2)
|
|
|
763d03 |
Provides: bundled(function2)
|
|
|
763d03 |
Provides: bundled(gemmology)
|
|
|
2559ee |
Provides: bundled(graphite2)
|
|
|
2559ee |
Provides: bundled(harfbuzz)
|
|
|
0423e8 |
Provides: bundled(highway)
|
|
|
763d03 |
Provides: bundled(hunspell)
|
|
|
0423e8 |
Provides: bundled(intgemm)
|
|
|
763d03 |
Provides: bundled(irregexp)
|
|
|
763d03 |
Provides: bundled(jpeg-xl)
|
|
|
2559ee |
Provides: bundled(kissfft)
|
|
|
2559ee |
Provides: bundled(libaom)
|
|
|
2559ee |
Provides: bundled(libcubeb)
|
|
|
2559ee |
Provides: bundled(libdav1d)
|
|
|
763d03 |
Provides: bundled(libdrm)
|
|
|
763d03 |
Provides: bundled(libepoxy)
|
|
|
763d03 |
Provides: bundled(libgbm)
|
|
|
2559ee |
Provides: bundled(libjpeg)
|
|
|
0423e8 |
Provides: bundled(libmar)
|
|
|
2559ee |
Provides: bundled(libmkv)
|
|
|
2559ee |
Provides: bundled(libnestegg)
|
|
|
2559ee |
Provides: bundled(libogg)
|
|
|
2559ee |
Provides: bundled(libopus)
|
|
|
2559ee |
Provides: bundled(libpng)
|
|
|
0423e8 |
Provides: bundled(libprio)
|
|
|
2559ee |
Provides: bundled(libsoundtouch)
|
|
|
2559ee |
Provides: bundled(libspeex_resampler)
|
|
|
0423e8 |
Provides: bundled(libsrtp)
|
|
|
2559ee |
Provides: bundled(libtheora)
|
|
|
2559ee |
Provides: bundled(libtremor)
|
|
|
2559ee |
Provides: bundled(libvorbis)
|
|
|
2559ee |
Provides: bundled(libvpx)
|
|
|
2559ee |
Provides: bundled(libwebp)
|
|
|
0423e8 |
Provides: bundled(libwebrtc)
|
|
|
2559ee |
Provides: bundled(libyuv)
|
|
|
763d03 |
Provides: bundled(lit)
|
|
|
2559ee |
Provides: bundled(mp4parse-rust)
|
|
|
0423e8 |
Provides: bundled(msgpack-c)
|
|
|
2559ee |
Provides: bundled(mtransport)
|
|
|
763d03 |
Provides: bundled(nestegg)
|
|
|
763d03 |
Provides: bundled(nICEr)
|
|
|
763d03 |
Provides: bundled(nimbus)
|
|
|
2559ee |
Provides: bundled(openmax_dl)
|
|
|
0423e8 |
Provides: bundled(openmax_il)
|
|
|
0423e8 |
Provides: bundled(ots)
|
|
|
763d03 |
Provides: bundled(pdf.js)
|
|
|
763d03 |
Provides: bundled(picosha2)
|
|
|
763d03 |
Provides: bundled(PKI)
|
|
|
0423e8 |
Provides: bundled(qcms)
|
|
|
763d03 |
Provides: bundled(rlbox)
|
|
|
0423e8 |
Provides: bundled(rlbox_sandboxing_api)
|
|
|
0423e8 |
Provides: bundled(rnp)
|
|
|
0423e8 |
Provides: bundled(sfntly)
|
|
|
0423e8 |
Provides: bundled(sipcc)
|
|
|
0423e8 |
Provides: bundled(skia)
|
|
|
763d03 |
Provides: bundled(soundtouch)
|
|
|
0423e8 |
Provides: bundled(sqlite3)
|
|
|
0423e8 |
Provides: bundled(thebes)
|
|
|
763d03 |
Provides: bundled(theora)
|
|
|
763d03 |
Provides: bundled(usrsctp)
|
|
|
763d03 |
Provides: bundled(wabt)
|
|
|
0423e8 |
Provides: bundled(wasm2c)
|
|
|
0423e8 |
Provides: bundled(WebRender)
|
|
|
763d03 |
Provides: bundled(wgpu)
|
|
|
2559ee |
Provides: bundled(woff2)
|
|
|
763d03 |
Provides: bundled(xsimd)
|
|
|
2559ee |
Provides: bundled(xz-embedded)
|
|
|
0423e8 |
Provides: bundled(ycbcr)
|
|
|
2559ee |
Provides: bundled(zlib)
|
|
|
2559ee |
|
|
|
763d03 |
# Thunderbird third party libraries
|
|
|
763d03 |
Provides: bundled(ANS1.js)
|
|
|
763d03 |
Provides: bundled(bzip2)
|
|
|
763d03 |
Provides: bundled(json-c)
|
|
|
763d03 |
Provides: bundled(libgcrypt)
|
|
|
763d03 |
Provides: bundled(libgpg-error)
|
|
|
763d03 |
Provides: bundled(libotr)
|
|
|
763d03 |
|
|
|
2559ee |
%if 0%{?bundle_nss}
|
|
|
763d03 |
Provides: bundled(nss) = %{nss_version}
|
|
|
763d03 |
Provides: bundled(nspr) = %{nspr_version}
|
|
|
763d03 |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
# Rust third parties:
|
|
|
763d03 |
# List obtained by `get_rust_bundled_provides.sh build.log` script::
|
|
|
763d03 |
Provides: bundled(crate(aa-stroke)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(adler)) = 1.0.2
|
|
|
763d03 |
Provides: bundled(crate(ahash)) = 0.7.6
|
|
|
763d03 |
Provides: bundled(crate(aho-corasick)) = 0.7.20
|
|
|
763d03 |
Provides: bundled(crate(alsa)) = 0.7.0
|
|
|
763d03 |
Provides: bundled(crate(alsa-sys)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(anyhow)) = 1.0.69
|
|
|
763d03 |
Provides: bundled(crate(app_services_logger)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(app_units)) = 0.7.2
|
|
|
763d03 |
Provides: bundled(crate(arrayref)) = 0.3.6
|
|
|
763d03 |
Provides: bundled(crate(arrayvec)) = 0.7.2
|
|
|
763d03 |
Provides: bundled(crate(ash)) = 0.37.2+1.3.238
|
|
|
763d03 |
Provides: bundled(crate(askama)) = 0.11.1
|
|
|
763d03 |
Provides: bundled(crate(askama_derive)) = 0.11.2
|
|
|
763d03 |
Provides: bundled(crate(askama_escape)) = 0.10.3
|
|
|
763d03 |
Provides: bundled(crate(askama_shared)) = 0.12.2
|
|
|
763d03 |
Provides: bundled(crate(async-task)) = 4.3.0
|
|
|
763d03 |
Provides: bundled(crate(async-trait)) = 0.1.64
|
|
|
763d03 |
Provides: bundled(crate(atomic_refcell)) = 0.1.9
|
|
|
763d03 |
Provides: bundled(crate(audioipc2)) = 0.5.0
|
|
|
763d03 |
Provides: bundled(crate(audioipc2-client)) = 0.5.0
|
|
|
763d03 |
Provides: bundled(crate(audioipc2-server)) = 0.5.0
|
|
|
763d03 |
Provides: bundled(crate(audio_thread_priority)) = 0.26.1
|
|
|
763d03 |
Provides: bundled(crate(authenticator)) = 0.4.0-alpha.15
|
|
|
763d03 |
Provides: bundled(crate(authrs_bridge)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(autocfg)) = 1.1.0
|
|
|
763d03 |
Provides: bundled(crate(base64)) = 0.13.999
|
|
|
763d03 |
Provides: bundled(crate(base64)) = 0.21.0
|
|
|
763d03 |
Provides: bundled(crate(bhttp)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(binary_http)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(bincode)) = 1.3.3
|
|
|
763d03 |
Provides: bundled(crate(bindgen)) = 0.63.999
|
|
|
763d03 |
Provides: bundled(crate(bindgen)) = 0.64.0
|
|
|
763d03 |
Provides: bundled(crate(bitflags)) = 1.3.2
|
|
|
763d03 |
Provides: bundled(crate(bitflags)) = 2.999.999
|
|
|
763d03 |
Provides: bundled(crate(bitreader)) = 0.3.6
|
|
|
763d03 |
Provides: bundled(crate(bit-set)) = 0.5.3
|
|
|
763d03 |
Provides: bundled(crate(bit-vec)) = 0.6.3
|
|
|
763d03 |
Provides: bundled(crate(block-buffer)) = 0.10.3
|
|
|
763d03 |
Provides: bundled(crate(bookmark_sync)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(build-parallel)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(builtins-static)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(byteorder)) = 1.4.3
|
|
|
763d03 |
Provides: bundled(crate(bytes)) = 1.4.0
|
|
|
763d03 |
Provides: bundled(crate(cache-padded)) = 1.2.0
|
|
|
763d03 |
Provides: bundled(crate(camino)) = 1.1.2
|
|
|
763d03 |
Provides: bundled(crate(cargo_metadata)) = 0.15.3
|
|
|
763d03 |
Provides: bundled(crate(cargo-platform)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(cascade_bloom_filter)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(cc)) = 1.0.73
|
|
|
763d03 |
Provides: bundled(crate(cert_storage)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(cexpr)) = 0.6.0
|
|
|
763d03 |
Provides: bundled(crate(cfg-if)) = 0.1.999
|
|
|
763d03 |
Provides: bundled(crate(cfg-if)) = 1.0.0
|
|
|
763d03 |
Provides: bundled(crate(chardetng)) = 0.1.9
|
|
|
763d03 |
Provides: bundled(crate(chardetng_c)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(chrono)) = 0.4.19
|
|
|
763d03 |
Provides: bundled(crate(chunky-vec)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(clang-sys)) = 1.6.0
|
|
|
763d03 |
Provides: bundled(crate(cmake)) = 0.1.999
|
|
|
763d03 |
Provides: bundled(crate(codespan-reporting)) = 0.11.1
|
|
|
763d03 |
Provides: bundled(crate(cose)) = 0.1.4
|
|
|
763d03 |
Provides: bundled(crate(cose-c)) = 0.1.5
|
|
|
763d03 |
Provides: bundled(crate(cpufeatures)) = 0.2.5
|
|
|
763d03 |
Provides: bundled(crate(crc32fast)) = 1.3.2
|
|
|
763d03 |
Provides: bundled(crate(crossbeam-channel)) = 0.5.6
|
|
|
763d03 |
Provides: bundled(crate(crossbeam-deque)) = 0.8.2
|
|
|
763d03 |
Provides: bundled(crate(crossbeam-epoch)) = 0.9.14
|
|
|
763d03 |
Provides: bundled(crate(crossbeam-queue)) = 0.3.8
|
|
|
763d03 |
Provides: bundled(crate(crossbeam-utils)) = 0.8.14
|
|
|
763d03 |
Provides: bundled(crate(crypto-common)) = 0.1.6
|
|
|
763d03 |
Provides: bundled(crate(crypto_hash)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(cssparser)) = 0.31.0
|
|
|
763d03 |
Provides: bundled(crate(cssparser-macros)) = 0.6.0
|
|
|
763d03 |
Provides: bundled(crate(cstr)) = 0.2.11
|
|
|
763d03 |
Provides: bundled(crate(cty)) = 0.2.2
|
|
|
763d03 |
Provides: bundled(crate(cubeb)) = 0.10.3
|
|
|
763d03 |
Provides: bundled(crate(cubeb-backend)) = 0.10.3
|
|
|
763d03 |
Provides: bundled(crate(cubeb-core)) = 0.10.3
|
|
|
763d03 |
Provides: bundled(crate(cubeb-pulse)) = 0.4.1
|
|
|
763d03 |
Provides: bundled(crate(cubeb-sys)) = 0.10.3
|
|
|
763d03 |
Provides: bundled(crate(dap_ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(darling)) = 0.13.99
|
|
|
763d03 |
Provides: bundled(crate(darling)) = 0.14.3
|
|
|
763d03 |
Provides: bundled(crate(darling_core)) = 0.14.3
|
|
|
763d03 |
Provides: bundled(crate(darling_macro)) = 0.14.3
|
|
|
763d03 |
Provides: bundled(crate(data-encoding)) = 2.3.3
|
|
|
763d03 |
Provides: bundled(crate(data-encoding-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(dbus)) = 0.6.5
|
|
|
763d03 |
Provides: bundled(crate(derive_common)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(derive_more)) = 0.99.17
|
|
|
763d03 |
Provides: bundled(crate(digest)) = 0.10.6
|
|
|
763d03 |
Provides: bundled(crate(dirs)) = 4.0.0
|
|
|
763d03 |
Provides: bundled(crate(dirs-sys)) = 0.3.7
|
|
|
763d03 |
Provides: bundled(crate(displaydoc)) = 0.2.3
|
|
|
763d03 |
Provides: bundled(crate(dns-parser)) = 0.8.0
|
|
|
763d03 |
Provides: bundled(crate(dogear)) = 0.5.0
|
|
|
763d03 |
Provides: bundled(crate(dom)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(dtoa)) = 0.4.8
|
|
|
763d03 |
Provides: bundled(crate(dtoa-short)) = 0.3.3
|
|
|
763d03 |
Provides: bundled(crate(either)) = 1.8.1
|
|
|
763d03 |
Provides: bundled(crate(encoding_c)) = 0.9.8
|
|
|
763d03 |
Provides: bundled(crate(encoding_c_mem)) = 0.2.6
|
|
|
763d03 |
Provides: bundled(crate(encoding_glue)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(encoding_rs)) = 0.8.32
|
|
|
763d03 |
Provides: bundled(crate(enumset)) = 1.0.12
|
|
|
763d03 |
Provides: bundled(crate(enumset_derive)) = 0.6.1
|
|
|
763d03 |
Provides: bundled(crate(env_logger)) = 0.10.0
|
|
|
763d03 |
Provides: bundled(crate(env_logger)) = 0.9.999
|
|
|
763d03 |
Provides: bundled(crate(error-chain)) = 0.12.4
|
|
|
763d03 |
Provides: bundled(crate(error-support)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(error-support-macros)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(etagere)) = 0.2.7
|
|
|
763d03 |
Provides: bundled(crate(euclid)) = 0.22.7
|
|
|
763d03 |
Provides: bundled(crate(fallible_collections)) = 0.4.6
|
|
|
763d03 |
Provides: bundled(crate(fallible-iterator)) = 0.2.0
|
|
|
763d03 |
Provides: bundled(crate(fallible-streaming-iterator)) = 0.1.9
|
|
|
763d03 |
Provides: bundled(crate(fastrand)) = 1.9.0
|
|
|
763d03 |
Provides: bundled(crate(ffi-support)) = 0.4.4
|
|
|
763d03 |
Provides: bundled(crate(firefox-on-glean)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(flate2)) = 1.0.25
|
|
|
763d03 |
Provides: bundled(crate(fluent)) = 0.16.0
|
|
|
763d03 |
Provides: bundled(crate(fluent-bundle)) = 0.15.2
|
|
|
763d03 |
Provides: bundled(crate(fluent-fallback)) = 0.7.0
|
|
|
763d03 |
Provides: bundled(crate(fluent-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(fluent-langneg)) = 0.13.0
|
|
|
763d03 |
Provides: bundled(crate(fluent-langneg-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(fluent-pseudo)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(fluent-syntax)) = 0.11.0
|
|
|
763d03 |
Provides: bundled(crate(fnv)) = 1.0.7
|
|
|
763d03 |
Provides: bundled(crate(fog_control)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(freetype)) = 0.7.0
|
|
|
763d03 |
Provides: bundled(crate(fs-err)) = 2.9.0
|
|
|
763d03 |
Provides: bundled(crate(futures)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-channel)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-core)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-executor)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-io)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-macro)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-sink)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-task)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(futures-util)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(fxhash)) = 0.2.1
|
|
|
763d03 |
Provides: bundled(crate(gecko_logger)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(gecko-profiler)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(geckoservo)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(generic-array)) = 0.14.6
|
|
|
763d03 |
Provides: bundled(crate(getrandom)) = 0.2.9
|
|
|
763d03 |
Provides: bundled(crate(gkrust)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(gkrust-shared)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(gkrust_utils)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(gleam)) = 0.15.0
|
|
|
763d03 |
Provides: bundled(crate(glean)) = 52.7.0
|
|
|
763d03 |
Provides: bundled(crate(glean-core)) = 52.7.0
|
|
|
763d03 |
Provides: bundled(crate(gl_generator)) = 0.14.0
|
|
|
763d03 |
Provides: bundled(crate(glob)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(glsl)) = 6.0.2
|
|
|
763d03 |
Provides: bundled(crate(glslopt)) = 0.1.9
|
|
|
763d03 |
Provides: bundled(crate(glsl-to-cxx)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(goblin)) = 0.6.0
|
|
|
763d03 |
Provides: bundled(crate(golden_gate)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(gpu-alloc)) = 0.5.3
|
|
|
763d03 |
Provides: bundled(crate(gpu-alloc-types)) = 0.2.0
|
|
|
763d03 |
Provides: bundled(crate(gpu-descriptor)) = 0.2.3
|
|
|
763d03 |
Provides: bundled(crate(gpu-descriptor-types)) = 0.1.1
|
|
|
763d03 |
Provides: bundled(crate(half)) = 1.8.2
|
|
|
763d03 |
Provides: bundled(crate(hashbrown)) = 0.12.3
|
|
|
763d03 |
Provides: bundled(crate(hashlink)) = 0.8.1
|
|
|
763d03 |
Provides: bundled(crate(heck)) = 0.4.1
|
|
|
763d03 |
Provides: bundled(crate(hex)) = 0.4.3
|
|
|
763d03 |
Provides: bundled(crate(hexf-parse)) = 0.2.1
|
|
|
763d03 |
Provides: bundled(crate(http_sfv)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(id-arena)) = 2.2.1
|
|
|
763d03 |
Provides: bundled(crate(ident_case)) = 1.0.1
|
|
|
763d03 |
Provides: bundled(crate(idna)) = 0.2.3
|
|
|
763d03 |
Provides: bundled(crate(indexmap)) = 1.9.2
|
|
|
763d03 |
Provides: bundled(crate(inherent)) = 1.0.4
|
|
|
763d03 |
Provides: bundled(crate(instant)) = 0.1.12
|
|
|
763d03 |
Provides: bundled(crate(interrupt-support)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(intl-memoizer)) = 0.5.1
|
|
|
763d03 |
Provides: bundled(crate(intl_pluralrules)) = 7.0.2
|
|
|
763d03 |
Provides: bundled(crate(iovec)) = 0.1.4
|
|
|
763d03 |
Provides: bundled(crate(ipcclientcerts-static)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(itertools)) = 0.10.5
|
|
|
763d03 |
Provides: bundled(crate(itoa)) = 1.0.5
|
|
|
763d03 |
Provides: bundled(crate(jobserver)) = 0.1.25
|
|
|
763d03 |
Provides: bundled(crate(jog)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(jsrust)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(jsrust_shared)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(khronos_api)) = 3.1.0
|
|
|
763d03 |
Provides: bundled(crate(kvstore)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(l10nregistry)) = 0.3.0
|
|
|
763d03 |
Provides: bundled(crate(l10nregistry-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(lazycell)) = 1.3.0
|
|
|
763d03 |
Provides: bundled(crate(lazy_static)) = 1.4.0
|
|
|
763d03 |
Provides: bundled(crate(leb128)) = 0.2.5
|
|
|
763d03 |
Provides: bundled(crate(libc)) = 0.2.139
|
|
|
763d03 |
Provides: bundled(crate(libdbus-sys)) = 0.2.2
|
|
|
763d03 |
Provides: bundled(crate(libloading)) = 0.7.4
|
|
|
763d03 |
Provides: bundled(crate(libsqlite3-sys)) = 0.25.2
|
|
|
763d03 |
Provides: bundled(crate(libudev)) = 0.2.0
|
|
|
763d03 |
Provides: bundled(crate(libudev-sys)) = 0.1.3
|
|
|
763d03 |
Provides: bundled(crate(lmdb-rkv)) = 0.14.0
|
|
|
763d03 |
Provides: bundled(crate(lmdb-rkv-sys)) = 0.11.2
|
|
|
763d03 |
Provides: bundled(crate(localization-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(lock_api)) = 0.4.9
|
|
|
763d03 |
Provides: bundled(crate(log)) = 0.4.17
|
|
|
763d03 |
Provides: bundled(crate(malloc_size_of)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(malloc_size_of_derive)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(mapped_hyph)) = 0.4.3
|
|
|
763d03 |
Provides: bundled(crate(matches)) = 0.1.10
|
|
|
763d03 |
Provides: bundled(crate(md-5)) = 0.10.5
|
|
|
763d03 |
Provides: bundled(crate(mdns_service)) = 0.1.1
|
|
|
763d03 |
Provides: bundled(crate(memalloc)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(memchr)) = 2.5.0
|
|
|
763d03 |
Provides: bundled(crate(memmap2)) = 0.5.9
|
|
|
763d03 |
Provides: bundled(crate(memoffset)) = 0.8.0
|
|
|
763d03 |
Provides: bundled(crate(midir)) = 0.7.0
|
|
|
763d03 |
Provides: bundled(crate(midir_impl)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(mime)) = 0.3.16
|
|
|
763d03 |
Provides: bundled(crate(mime_guess)) = 2.0.4
|
|
|
763d03 |
Provides: bundled(crate(mime-guess-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(minimal-lexical)) = 0.2.1
|
|
|
763d03 |
Provides: bundled(crate(miniz_oxide)) = 0.6.2
|
|
|
763d03 |
Provides: bundled(crate(mio)) = 0.8.0
|
|
|
763d03 |
Provides: bundled(crate(moz_asserts)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(mozbuild)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(moz_cbor)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(mozglue-static)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(mozilla-central-workspace-hack)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(moz_task)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(mozurl)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(mp4parse)) = 0.17.0
|
|
|
763d03 |
Provides: bundled(crate(mp4parse_capi)) = 0.17.0
|
|
|
763d03 |
Provides: bundled(crate(murmurhash3)) = 0.0.5
|
|
|
763d03 |
Provides: bundled(crate(naga)) = 0.12.0
|
|
|
763d03 |
Provides: bundled(crate(neqo-common)) = 0.6.4
|
|
|
763d03 |
Provides: bundled(crate(neqo-crypto)) = 0.6.4
|
|
|
763d03 |
Provides: bundled(crate(neqo_glue)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(neqo-http3)) = 0.6.4
|
|
|
763d03 |
Provides: bundled(crate(neqo-qpack)) = 0.6.4
|
|
|
763d03 |
Provides: bundled(crate(neqo-transport)) = 0.6.4
|
|
|
763d03 |
Provides: bundled(crate(netwerk_helper)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(new_debug_unreachable)) = 1.0.4
|
|
|
763d03 |
Provides: bundled(crate(nix)) = 0.24.99
|
|
|
763d03 |
Provides: bundled(crate(nix)) = 0.26.2
|
|
|
763d03 |
Provides: bundled(crate(nom)) = 7.1.3
|
|
|
763d03 |
Provides: bundled(crate(nserror)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(nss_build_common)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(nss-gk-api)) = 0.2.1
|
|
|
763d03 |
Provides: bundled(crate(nsstring)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(num_cpus)) = 1.15.0
|
|
|
763d03 |
Provides: bundled(crate(num-derive)) = 0.3.3
|
|
|
763d03 |
Provides: bundled(crate(num-integer)) = 0.1.45
|
|
|
763d03 |
Provides: bundled(crate(num-traits)) = 0.2.15
|
|
|
763d03 |
Provides: bundled(crate(object)) = 0.30.3
|
|
|
763d03 |
Provides: bundled(crate(oblivious_http)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(ohttp)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(once_cell)) = 1.17.1
|
|
|
763d03 |
Provides: bundled(crate(ordered-float)) = 3.4.0
|
|
|
763d03 |
Provides: bundled(crate(origin-trials-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(origin-trial-token)) = 0.1.1
|
|
|
763d03 |
Provides: bundled(crate(owning_ref)) = 0.4.1
|
|
|
763d03 |
Provides: bundled(crate(parking_lot)) = 0.11.2
|
|
|
763d03 |
Provides: bundled(crate(parking_lot)) = 0.12.999
|
|
|
763d03 |
Provides: bundled(crate(parking_lot_core)) = 0.8.6
|
|
|
763d03 |
Provides: bundled(crate(paste)) = 1.0.11
|
|
|
763d03 |
Provides: bundled(crate(peeking_take_while)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(peek-poke)) = 0.3.0
|
|
|
763d03 |
Provides: bundled(crate(peek-poke-derive)) = 0.3.0
|
|
|
763d03 |
Provides: bundled(crate(percent-encoding)) = 2.2.0
|
|
|
763d03 |
Provides: bundled(crate(phf)) = 0.10.1
|
|
|
763d03 |
Provides: bundled(crate(phf_codegen)) = 0.10.0
|
|
|
763d03 |
Provides: bundled(crate(phf_generator)) = 0.10.0
|
|
|
763d03 |
Provides: bundled(crate(phf_macros)) = 0.10.0
|
|
|
763d03 |
Provides: bundled(crate(phf_shared)) = 0.10.0
|
|
|
763d03 |
Provides: bundled(crate(pin-project-lite)) = 0.2.9
|
|
|
763d03 |
Provides: bundled(crate(pin-utils)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(pkcs11-bindings)) = 0.1.5
|
|
|
763d03 |
Provides: bundled(crate(pkg-config)) = 0.3.26
|
|
|
763d03 |
Provides: bundled(crate(plain)) = 0.2.3
|
|
|
763d03 |
Provides: bundled(crate(plane-split)) = 0.18.0
|
|
|
763d03 |
Provides: bundled(crate(ppv-lite86)) = 0.2.17
|
|
|
763d03 |
Provides: bundled(crate(precomputed-hash)) = 0.1.1
|
|
|
763d03 |
Provides: bundled(crate(prefs_parser)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(prio)) = 0.9.1
|
|
|
763d03 |
Provides: bundled(crate(processtools)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(proc-macro2)) = 1.0.51
|
|
|
763d03 |
Provides: bundled(crate(proc-macro-hack)) = 0.5.20+deprecated
|
|
|
763d03 |
Provides: bundled(crate(profiler_helper)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(profiler-macros)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(profiling)) = 1.0.7
|
|
|
763d03 |
Provides: bundled(crate(prost)) = 0.8.0
|
|
|
763d03 |
Provides: bundled(crate(prost-derive)) = 0.8.0
|
|
|
763d03 |
Provides: bundled(crate(pulse)) = 0.3.0
|
|
|
763d03 |
Provides: bundled(crate(pulse-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(qcms)) = 0.2.0
|
|
|
763d03 |
Provides: bundled(crate(qlog)) = 0.4.0
|
|
|
763d03 |
Provides: bundled(crate(quick-error)) = 1.2.3
|
|
|
763d03 |
Provides: bundled(crate(quote)) = 1.0.23
|
|
|
763d03 |
Provides: bundled(crate(rand)) = 0.8.5
|
|
|
763d03 |
Provides: bundled(crate(rand_chacha)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(rand_core)) = 0.6.4
|
|
|
763d03 |
Provides: bundled(crate(raw-window-handle)) = 0.5.0
|
|
|
763d03 |
Provides: bundled(crate(rayon)) = 1.6.1
|
|
|
763d03 |
Provides: bundled(crate(rayon-core)) = 1.10.2
|
|
|
763d03 |
Provides: bundled(crate(regex)) = 1.7.1
|
|
|
763d03 |
Provides: bundled(crate(regex-syntax)) = 0.6.28
|
|
|
763d03 |
Provides: bundled(crate(remove_dir_all)) = 0.5.3
|
|
|
763d03 |
Provides: bundled(crate(replace_with)) = 0.1.7
|
|
|
763d03 |
Provides: bundled(crate(ringbuf)) = 0.2.8
|
|
|
763d03 |
Provides: bundled(crate(rkv)) = 0.18.4
|
|
|
763d03 |
Provides: bundled(crate(ron)) = 0.8.0
|
|
|
763d03 |
Provides: bundled(crate(rsclientcerts)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(rsdparsa_capi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(runloop)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(rure)) = 0.2.2
|
|
|
763d03 |
Provides: bundled(crate(rusqlite)) = 0.28.0
|
|
|
763d03 |
Provides: bundled(crate(rust_cascade)) = 1.5.0
|
|
|
763d03 |
Provides: bundled(crate(rustc-demangle)) = 0.1.21
|
|
|
763d03 |
Provides: bundled(crate(rustc-hash)) = 1.1.0
|
|
|
763d03 |
Provides: bundled(crate(rustc_version)) = 0.4.0
|
|
|
763d03 |
Provides: bundled(crate(rust_decimal)) = 1.28.1
|
|
|
763d03 |
Provides: bundled(crate(ryu)) = 1.0.12
|
|
|
763d03 |
Provides: bundled(crate(same-file)) = 1.0.6
|
|
|
763d03 |
Provides: bundled(crate(scopeguard)) = 1.1.0
|
|
|
763d03 |
Provides: bundled(crate(scroll)) = 0.11.0
|
|
|
763d03 |
Provides: bundled(crate(scroll_derive)) = 0.11.0
|
|
|
763d03 |
Provides: bundled(crate(selectors)) = 0.22.0
|
|
|
763d03 |
Provides: bundled(crate(self_cell)) = 0.10.2
|
|
|
763d03 |
Provides: bundled(crate(semver)) = 1.0.16
|
|
|
763d03 |
Provides: bundled(crate(serde)) = 1.0.152
|
|
|
763d03 |
Provides: bundled(crate(serde_bytes)) = 0.11.9
|
|
|
763d03 |
Provides: bundled(crate(serde_cbor)) = 0.11.2
|
|
|
763d03 |
Provides: bundled(crate(serde_derive)) = 1.0.152
|
|
|
763d03 |
Provides: bundled(crate(serde_json)) = 1.0.93
|
|
|
763d03 |
Provides: bundled(crate(serde_with)) = 1.14.0
|
|
|
763d03 |
Provides: bundled(crate(serde_with_macros)) = 1.5.2
|
|
|
763d03 |
Provides: bundled(crate(servo_arc)) = 0.1.1
|
|
|
763d03 |
Provides: bundled(crate(sfv)) = 0.9.3
|
|
|
763d03 |
Provides: bundled(crate(sha1)) = 0.10.5
|
|
|
763d03 |
Provides: bundled(crate(sha2)) = 0.10.6
|
|
|
763d03 |
Provides: bundled(crate(shlex)) = 1.1.0
|
|
|
763d03 |
Provides: bundled(crate(siphasher)) = 0.3.10
|
|
|
763d03 |
Provides: bundled(crate(slab)) = 0.4.8
|
|
|
763d03 |
Provides: bundled(crate(smallbitvec)) = 2.5.1
|
|
|
763d03 |
Provides: bundled(crate(smallvec)) = 1.10.0
|
|
|
763d03 |
Provides: bundled(crate(socket2)) = 0.4.7
|
|
|
763d03 |
Provides: bundled(crate(spirv)) = 0.2.0+1.5.4
|
|
|
763d03 |
Provides: bundled(crate(sql-support)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(stable_deref_trait)) = 1.2.0
|
|
|
763d03 |
Provides: bundled(crate(static_assertions)) = 1.1.0
|
|
|
763d03 |
Provides: bundled(crate(static_prefs)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(storage)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(storage_variant)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(strsim)) = 0.10.0
|
|
|
763d03 |
Provides: bundled(crate(style)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(style_derive)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(style_traits)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(svg_fmt)) = 0.4.1
|
|
|
763d03 |
Provides: bundled(crate(swgl)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(syn)) = 1.0.107
|
|
|
763d03 |
Provides: bundled(crate(sync15)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(sync-guid)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(synstructure)) = 0.12.6
|
|
|
763d03 |
Provides: bundled(crate(tabs)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(tempfile)) = 3.3.0
|
|
|
763d03 |
Provides: bundled(crate(termcolor)) = 1.2.0
|
|
|
763d03 |
Provides: bundled(crate(thin-vec)) = 0.2.12
|
|
|
763d03 |
Provides: bundled(crate(thiserror)) = 1.0.38
|
|
|
763d03 |
Provides: bundled(crate(thiserror-impl)) = 1.0.38
|
|
|
763d03 |
Provides: bundled(crate(threadbound)) = 0.1.5
|
|
|
763d03 |
Provides: bundled(crate(time)) = 0.1.45
|
|
|
763d03 |
Provides: bundled(crate(tinystr)) = 0.7.1
|
|
|
763d03 |
Provides: bundled(crate(tinyvec)) = 1.999.999
|
|
|
763d03 |
Provides: bundled(crate(toml)) = 0.5.11
|
|
|
763d03 |
Provides: bundled(crate(topological-sort)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(to_shmem)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(to_shmem_derive)) = 0.0.1
|
|
|
763d03 |
Provides: bundled(crate(tracy-rs)) = 0.1.2
|
|
|
763d03 |
Provides: bundled(crate(typed-arena-nomut)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(type-map)) = 0.4.0
|
|
|
763d03 |
Provides: bundled(crate(typenum)) = 1.16.0
|
|
|
763d03 |
Provides: bundled(crate(uluru)) = 3.0.0
|
|
|
763d03 |
Provides: bundled(crate(unicase)) = 2.6.0
|
|
|
763d03 |
Provides: bundled(crate(unic-langid)) = 0.9.1
|
|
|
763d03 |
Provides: bundled(crate(unic-langid-ffi)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(unic-langid-impl)) = 0.9.1
|
|
|
763d03 |
Provides: bundled(crate(unicode-bidi)) = 0.3.8
|
|
|
763d03 |
Provides: bundled(crate(unicode-ident)) = 1.0.6
|
|
|
763d03 |
Provides: bundled(crate(unicode-normalization)) = 0.1.22
|
|
|
763d03 |
Provides: bundled(crate(unicode-segmentation)) = 1.10.0
|
|
|
763d03 |
Provides: bundled(crate(unicode-width)) = 0.1.10
|
|
|
763d03 |
Provides: bundled(crate(unicode-xid)) = 0.2.4
|
|
|
763d03 |
Provides: bundled(crate(uniffi)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_bindgen)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_build)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_checksum_derive)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_core)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_macros)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_meta)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(uniffi_testing)) = 0.23.0
|
|
|
763d03 |
Provides: bundled(crate(url)) = 2.1.0
|
|
|
763d03 |
Provides: bundled(crate(uuid)) = 1.3.0
|
|
|
763d03 |
Provides: bundled(crate(vcpkg)) = 0.2.999
|
|
|
763d03 |
Provides: bundled(crate(version_check)) = 0.9.4
|
|
|
763d03 |
Provides: bundled(crate(viaduct)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(void)) = 1.0.2
|
|
|
763d03 |
Provides: bundled(crate(walkdir)) = 2.3.2
|
|
|
763d03 |
Provides: bundled(crate(wasm-encoder)) = 0.25.0
|
|
|
763d03 |
Provides: bundled(crate(wast)) = 56.0.0
|
|
|
763d03 |
Provides: bundled(crate(webext-storage)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(webext_storage_bridge)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(webrender)) = 0.62.0
|
|
|
763d03 |
Provides: bundled(crate(webrender_api)) = 0.62.0
|
|
|
763d03 |
Provides: bundled(crate(webrender_bindings)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(webrender_build)) = 0.0.2
|
|
|
763d03 |
Provides: bundled(crate(webrtc-sdp)) = 0.3.10
|
|
|
763d03 |
Provides: bundled(crate(weedle2)) = 4.0.0
|
|
|
763d03 |
Provides: bundled(crate(wgpu_bindings)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(wgpu-core)) = 0.16.0
|
|
|
763d03 |
Provides: bundled(crate(wgpu-hal)) = 0.16.0
|
|
|
763d03 |
Provides: bundled(crate(wgpu-types)) = 0.16.0
|
|
|
763d03 |
Provides: bundled(crate(whatsys)) = 0.3.1
|
|
|
763d03 |
Provides: bundled(crate(wpf-gpu-raster)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(wr_glyph_rasterizer)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(wr_malloc_size_of)) = 0.0.2
|
|
|
763d03 |
Provides: bundled(crate(xmldecl)) = 0.2.0
|
|
|
763d03 |
Provides: bundled(crate(xml-rs)) = 0.8.4
|
|
|
763d03 |
Provides: bundled(crate(xpcom)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(xpcom_macros)) = 0.1.0
|
|
|
763d03 |
Provides: bundled(crate(zeitstempel)) = 0.1.1
|
|
|
763d03 |
|
|
|
26f3ef |
|
|
|
e75128 |
%description
|
|
|
e75128 |
Mozilla Thunderbird is a standalone mail and newsgroup client.
|
|
|
e75128 |
|
|
|
e75128 |
%prep
|
|
|
83ba88 |
echo "Build environment"
|
|
|
763d03 |
echo "--------------------------------------------"
|
|
|
c26c11 |
echo "dist %{?dist}"
|
|
|
c26c11 |
echo "RHEL minor version: %{?rhel_minor_version}"
|
|
|
c26c11 |
echo "bundle_nss %{?bundle_nss}"
|
|
|
c26c11 |
echo "system_nss %{?system_nss}"
|
|
|
c26c11 |
echo "use_rust_ts %{?use_rust_ts}"
|
|
|
c26c11 |
echo "use_dts %{?use_dts}"
|
|
|
c26c11 |
echo "use_nodejs_scl %{?use_nodejs_scl}"
|
|
|
c26c11 |
echo "use_llvm_ts %{?use_llvm_ts}"
|
|
|
c26c11 |
echo "use_python3_scl %{?use_python3_scl}"
|
|
|
763d03 |
echo "--------------------------------------------"
|
|
|
83ba88 |
|
|
|
26f3ef |
%setup -q
|
|
|
26f3ef |
|
|
|
763d03 |
# ---- RHEL specific patches ---
|
|
|
763d03 |
# -- Downstream only --
|
|
|
763d03 |
%patch -P1 -p1 -b .disable-elfhack
|
|
|
763d03 |
%patch -P2 -p1 -b .firefox-gcc-build
|
|
|
763d03 |
%patch -P3 -p1 -b .build-big-endian-errors
|
|
|
2559ee |
%if 0%{?rhel} == 7
|
|
|
763d03 |
%patch -P5 -p1 -b .build-rhel7-lower-node-min-version
|
|
|
763d03 |
%ifarch ppc64
|
|
|
763d03 |
# abiv2 version not available in RHEL7 ppc
|
|
|
763d03 |
# TODO most likely not needed with system nss
|
|
|
763d03 |
%patch -P6 -p1 -b .ppc64-abiv2
|
|
|
763d03 |
%endif
|
|
|
2559ee |
%ifarch %{ix86}
|
|
|
763d03 |
# -F dwarf not available in RHEL7's nasm
|
|
|
763d03 |
%patch -P7 -p1 -b .build-rhel7-nasm-dwarf
|
|
|
2559ee |
%endif
|
|
|
83ba88 |
%endif
|
|
|
763d03 |
%patch -P8 -p1 -b .build-rnp-openssl
|
|
|
763d03 |
%if !%{?use_openssl_for_librnp}
|
|
|
763d03 |
%patch -P9 -p1 -b .disable-openpgp-in-thunderbird
|
|
|
763d03 |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
# -- Upstreamed patches --
|
|
|
763d03 |
%patch -P51 -p1 -b .mozilla-bmo1170092
|
|
|
763d03 |
|
|
|
763d03 |
# -- Submitted upstream, not merged --
|
|
|
763d03 |
%patch -P101 -p1 -b .mozilla-bmo1670333
|
|
|
763d03 |
%patch -P102 -p1 -b .mozilla-bmo1504834-part1
|
|
|
763d03 |
%patch -P103 -p1 -b .mozilla-bmo1504834-part3
|
|
|
763d03 |
%patch -P104 -p1 -b .mozilla-bmo849632
|
|
|
763d03 |
%patch -P105 -p1 -b .mozilla-bmo998749
|
|
|
763d03 |
%patch -P106 -p1 -b .mozilla-bmo1716707-swizzle
|
|
|
763d03 |
%patch -P107 -p1 -b .mozilla-bmo1716707-svg
|
|
|
763d03 |
%patch -P108 -p1 -b .mozilla-bmo1789216-disable-av1
|
|
|
763d03 |
|
|
|
763d03 |
# ---- Fedora specific patches ----
|
|
|
763d03 |
%patch -P151 -p1 -b .addons
|
|
|
763d03 |
%patch -P152 -p1 -b .rhbz-1173156
|
|
|
763d03 |
%patch -P154 -p1 -b .addons-nss-hack
|
|
|
763d03 |
# ARM run-time patch
|
|
|
763d03 |
%ifarch aarch64
|
|
|
763d03 |
%patch -P155 -p1 -b .rhbz-1354671
|
|
|
763d03 |
%endif
|
|
|
b91c69 |
|
|
|
c26c11 |
# ---- Security patches ----
|
|
|
c26c11 |
cd media/libvpx/libvpx
|
|
|
c26c11 |
%patch -P301 -p1 -b .CVE-2023-44488-libvpx
|
|
|
c26c11 |
cd -
|
|
|
c26c11 |
|
|
|
e75128 |
%{__rm} -f .mozconfig
|
|
|
e75128 |
%{__cp} %{SOURCE10} .mozconfig
|
|
|
ae11a9 |
%{__cp} %{SOURCE24} mozilla-api-key
|
|
|
ae11a9 |
%{__cp} %{SOURCE27} google-api-key
|
|
|
26f3ef |
%{__cp} %{SOURCE35} google-loc-api-key
|
|
|
26f3ef |
|
|
|
26f3ef |
echo "ac_add_options --prefix=\"%{_prefix}\"" >> .mozconfig
|
|
|
26f3ef |
echo "ac_add_options --libdir=\"%{_libdir}\"" >> .mozconfig
|
|
|
e02199 |
|
|
|
a8a561 |
%if %{?system_nss}
|
|
|
2559ee |
echo "ac_add_options --with-system-nspr" >> .mozconfig
|
|
|
2559ee |
echo "ac_add_options --with-system-nss" >> .mozconfig
|
|
|
e75128 |
%else
|
|
|
2559ee |
echo "ac_add_options --without-system-nspr" >> .mozconfig
|
|
|
2559ee |
echo "ac_add_options --without-system-nss" >> .mozconfig
|
|
|
e75128 |
%endif
|
|
|
e75128 |
|
|
|
a8a561 |
%if %{?debug_build}
|
|
|
2559ee |
echo "ac_add_options --enable-debug" >> .mozconfig
|
|
|
2559ee |
echo "ac_add_options --disable-optimize" >> .mozconfig
|
|
|
e75128 |
%else
|
|
|
26f3ef |
%global optimize_flags "none"
|
|
|
2559ee |
%ifarch s390x
|
|
|
83ba88 |
%global optimize_flags "-g -O1"
|
|
|
ae11a9 |
%endif
|
|
|
ae11a9 |
%ifarch ppc64le aarch64
|
|
|
ae11a9 |
%global optimize_flags "-g -O2"
|
|
|
ae11a9 |
%endif
|
|
|
ae11a9 |
%if %{optimize_flags} != "none"
|
|
|
ae11a9 |
echo 'ac_add_options --enable-optimize=%{?optimize_flags}' >> .mozconfig
|
|
|
ae11a9 |
%else
|
|
|
ae11a9 |
echo 'ac_add_options --enable-optimize' >> .mozconfig
|
|
|
ae11a9 |
%endif
|
|
|
ae11a9 |
echo "ac_add_options --disable-debug" >> .mozconfig
|
|
|
ae11a9 |
%endif
|
|
|
ae11a9 |
|
|
|
26f3ef |
%if %{?system_libvpx}
|
|
|
26f3ef |
echo "ac_add_options --with-system-libvpx" >> .mozconfig
|
|
|
26f3ef |
%else
|
|
|
26f3ef |
echo "ac_add_options --without-system-libvpx" >> .mozconfig
|
|
|
26f3ef |
%endif
|
|
|
26f3ef |
|
|
|
763d03 |
%ifarch s390x
|
|
|
83ba88 |
echo "ac_add_options --disable-jit" >> .mozconfig
|
|
|
83ba88 |
%endif
|
|
|
83ba88 |
|
|
|
b0b627 |
%if %{?use_openssl_for_librnp}
|
|
|
b0b627 |
echo "ac_add_options --with-librnp-backend=openssl" >> .mozconfig
|
|
|
b0b627 |
%endif
|
|
|
a8a561 |
|
|
|
2559ee |
# AV1 requires newer nasm that was rebased in 8.4
|
|
|
763d03 |
%if 0%{?rhel} == 7 || (0%{?rhel} == 8 && %{rhel_minor_version} < 4)
|
|
|
2559ee |
echo "ac_add_options --disable-av1" >> .mozconfig
|
|
|
2559ee |
%endif
|
|
|
2559ee |
|
|
|
26f3ef |
# api keys full path
|
|
|
26f3ef |
echo "ac_add_options --with-mozilla-api-keyfile=`pwd`/mozilla-api-key" >> .mozconfig
|
|
|
26f3ef |
# It seems that the api key we have is for the safe browsing only
|
|
|
26f3ef |
echo "ac_add_options --with-google-location-service-api-keyfile=`pwd`/google-loc-api-key" >> .mozconfig
|
|
|
26f3ef |
echo "ac_add_options --with-google-safebrowsing-api-keyfile=`pwd`/google-api-key" >> .mozconfig
|
|
|
e75128 |
|
|
|
cb713e |
# May result in empty --with-libclang-path= in earlier versions.
|
|
|
22011a |
# So far this is needed only for c8s/c9s.
|
|
|
22011a |
%if (0%{?rhel} == 8 && %{rhel_minor_version} >= 10) || (0%{?rhel} == 9 && %{rhel_minor_version} >= 4)
|
|
|
cb713e |
# Clang 17 upstream's detection fails, tell it where to look.
|
|
|
cb713e |
echo "ac_add_options --with-libclang-path=`llvm-config --libdir`" >> .mozconfig
|
|
|
cb713e |
%endif
|
|
|
cb713e |
|
|
|
26f3ef |
echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"' >> .mozconfig
|
|
|
2559ee |
|
|
|
ae11a9 |
# Remove executable bit to make brp-mangle-shebangs happy.
|
|
|
26f3ef |
find third_party -type f -iname "*.rs"|xargs chmod a-x
|
|
|
ae11a9 |
|
|
|
26f3ef |
#===============================================================================
|
|
|
e75128 |
|
|
|
e75128 |
%build
|
|
|
763d03 |
# TODO: causes SIGSEGV on the webrender compilation, we might remove it with newer rust version
|
|
|
2559ee |
# Disable LTO to work around rhbz#1883904
|
|
|
2559ee |
%define _lto_cflags %{nil}
|
|
|
763d03 |
|
|
|
ae11a9 |
export PATH="%{_buildrootdir}/bin:$PATH"
|
|
|
26f3ef |
# Cleanup buildroot for existing rpms from bundled nss/nspr and other packages
|
|
|
26f3ef |
rm -rf %{_buildrootdir}/*
|
|
|
ae11a9 |
|
|
|
ae11a9 |
function install_rpms_to_current_dir() {
|
|
|
ae11a9 |
PACKAGE_RPM=$(eval echo $1)
|
|
|
ae11a9 |
PACKAGE_DIR=%{_rpmdir}
|
|
|
ae11a9 |
|
|
|
ae11a9 |
if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
|
|
|
ae11a9 |
# Hack for tps tests
|
|
|
ae11a9 |
ARCH_STR=%{_arch}
|
|
|
2559ee |
%ifarch %{ix86}
|
|
|
ae11a9 |
ARCH_STR="i?86"
|
|
|
ae11a9 |
%endif
|
|
|
2559ee |
PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
|
|
|
ae11a9 |
fi
|
|
|
ae11a9 |
|
|
|
ae11a9 |
for package in $(ls $PACKAGE_DIR/$PACKAGE_RPM)
|
|
|
ae11a9 |
do
|
|
|
ae11a9 |
echo "$package"
|
|
|
ae11a9 |
rpm2cpio "$package" | cpio -idu
|
|
|
ae11a9 |
done
|
|
|
ae11a9 |
}
|
|
|
763d03 |
|
|
|
83ba88 |
%if 0%{?bundle_nss}
|
|
|
2559ee |
rpm -ivh %{SOURCE402}
|
|
|
2559ee |
rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nspr.spec
|
|
|
2559ee |
pushd %{_buildrootdir}
|
|
|
2559ee |
install_rpms_to_current_dir nspr-4*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nspr-devel*.rpm
|
|
|
2559ee |
popd
|
|
|
2559ee |
echo "Setting nspr flags"
|
|
|
2559ee |
# nss-setup-flags-env.inc
|
|
|
2559ee |
sed -i 's@%{bundled_install_path}@%{_buildrootdir}%{bundled_install_path}@g' %{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig/nspr*.pc
|
|
|
26f3ef |
cat %{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig/nspr*.pc
|
|
|
83ba88 |
|
|
|
2559ee |
export LDFLAGS="-L%{_buildrootdir}%{bundled_install_path}/%{_lib} $LDFLAGS"
|
|
|
2559ee |
export LDFLAGS="-Wl,-rpath,%{bundled_install_path}/%{_lib} $LDFLAGS"
|
|
|
2559ee |
export LDFLAGS="-Wl,-rpath-link,%{_buildrootdir}%{bundled_install_path}/%{_lib} $LDFLAGS"
|
|
|
2559ee |
export PKG_CONFIG_PATH=%{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig
|
|
|
26f3ef |
pkg-config --libs-only-L nspr
|
|
|
26f3ef |
pkg-config --libs nspr
|
|
|
26f3ef |
export PATH="%{_buildrootdir}%{bundled_install_path}/bin:$PATH"
|
|
|
2559ee |
|
|
|
2559ee |
export PATH=%{_buildrootdir}/%{bundled_install_path}/bin:$PATH
|
|
|
2559ee |
echo $PKG_CONFIG_PATH
|
|
|
2559ee |
|
|
|
763d03 |
%if 0%{?rhel} == 8
|
|
|
2559ee |
rpm -ivh %{SOURCE403}
|
|
|
763d03 |
%else
|
|
|
763d03 |
rpm -ivh %{SOURCE404}
|
|
|
763d03 |
%endif
|
|
|
805725 |
rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nss.spec
|
|
|
2559ee |
pushd %{_buildrootdir}
|
|
|
2559ee |
#cleanup
|
|
|
2559ee |
install_rpms_to_current_dir nss-3*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-devel*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-pkcs11-devel*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-softokn-3*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-softokn-devel*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-softokn-freebl-3*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-softokn-freebl-devel*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-util-3*.rpm
|
|
|
2559ee |
install_rpms_to_current_dir nss-util-devel*.rpm
|
|
|
2559ee |
popd
|
|
|
2559ee |
%filter_provides_in %{bundled_install_path}/%{_lib}
|
|
|
2559ee |
%filter_requires_in %{bundled_install_path}/%{_lib}
|
|
|
ddd8a0 |
%filter_from_requires /libnss3.so.*/d
|
|
|
ddd8a0 |
%filter_from_requires /libsmime3.so.*/d
|
|
|
ddd8a0 |
%filter_from_requires /libssl3.so.*/d
|
|
|
ddd8a0 |
%filter_from_requires /libnssutil3.so.*/d
|
|
|
ddd8a0 |
%filter_from_requires /libnspr4.so.*/d
|
|
|
2559ee |
find %{_buildrootdir}
|
|
|
ae11a9 |
%endif
|
|
|
ae11a9 |
|
|
|
763d03 |
# Enable toolsets
|
|
|
ae11a9 |
set +e
|
|
|
763d03 |
%if 0%{?rhel} == 8 && %{rhel_minor_version} < 6
|
|
|
763d03 |
%ifarch aarch64
|
|
|
26f3ef |
source scl_source enable gcc-toolset-12
|
|
|
763d03 |
%endif
|
|
|
26f3ef |
%endif
|
|
|
ae11a9 |
%if 0%{?use_dts}
|
|
|
ae11a9 |
source scl_source enable devtoolset-%{dts_version}
|
|
|
ae11a9 |
%endif
|
|
|
763d03 |
%if 0%{?use_rust_ts}
|
|
|
2559ee |
source scl_source enable rust-toolset-%{rust_version}
|
|
|
2559ee |
%endif
|
|
|
763d03 |
%if 0%{?use_nodejs_scl}
|
|
|
2559ee |
source scl_source enable rh-nodejs10
|
|
|
ae11a9 |
%endif
|
|
|
763d03 |
%if 0%{?use_llvm_ts}
|
|
|
26f3ef |
source scl_source enable llvm-toolset-%{llvm_version}
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
%if 0%{?use_python3_scl}
|
|
|
763d03 |
source scl_source enable rh-python38
|
|
|
763d03 |
%endif
|
|
|
e75128 |
|
|
|
26f3ef |
set -e
|
|
|
83ba88 |
env
|
|
|
83ba88 |
which gcc
|
|
|
83ba88 |
which c++
|
|
|
83ba88 |
which g++
|
|
|
83ba88 |
which ld
|
|
|
2559ee |
which nasm
|
|
|
26f3ef |
which node
|
|
|
763d03 |
which python3
|
|
|
763d03 |
# Bundled cbindgen
|
|
|
ea29f4 |
mkdir -p my_rust_vendor
|
|
|
ea29f4 |
cd my_rust_vendor
|
|
|
83ba88 |
%{__tar} xf %{SOURCE2}
|
|
|
ea29f4 |
mkdir -p .cargo
|
|
|
ea29f4 |
cat > .cargo/config <
|
|
|
ea29f4 |
[source.crates-io]
|
|
|
ea29f4 |
replace-with = "vendored-sources"
|
|
|
ea29f4 |
|
|
|
ea29f4 |
[source.vendored-sources]
|
|
|
26f3ef |
directory = "`pwd`"
|
|
|
ea29f4 |
EOL
|
|
|
ea29f4 |
|
|
|
26f3ef |
%ifarch aarch64
|
|
|
26f3ef |
#export RUSTFLAGS="-Cdebuginfo=0 -Clinker=/opt/rh/gcc-toolset-12/root/usr/bin/gcc"
|
|
|
26f3ef |
%endif
|
|
|
ea29f4 |
|
|
|
26f3ef |
env CARGO_HOME=.cargo cargo install cbindgen
|
|
|
26f3ef |
export PATH=`pwd`/.cargo/bin:$PATH
|
|
|
26f3ef |
cd -
|
|
|
763d03 |
|
|
|
763d03 |
# end of Bundled cbindgen
|
|
|
5b75f5 |
|
|
|
ea29f4 |
mkdir %{_buildrootdir}/bin || :
|
|
|
26f3ef |
cp %{SOURCE32} %{_buildrootdir}/bin || :
|
|
|
ea29f4 |
|
|
|
e02199 |
# Update the various config.guess to upstream release for aarch64 support
|
|
|
26f3ef |
# Do not update config.guess in the ./third_party/rust because that would break checksums
|
|
|
26f3ef |
find ./ -path ./third_party/rust -prune -o -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
|
|
|
ae11a9 |
|
|
|
ae11a9 |
MOZ_OPT_FLAGS=$(echo "%{optflags}" | %{__sed} -e 's/-Wall//')
|
|
|
ae11a9 |
#rhbz#1037063
|
|
|
ae11a9 |
# -Werror=format-security causes build failures when -Wno-format is explicitly given
|
|
|
ae11a9 |
# for some sources
|
|
|
ae11a9 |
# Explicitly force the hardening flags for Firefox so it passes the checksec test;
|
|
|
ae11a9 |
# See also https://fedoraproject.org/wiki/Changes/Harden_All_Packages
|
|
|
26f3ef |
%if 0%{?fedora} < 30
|
|
|
ae11a9 |
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wformat-security -Wformat -Werror=format-security"
|
|
|
26f3ef |
%else
|
|
|
26f3ef |
# Workaround for mozbz#1531309
|
|
|
26f3ef |
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-Werror=format-security//')
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
|
|
|
26f3ef |
%if 0%{?fedora} > 30
|
|
|
26f3ef |
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fpermissive"
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
|
|
|
26f3ef |
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fPIC -Wl,-z,relro -Wl,-z,now"
|
|
|
ae11a9 |
%if %{?debug_build}
|
|
|
26f3ef |
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-O2//')
|
|
|
26f3ef |
%endif
|
|
|
83ba88 |
|
|
|
763d03 |
%ifarch %{ix86}
|
|
|
26f3ef |
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-g/-g0/')
|
|
|
26f3ef |
export MOZ_DEBUG_FLAGS=" "
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
|
|
|
763d03 |
%ifarch s390x aarch64 %{ix86}
|
|
|
26f3ef |
MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
|
|
|
26f3ef |
%if 0%{?flatpak}
|
|
|
26f3ef |
# Make sure the linker can find libraries in /app/lib64 as we don't use
|
|
|
26f3ef |
# __global_ldflags that normally sets this.
|
|
|
26f3ef |
MOZ_LINK_FLAGS="$MOZ_LINK_FLAGS -L%{_libdir}"
|
|
|
26f3ef |
%endif
|
|
|
763d03 |
%ifarch %{ix86} %{s390x}
|
|
|
26f3ef |
export RUSTFLAGS="-Cdebuginfo=0"
|
|
|
26f3ef |
echo 'export RUSTFLAGS="-Cdebuginfo=0"' >> .mozconfig
|
|
|
26f3ef |
%endif
|
|
|
2559ee |
|
|
|
2559ee |
%if 0%{?bundle_nss}
|
|
|
2559ee |
mkdir -p %{_buildrootdir}%{bundled_install_path}/%{_lib}
|
|
|
2559ee |
MOZ_LINK_FLAGS="-L%{_buildrootdir}%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
|
|
|
2559ee |
MOZ_LINK_FLAGS="-Wl,-rpath,%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
|
|
|
2559ee |
MOZ_LINK_FLAGS="-Wl,-rpath-link,%{_buildrootdir}%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
|
|
|
1023e2 |
%endif
|
|
|
1023e2 |
|
|
|
26f3ef |
# We don't want thunderbird to use CK_GCM_PARAMS_V3 in nss
|
|
|
26f3ef |
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -DNSS_PKCS11_3_0_STRICT"
|
|
|
e75128 |
|
|
|
2559ee |
echo "export CFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
|
|
|
2559ee |
echo "export CXXFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
|
|
|
2559ee |
echo "export LDFLAGS=\"$MOZ_LINK_FLAGS\"" >> .mozconfig
|
|
|
26f3ef |
echo "export CC=gcc" >> .mozconfig
|
|
|
26f3ef |
echo "export CXX=g++" >> .mozconfig
|
|
|
26f3ef |
echo "export AR=\"gcc-ar\"" >> .mozconfig
|
|
|
26f3ef |
echo "export NM=\"gcc-nm\"" >> .mozconfig
|
|
|
26f3ef |
echo "export RANLIB=\"gcc-ranlib\"" >> .mozconfig
|
|
|
a8a561 |
|
|
|
e75128 |
MOZ_SMP_FLAGS=-j1
|
|
|
26f3ef |
# On x86_64 architectures, Mozilla can build up to 4 jobs at once in parallel,
|
|
|
26f3ef |
# however builds tend to fail on other arches when building in parallel.
|
|
|
763d03 |
#%ifarch %{ix86} s390x aarch64 ppc64le
|
|
|
26f3ef |
#[ -z "$RPM_BUILD_NCPUS" ] && \
|
|
|
26f3ef |
# RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
|
|
|
26f3ef |
#[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
|
|
|
26f3ef |
#%endif
|
|
|
763d03 |
#%ifarch x86_64 ppc64 ppc64le
|
|
|
26f3ef |
[ -z "$RPM_BUILD_NCPUS" ] && \
|
|
|
2559ee |
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
|
|
|
26f3ef |
[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
|
|
|
26f3ef |
[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
|
|
|
26f3ef |
[ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j8
|
|
|
26f3ef |
[ "$RPM_BUILD_NCPUS" -ge 16 ] && MOZ_SMP_FLAGS=-j16
|
|
|
26f3ef |
#%endif
|
|
|
2559ee |
|
|
|
26f3ef |
echo "mk_add_options MOZ_MAKE_FLAGS=\"$MOZ_SMP_FLAGS\"" >> .mozconfig
|
|
|
26f3ef |
echo "mk_add_options MOZ_SERVICES_SYNC=1" >> .mozconfig
|
|
|
26f3ef |
echo "export STRIP=/bin/true" >> .mozconfig
|
|
|
763d03 |
|
|
|
763d03 |
# We could use %%include, but in %%files, %%post and other sections, but in these
|
|
|
763d03 |
# sections it could lead to syntax errors about unclosed %%if. Work around it by
|
|
|
763d03 |
# using the following macro
|
|
|
763d03 |
%define include_file() %{expand:%(cat '%1')}
|
|
|
83ba88 |
|
|
|
83ba88 |
%if 0%{?bundle_nss}
|
|
|
2559ee |
echo "Setting nss flags"
|
|
|
2559ee |
# nss-setup-flags-env.inc
|
|
|
2559ee |
%include_file %{SOURCE401}
|
|
|
2559ee |
export PATH=%{_buildrootdir}/%{bundled_install_path}/bin:$PATH
|
|
|
2559ee |
echo $PKG_CONFIG_PATH
|
|
|
83ba88 |
%endif
|
|
|
ae11a9 |
|
|
|
763d03 |
./mach build -v 2>&1 || exit 1
|
|
|
e75128 |
|
|
|
26f3ef |
#---------------------------------------------------------------------
|
|
|
e75128 |
%install
|
|
|
763d03 |
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system
|
|
|
ae11a9 |
function install_rpms_to_current_dir() {
|
|
|
ae11a9 |
PACKAGE_RPM=$(eval echo $1)
|
|
|
ae11a9 |
PACKAGE_DIR=%{_rpmdir}
|
|
|
ae11a9 |
|
|
|
ae11a9 |
if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
|
|
|
ae11a9 |
# Hack for tps tests
|
|
|
ae11a9 |
ARCH_STR=%{_arch}
|
|
|
2559ee |
%ifarch %{ix86}
|
|
|
ae11a9 |
ARCH_STR="i?86"
|
|
|
ae11a9 |
%endif
|
|
|
2559ee |
PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
|
|
|
ae11a9 |
fi
|
|
|
ae11a9 |
|
|
|
ae11a9 |
for package in $(ls $PACKAGE_DIR/$PACKAGE_RPM)
|
|
|
ae11a9 |
do
|
|
|
ae11a9 |
echo "$package"
|
|
|
ae11a9 |
rpm2cpio "$package" | cpio -idu
|
|
|
ae11a9 |
done
|
|
|
ae11a9 |
}
|
|
|
ae11a9 |
|
|
|
83ba88 |
%if 0%{?bundle_nss}
|
|
|
83ba88 |
pushd %{buildroot}
|
|
|
83ba88 |
install_rpms_to_current_dir nspr-4*.rpm
|
|
|
83ba88 |
install_rpms_to_current_dir nss-3*.rpm
|
|
|
83ba88 |
install_rpms_to_current_dir nss-softokn-3*.rpm
|
|
|
83ba88 |
install_rpms_to_current_dir nss-softokn-freebl-3*.rpm
|
|
|
83ba88 |
install_rpms_to_current_dir nss-util-3*.rpm
|
|
|
2559ee |
|
|
|
83ba88 |
# cleanup unecessary nss files
|
|
|
2559ee |
rm -rf %{buildroot}/%{bundled_install_path}/lib/dracut
|
|
|
2559ee |
rm -rf %{buildroot}/%{bundled_install_path}/%{_lib}/nss
|
|
|
2559ee |
rm -rf %{buildroot}/%{bundled_install_path}/%{_lib}/share
|
|
|
2559ee |
rm -rf %{buildroot}/%{bundled_install_path}/share
|
|
|
83ba88 |
rm -rf %{buildroot}/etc/pki
|
|
|
83ba88 |
rm -rf %{buildroot}/usr/lib/.build-id
|
|
|
83ba88 |
rm -rf %{buildroot}/etc/crypto-policies
|
|
|
83ba88 |
popd
|
|
|
83ba88 |
%endif
|
|
|
83ba88 |
|
|
|
ae11a9 |
DESTDIR=%{buildroot} make -C objdir install
|
|
|
e75128 |
|
|
|
763d03 |
%{__mkdir_p} %{buildroot}{%{_libdir},%{_bindir},%{_datadir}/applications}
|
|
|
e75128 |
|
|
|
ae11a9 |
desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE20}
|
|
|
ae11a9 |
|
|
|
ae11a9 |
# set up the thunderbird start script
|
|
|
763d03 |
%{__rm} -rf %{buildroot}%{_bindir}/thunderbird
|
|
|
763d03 |
%{__sed} -e 's,__PREFIX__,%{_prefix},g' %{SOURCE21} > %{buildroot}%{_bindir}/thunderbird
|
|
|
763d03 |
%{__chmod} 755 %{buildroot}%{_bindir}/thunderbird
|
|
|
763d03 |
|
|
|
763d03 |
%if 0%{?flatpak}
|
|
|
763d03 |
sed -i -e 's|%FLATPAK_ENV_VARS%|export TMPDIR="$XDG_CACHE_HOME/tmp"|' %{buildroot}%{_bindir}/thunderbird
|
|
|
763d03 |
%else
|
|
|
763d03 |
sed -i -e 's|%FLATPAK_ENV_VARS%||' %{buildroot}%{_bindir}/thunderbird
|
|
|
763d03 |
%endif
|
|
|
763d03 |
|
|
|
26f3ef |
# Run firefox under wayland only on RHEL9 and newer
|
|
|
26f3ef |
%if 0%{?rhel} < 9
|
|
|
26f3ef |
sed -i -e 's|%DISABLE_WAYLAND_PLACEHOLDER%|export MOZ_DISABLE_WAYLAND=1|' %{buildroot}%{_bindir}/thunderbird
|
|
|
26f3ef |
%else
|
|
|
26f3ef |
sed -i -e 's|%DISABLE_WAYLAND_PLACEHOLDER%||' %{buildroot}%{_bindir}/thunderbird
|
|
|
26f3ef |
%endif
|
|
|
e75128 |
|
|
|
26f3ef |
# set up our default preferences
|
|
|
26f3ef |
%{__cat} %{SOURCE12} | %{__sed} -e 's,THUNDERBIRD_RPM_VR,%{version}-%{release},g' \
|
|
|
26f3ef |
-e 's,myspell,%{dictionarydir},g' \
|
|
|
26f3ef |
> $RPM_BUILD_ROOT/rh-default-prefs
|
|
|
26f3ef |
%{__install} -D $RPM_BUILD_ROOT/rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/greprefs/all-redhat.js
|
|
|
26f3ef |
%{__install} -D $RPM_BUILD_ROOT/rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/all-redhat.js
|
|
|
26f3ef |
%{__rm} $RPM_BUILD_ROOT/rh-default-prefs
|
|
|
a8a561 |
|
|
|
26f3ef |
%{__rm} -f $RPM_BUILD_ROOT%{_bindir}/thunderbird-config
|
|
|
763d03 |
%{__rm} -f %{buildroot}/%{mozappdir}/update-settings.ini
|
|
|
763d03 |
|
|
|
763d03 |
# install icons
|
|
|
763d03 |
for s in 16 22 24 32 48 64 128 256; do
|
|
|
763d03 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/${s}x${s}/apps
|
|
|
763d03 |
%{__cp} -p comm/mail/branding/%{name}/default${s}.png \
|
|
|
763d03 |
%{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/thunderbird.png
|
|
|
763d03 |
done
|
|
|
763d03 |
|
|
|
763d03 |
# Install high contrast icon
|
|
|
763d03 |
%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/symbolic/apps
|
|
|
763d03 |
%{__cp} -p %{SOURCE25} \
|
|
|
763d03 |
%{buildroot}%{_datadir}/icons/hicolor/symbolic/apps
|
|
|
e75128 |
|
|
|
e75128 |
# own mozilla plugin dir (#135050)
|
|
|
26f3ef |
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
|
|
|
e75128 |
|
|
|
e75128 |
# own extension directories
|
|
|
26f3ef |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{thunderbird_app_id}
|
|
|
26f3ef |
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{thunderbird_app_id}
|
|
|
26f3ef |
|
|
|
26f3ef |
# System config dir (#1525709)
|
|
|
26f3ef |
%{__mkdir_p} %{buildroot}%{_sysconfdir}/%{name}/pref
|
|
|
e75128 |
|
|
|
e75128 |
# Install langpacks
|
|
|
763d03 |
echo > %{name}.lang
|
|
|
763d03 |
%if %{with langpacks}
|
|
|
ae11a9 |
%{__mkdir_p} %{buildroot}%{langpackdir}
|
|
|
ae11a9 |
%{__tar} xf %{SOURCE1}
|
|
|
e75128 |
for langpack in `ls thunderbird-langpacks/*.xpi`; do
|
|
|
e75128 |
language=`basename $langpack .xpi`
|
|
|
e75128 |
extensionID=langpack-$language@thunderbird.mozilla.org
|
|
|
a8a561 |
%{__mkdir_p} $extensionID
|
|
|
2559ee |
unzip -qq $langpack -d $extensionID
|
|
|
a8a561 |
find $extensionID -type f | xargs chmod 644
|
|
|
e75128 |
|
|
|
a8a561 |
cd $extensionID
|
|
|
2559ee |
zip -qq -r9mX ../${extensionID}.xpi *
|
|
|
a8a561 |
cd -
|
|
|
a8a561 |
|
|
|
ae11a9 |
%{__install} -m 644 ${extensionID}.xpi %{buildroot}%{langpackdir}
|
|
|
e75128 |
language=`echo $language | sed -e 's/-/_/g'`
|
|
|
ae11a9 |
echo "%%lang($language) %{langpackdir}/${extensionID}.xpi" >> %{name}.lang
|
|
|
e75128 |
done
|
|
|
e75128 |
%{__rm} -rf thunderbird-langpacks
|
|
|
83ba88 |
%endif
|
|
|
e75128 |
|
|
|
26f3ef |
|
|
|
e75128 |
# Get rid of devel package and its debugsymbols
|
|
|
26f3ef |
%{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-devel-%{version}
|
|
|
e75128 |
|
|
|
e75128 |
# Copy over the LICENSE
|
|
|
26f3ef |
install -c -m 644 LICENSE $RPM_BUILD_ROOT%{mozappdir}
|
|
|
e75128 |
|
|
|
ae11a9 |
# Use the system hunspell dictionaries
|
|
|
26f3ef |
%{__rm} -rf $RPM_BUILD_ROOT/%{mozappdir}/dictionaries
|
|
|
26f3ef |
ln -s $(pkg-config --variable prefix hunspell)/share/%{dictionarydir} $RPM_BUILD_ROOT%{mozappdir}/dictionaries
|
|
|
e75128 |
|
|
|
e75128 |
# ghost files
|
|
|
26f3ef |
%{__mkdir_p} $RPM_BUILD_ROOT%{mozappdir}/components
|
|
|
26f3ef |
touch $RPM_BUILD_ROOT%{mozappdir}/components/compreg.dat
|
|
|
26f3ef |
touch $RPM_BUILD_ROOT%{mozappdir}/components/xpti.dat
|
|
|
e02199 |
|
|
|
b0b627 |
# Removing librnp.so - we cannot deliver librnp with botan crypto backend RHELs
|
|
|
b0b627 |
%if !%{?use_openssl_for_librnp}
|
|
|
26f3ef |
%{__rm} -rf %{buildroot}%{mozappdir}/librnp.so %{buildroot}%{mozappdir}/rnp-cli %{buildroot}%{mozappdir}/rnpkeys
|
|
|
b0b627 |
%endif
|
|
|
b0b627 |
|
|
|
56140c |
# Register as an application to be visible in the software center
|
|
|
26f3ef |
mkdir -p $RPM_BUILD_ROOT%{_datadir}/metainfo
|
|
|
26f3ef |
%{__cp} -p comm/mail/branding/%{name}/net.thunderbird.Thunderbird.appdata.xml $RPM_BUILD_ROOT%{_datadir}/metainfo/thunderbird.appdata.xml
|
|
|
26f3ef |
sed -i -e 's|<icon .*|<icon type="stock">thunderbird</icon>|' "$RPM_BUILD_ROOT%{_datadir}/metainfo/thunderbird.appdata.xml"
|
|
|
946e85 |
|
|
|
22011a |
# Clean the created bundled rpms.
|
|
|
ae11a9 |
rm -rf %{_srcrpmdir}/libffi*.src.rpm
|
|
|
ae11a9 |
find %{_rpmdir} -name "libffi*.rpm" -delete
|
|
|
ea29f4 |
rm -rf %{_srcrpmdir}/openssl*.src.rpm
|
|
|
ea29f4 |
find %{_rpmdir} -name "openssl*.rpm" -delete
|
|
|
83ba88 |
rm -rf %{_srcrpmdir}/nss*.src.rpm
|
|
|
83ba88 |
find %{_rpmdir} -name "nss*.rpm" -delete
|
|
|
83ba88 |
rm -rf %{_srcrpmdir}/nspr*.src.rpm
|
|
|
83ba88 |
find %{_rpmdir} -name "nspr*.rpm" -delete
|
|
|
e75128 |
|
|
|
22011a |
#===============================================================================
|
|
|
22011a |
|
|
|
e75128 |
%post
|
|
|
e75128 |
update-desktop-database &> /dev/null || :
|
|
|
e75128 |
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
e75128 |
|
|
|
e75128 |
%postun
|
|
|
2559ee |
update-desktop-database &> /dev/null || :
|
|
|
e75128 |
if [ $1 -eq 0 ] ; then
|
|
|
e75128 |
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
|
|
e75128 |
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
763d03 |
%{__rm} -rf %{langpackdir}
|
|
|
e75128 |
fi
|
|
|
e75128 |
|
|
|
e75128 |
%posttrans
|
|
|
e75128 |
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|
|
e75128 |
|
|
|
e75128 |
#===============================================================================
|
|
|
2559ee |
%files -f %{name}.lang
|
|
|
e75128 |
%defattr(-,root,root,-)
|
|
|
e75128 |
%attr(755,root,root) %{_bindir}/thunderbird
|
|
|
26f3ef |
%{_datadir}/metainfo/*.appdata.xml
|
|
|
a8a561 |
%attr(644,root,root) %{_datadir}/applications/thunderbird.desktop
|
|
|
26f3ef |
%dir %{_sysconfdir}/%{name}
|
|
|
26f3ef |
%dir %{_sysconfdir}/%{name}/*
|
|
|
e75128 |
%dir %{_datadir}/mozilla/extensions/%{thunderbird_app_id}
|
|
|
e75128 |
%dir %{_libdir}/mozilla/extensions/%{thunderbird_app_id}
|
|
|
e75128 |
%dir %{mozappdir}
|
|
|
e75128 |
%doc %{mozappdir}/LICENSE
|
|
|
e75128 |
%{mozappdir}/chrome
|
|
|
e75128 |
%dir %{mozappdir}/components
|
|
|
e75128 |
%ghost %{mozappdir}/components/compreg.dat
|
|
|
e75128 |
%ghost %{mozappdir}/components/xpti.dat
|
|
|
e75128 |
%{mozappdir}/omni.ja
|
|
|
e75128 |
%{mozappdir}/plugin-container
|
|
|
e75128 |
%{mozappdir}/defaults
|
|
|
e75128 |
%{mozappdir}/dictionaries
|
|
|
763d03 |
%if %{with langpacks}
|
|
|
26f3ef |
%dir %{langpackdir}
|
|
|
26f3ef |
%endif
|
|
|
e75128 |
%{mozappdir}/greprefs
|
|
|
e75128 |
%{mozappdir}/isp
|
|
|
e75128 |
%{mozappdir}/thunderbird-bin
|
|
|
e75128 |
%{mozappdir}/thunderbird
|
|
|
e75128 |
%{mozappdir}/*.so
|
|
|
e75128 |
%{mozappdir}/platform.ini
|
|
|
e75128 |
%{mozappdir}/application.ini
|
|
|
e75128 |
%exclude %{mozappdir}/removed-files
|
|
|
e75128 |
%{_datadir}/icons/hicolor/16x16/apps/thunderbird.png
|
|
|
e75128 |
%{_datadir}/icons/hicolor/22x22/apps/thunderbird.png
|
|
|
e75128 |
%{_datadir}/icons/hicolor/24x24/apps/thunderbird.png
|
|
|
e75128 |
%{_datadir}/icons/hicolor/256x256/apps/thunderbird.png
|
|
|
e75128 |
%{_datadir}/icons/hicolor/32x32/apps/thunderbird.png
|
|
|
e75128 |
%{_datadir}/icons/hicolor/48x48/apps/thunderbird.png
|
|
|
26f3ef |
%{_datadir}/icons/hicolor/64x64/apps/thunderbird.png
|
|
|
26f3ef |
%{_datadir}/icons/hicolor/128x128/apps/thunderbird.png
|
|
|
26f3ef |
%{_datadir}/icons/hicolor/symbolic/apps/thunderbird-symbolic.svg
|
|
|
26f3ef |
%if !%{?system_nss}
|
|
|
26f3ef |
%{mozappdir}/*.chk
|
|
|
ae11a9 |
%endif
|
|
|
26f3ef |
%{mozappdir}/dependentlibs.list
|
|
|
26f3ef |
%{mozappdir}/fonts
|
|
|
26f3ef |
%{mozappdir}/pingsender
|
|
|
b0b627 |
%if %{?use_openssl_for_librnp}
|
|
|
b0b627 |
%{mozappdir}/librnp.so
|
|
|
b0b627 |
%{mozappdir}/rnp-cli
|
|
|
b0b627 |
%{mozappdir}/rnpkeys
|
|
|
b0b627 |
%endif
|
|
|
763d03 |
%{mozappdir}/glxtest
|
|
|
763d03 |
%{mozappdir}/vaapitest
|
|
|
ae11a9 |
|
|
|
83ba88 |
%if 0%{?bundle_nss}
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libfreebl*
|
|
|
763d03 |
%{mozappdir}/bundled/%{_lib}/libnss*
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libsmime3*
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libsoftokn*
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libssl3*
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libnspr4.so
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libplc4.so
|
|
|
83ba88 |
%{mozappdir}/bundled/%{_lib}/libplds4.so
|
|
|
83ba88 |
%endif
|
|
|
e75128 |
|
|
|
e75128 |
#===============================================================================
|
|
|
e75128 |
|
|
|
e75128 |
%changelog
|
|
|
3bd749 |
* Tue Jun 18 2024 Eike Rathke <erack@redhat.com> - 115.12.1-1
|
|
|
3bd749 |
- Update to 115.12.1 build1
|
|
|
3bd749 |
|
|
|
3bd749 |
* Tue Jun 11 2024 Eike Rathke <erack@redhat.com> - 115.12.0-2
|
|
|
3bd749 |
- Update to 115.12.0 build2
|
|
|
3bd749 |
|
|
|
3bd749 |
* Mon Jun 10 2024 Eike Rathke <erack@redhat.com> - 115.12.0-1
|
|
|
3bd749 |
- Update to 115.12.0 build1
|
|
|
3bd749 |
|
|
|
09032f |
* Mon May 13 2024 Eike Rathke <erack@redhat.com> - 115.11.0-1
|
|
|
09032f |
- Update to 115.11.0 build2
|
|
|
09032f |
|
|
|
2975ad |
* Mon Apr 15 2024 Eike Rathke <erack@redhat.com> - 115.10.0-2
|
|
|
2975ad |
- Update to 115.10.0 build2
|
|
|
2975ad |
|
|
|
2975ad |
* Fri Apr 12 2024 Eike Rathke <erack@redhat.com> - 115.10.0-1
|
|
|
2975ad |
- Update to 115.10.0 build1
|
|
|
2975ad |
- Revert expat CVE-2023-52425 fix
|
|
|
2975ad |
|
|
|
c22f5f |
* Mon Mar 18 2024 Eike Rathke <erack@redhat.com> - 115.9.0-1
|
|
|
c22f5f |
- Update to 115.9.0 build1
|
|
|
c22f5f |
- Fix expat CVE-2023-52425
|
|
|
c22f5f |
|
|
|
f82f3b |
* Mon Feb 19 2024 Eike Rathke <erack@redhat.com> - 115.8.0-1
|
|
|
f82f3b |
- Update to 115.8.0 build1
|
|
|
f82f3b |
|
|
|
210803 |
* Mon Jan 22 2024 Eike Rathke <erack@redhat.com> - 115.7.0-1
|
|
|
210803 |
- Update to 115.7.0 build1
|
|
|
210803 |
|
|
|
22011a |
* Mon Dec 18 2023 Eike Rathke <erack@redhat.com> - 115.6.0-1
|
|
|
22011a |
- Update to 115.6.0 build2
|
|
|
22011a |
|
|
|
cb713e |
* Tue Nov 21 2023 Eike Rathke <erack@redhat.com> - 115.5.0-1
|
|
|
cb713e |
- Update to 115.5.0 build1
|
|
|
cb713e |
|
|
|
c26c11 |
* Wed Oct 25 2023 Eike Rathke <erack@redhat.com> - 115.4.1-1
|
|
|
c26c11 |
- Update to 115.4.1 build1
|
|
|
c26c11 |
|
|
|
c26c11 |
* Tue Oct 24 2023 Anton Bobrov <abobrov@redhat.com> - 115.4.0-3
|
|
|
c26c11 |
- Update to 115.4.0 build3
|
|
|
c26c11 |
|
|
|
c26c11 |
* Sat Oct 21 2023 Eike Rathke <erack@redhat.com> - 115.4.0-2
|
|
|
c26c11 |
- Update to 115.4.0 build2
|
|
|
c26c11 |
|
|
|
c26c11 |
* Fri Oct 20 2023 Eike Rathke <erack@redhat.com> - 115.4.0-1
|
|
|
c26c11 |
- Update to 115.4.0 build1
|
|
|
c26c11 |
|
|
|
763d03 |
* Fri Sep 29 2023 Eike Rathke <erack@redhat.com> - 115.3.1-1
|
|
|
763d03 |
- Update to 115.3.1 build1
|
|
|
91ba48 |
|
|
|
763d03 |
* Wed Sep 27 2023 Eike Rathke <erack@redhat.com> - 115.3.0-1
|
|
|
763d03 |
- Update to 115.3.0
|
|
|
a63d08 |
|
|
|
763d03 |
* Fri Sep 8 2023 Jan Horak <jhorak@redhat.com> - 115.2.1-5
|
|
|
763d03 |
- Update to 115.2.1
|
|
|
381cc4 |
|
|
|
29776b |
* Thu May 04 2023 Eike Rathke <erack@redhat.com> - 102.11.0-1
|
|
|
29776b |
- Update to 102.11.0 build1
|
|
|
01c8f1 |
|
|
|
1f584b |
* Tue Apr 11 2023 Eike Rathke <erack@redhat.com> - 102.10.0-2
|
|
|
1f584b |
- Update to 102.10.0 build2
|
|
|
61b619 |
|
|
|
1f584b |
* Thu Apr 06 2023 Eike Rathke <erack@redhat.com> - 102.10.0-1
|
|
|
1f584b |
- Update to 102.10.0 build1
|
|
|
1f584b |
|
|
|
1f584b |
* Mon Mar 13 2023 Eike Rathke <erack@redhat.com> - 102.9.0-2
|
|
|
e33de5 |
- Update to 102.9.0 build1
|
|
|
5cc60b |
|
|
|
5ba6ec |
* Wed Feb 15 2023 Eike Rathke <erack@redhat.com> - 102.8.0-2
|
|
|
5ba6ec |
- Update to 102.8.0 build2
|
|
|
5ba6ec |
|
|
|
5ba6ec |
* Fri Feb 10 2023 Eike Rathke <erack@redhat.com> - 102.8.0-1
|
|
|
5ba6ec |
- Update to 102.8.0 build1
|
|
|
724040 |
|
|
|
9fa810 |
* Tue Jan 31 2023 Eike Rathke <erack@redhat.com> - 102.7.1-2
|
|
|
9fa810 |
- Update to 102.7.1 build2
|
|
|
175df6 |
|
|
|
f1a604 |
* Tue Jan 24 2023 Eike Rathke <erack@redhat.com> - 102.7.1-1
|
|
|
f1a604 |
- Update to 102.7.1 build1
|
|
|
f1a604 |
|
|
|
f1a604 |
* Mon Jan 16 2023 Eike Rathke <erack@redhat.com> - 102.7.0-1
|
|
|
f1a604 |
- Update to 102.7.0 build1
|
|
|
74bb3b |
|
|
|
b0b627 |
* Tue Dec 13 2022 Eike Rathke <erack@redhat.com> - 102.6.0-2
|
|
|
b0b627 |
- Update to 102.6.0 build2
|
|
|
b0b627 |
|
|
|
b0b627 |
* Fri Dec 09 2022 Eike Rathke <erack@redhat.com> - 102.6.0-1
|
|
|
b0b627 |
- Update to 102.6.0 build1
|
|
|
b0b627 |
|
|
|
b0b627 |
* Tue Nov 29 2022 Jan Horak <jhorak@redhat.com> - 102.5.0-3
|
|
|
b0b627 |
- Use openssl for the librnp crypto backend to enable the openpgp encryption
|
|
|
5c1bd7 |
|
|
|
063d1a |
* Tue Nov 15 2022 Eike Rathke <erack@redhat.com> - 102.5.0-2
|
|
|
063d1a |
- Update to 102.5.0 build2
|
|
|
063d1a |
|
|
|
063d1a |
* Fri Nov 11 2022 Eike Rathke <erack@redhat.com> - 102.5.0-1
|
|
|
063d1a |
- Update to 102.5.0 build1
|
|
|
ce00f0 |
|
|
|
8e46f5 |
* Mon Oct 17 2022 Eike Rathke <erack@redhat.com> - 102.4.0-1
|
|
|
8e46f5 |
- Update to 102.4.0 build1
|
|
|
61f778 |
|
|
|
0423e8 |
* Wed Oct 12 2022 Jan Horak <jhorak@redhat.com> - 102.3.0-4
|
|
|
0423e8 |
- Fix for expat CVE-2022-40674
|
|
|
7c3a7f |
|
|
|
26f3ef |
* Fri Sep 16 2022 Jan Horak <jhorak@redhat.com> - 102.3.0-3
|
|
|
26f3ef |
- Update to 102.3.0 build1
|
|
|
26f3ef |
|
|
|
fd589b |
* Fri Aug 19 2022 Eike Rathke <erack@redhat.com> - 91.13.0-1
|
|
|
fd589b |
- Update to 91.13.0 build1
|
|
|
fd589b |
|
|
|
670c5a |
* Mon Jul 25 2022 Eike Rathke <erack@redhat.com> - 91.12.0-1
|
|
|
670c5a |
- Update to 91.12.0 build1
|
|
|
670c5a |
|
|
|
fad819 |
* Tue Jun 28 2022 Eike Rathke <erack@redhat.com> - 91.11.0-2
|
|
|
fad819 |
- Update to 91.11.0 build2
|
|
|
fad819 |
|
|
|
fad819 |
* Thu Jun 23 2022 Eike Rathke <erack@redhat.com> - 91.11.0-1
|
|
|
fad819 |
- Update to 91.11.0 build1
|
|
|
fad819 |
|
|
|
81679c |
* Mon May 30 2022 Eike Rathke <erack@redhat.com> - 91.10.0-1
|
|
|
81679c |
- Update to 91.10.0 build1
|
|
|
81679c |
|
|
|
093384 |
* Mon May 23 2022 Jan Horak <jhorak@redhat.com> - 91.9.1-1
|
|
|
093384 |
- Update to 91.9.1 build1
|
|
|
093384 |
|
|
|
35cad3 |
* Tue May 03 2022 Eike Rathke <erack@redhat.com> - 91.9.0-3
|
|
|
35cad3 |
- Update to 91.9.0 build3
|
|
|
35cad3 |
|
|
|
35cad3 |
* Mon May 02 2022 Eike Rathke <erack@redhat.com> - 91.9.0-2
|
|
|
35cad3 |
- Update to 91.9.0 build2
|
|
|
35cad3 |
|
|
|
35cad3 |
* Thu Apr 28 2022 Eike Rathke <erack@redhat.com> - 91.9.0-1
|
|
|
35cad3 |
- Update to 91.9.0
|
|
|
35cad3 |
|
|
|
634372 |
* Tue Apr 05 2022 Eike Rathke <erack@redhat.com> - 91.8.0-1
|
|
|
634372 |
- Update to 91.8.0
|
|
|
634372 |
|
|
|
18ef8e |
* Tue Mar 08 2022 Eike Rathke <erack@redhat.com> - 91.7.0-2
|
|
|
18ef8e |
- Update to 91.7.0 build2
|
|
|
18ef8e |
|
|
|
18ef8e |
* Thu Mar 03 2022 Eike Rathke <erack@redhat.com> - 91.7.0-1
|
|
|
18ef8e |
- Update to 91.7.0 build1
|
|
|
18ef8e |
|
|
|
26f3ef |
* Fri Feb 11 2022 Jan Horak <jhorak@redhat.com> - 91.6.0-2
|
|
|
26f3ef |
- Move appdata to metainfo and use stock icon instead of remote
|
|
|
26f3ef |
|
|
|
56140c |
* Mon Feb 07 2022 Eike Rathke <erack@redhat.com> - 91.6.0-1
|
|
|
56140c |
- Update to 91.6.0 build1
|
|
|
56140c |
|
|
|
26f3ef |
* Tue Jan 18 2022 Jan Horak <jhorak@redhat.com> - 91.5.0-3
|
|
|
26f3ef |
- Using upstream appdata file
|
|
|
26f3ef |
|
|
|
26f3ef |
* Fri Jan 14 2022 Jan Horak <jhorak@redhat.com> - 91.5.0-2
|
|
|
26f3ef |
- Enabled optimalization for s390x
|
|
|
26f3ef |
|
|
|
805725 |
* Fri Jan 07 2022 Eike Rathke <erack@redhat.com> - 91.5.0-1
|
|
|
805725 |
- Update to 91.5.0 build1
|
|
|
805725 |
|
|
|
9d6c67 |
* Mon Dec 06 2021 Eike Rathke <erack@redhat.com> - 91.4.0-2
|
|
|
9d6c67 |
- Update to 91.4.0 build2
|
|
|
9d6c67 |
|
|
|
9d6c67 |
* Wed Dec 01 2021 Eike Rathke <erack@redhat.com> - 91.4.0-1
|
|
|
9d6c67 |
- Update to 91.4.0 build1
|
|
|
9d6c67 |
|
|
|
d4e5a1 |
* Tue Nov 02 2021 Eike Rathke <erack@redhat.com> - 91.3.0-2
|
|
|
9d6c67 |
- Update to 91.3.0 build2
|
|
|
d4e5a1 |
|
|
|
d4e5a1 |
* Mon Nov 01 2021 Eike Rathke <erack@redhat.com> - 91.3.0-1
|
|
|
d4e5a1 |
- Update to 91.3.0 build1
|
|
|
d4e5a1 |
|
|
|
26f3ef |
* Fri Oct 08 2021 Eike Rathke <erack@redhat.com> - 91.2.0-1
|
|
|
26f3ef |
- Update to 91.2.0
|
|
|
2559ee |
|
|
|
26f3ef |
* Tue Sep 07 2021 Eike Rathke <erack@redhat.com> - 78.14.0-1
|
|
|
26f3ef |
- Update to 78.14.0
|
|
|
2559ee |
|
|
|
26f3ef |
* Thu Aug 19 2021 Carlos O'Donell <codonell@redhat.com> - 78.13.0-2
|
|
|
26f3ef |
- Rebuilt for libffi 3.4.2 SONAME transition.
|
|
|
26f3ef |
Related: rhbz#1891914
|
|
|
2559ee |
|
|
|
26f3ef |
* Tue Aug 10 2021 Eike Rathke <erack@redhat.com> - 78.13.0-1
|
|
|
26f3ef |
- Update to 78.13.0
|
|
|
8120af |
|
|
|
26f3ef |
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 78.12.0-4
|
|
|
26f3ef |
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
26f3ef |
Related: rhbz#1991688
|
|
|
8120af |
|
|
|
26f3ef |
* Fri Jul 30 2021 Tomas Popela <tpopela@redhat.com> - 78.12.0-3
|
|
|
26f3ef |
- Add script to process the official tarball to comply with PELC review
|
|
|
26f3ef |
- Fix the build with newer glibc
|
|
|
524d8d |
|
|
|
946e85 |
* Mon Jul 12 2021 Eike Rathke <erack@redhat.com> - 78.12.0-2
|
|
|
946e85 |
- Update to 78.12.0 build2
|
|
|
946e85 |
|
|
|
946e85 |
* Thu Jul 08 2021 Eike Rathke <erack@redhat.com> - 78.12.0-1
|
|
|
946e85 |
- Update to 78.12.0 build1
|
|
|
946e85 |
|
|
|
26f3ef |
* Wed Jun 30 2021 Jan Horak <jhorak@redhat.com> - 78.11.0-2
|
|
|
26f3ef |
- Added bundled libraries, update to 78.11
|
|
|
99d862 |
|
|
|
26f3ef |
* Tue Jun 22 2021 Mohan Boddu <mboddu@redhat.com> - 78.8.0-5
|
|
|
26f3ef |
- Rebuilt for RHEL 9 BETA for openssl 3.0
|
|
|
26f3ef |
Related: rhbz#1971065
|
|
|
7be85a |
|
|
|
26f3ef |
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 78.8.0-4
|
|
|
26f3ef |
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
26f3ef |
- Fixing MOZ_SMP_FLAGS
|
|
|
dcefa4 |
|
|
|
26f3ef |
* Mon Mar 01 2021 Jan Horak <jhorak@redhat.com> - 78.8.0-2
|
|
|
26f3ef |
- Removed autoconf213 dependency
|
|
|
dcefa4 |
|
|
|
26f3ef |
* Mon Feb 22 2021 Jan Horak <jhorak@redhat.com> - 78.8.0-1
|
|
|
cc17c4 |
- Update to 78.8.0 build1
|
|
|
cc17c4 |
|
|
|
114730 |
* Tue Jan 12 2021 Eike Rathke <erack@redhat.com> - 78.6.1-1
|
|
|
114730 |
- Update to 78.6.1
|
|
|
114730 |
|
|
|
f5dec3 |
* Tue Dec 15 2020 Eike Rathke <erack@redhat.com> - 78.6.0-1
|
|
|
f5dec3 |
- Update to 78.6.0
|
|
|
f5dec3 |
|
|
|
f3e046 |
* Fri Dec 04 2020 Jan Horak <jhorak@redhat.com> - 78.5.1-1
|
|
|
f3e046 |
- Update to 78.5.1 build1
|
|
|
f3e046 |
|
|
|
61b76d |
* Wed Nov 18 2020 Eike Rathke <erack@redhat.com> - 78.5.0-1
|
|
|
61b76d |
- Update to 78.5.0 build3
|
|
|
61b76d |
|
|
|
ddd8a0 |
* Thu Nov 12 2020 Eike Rathke <erack@redhat.com> - 78.4.3-1
|
|
|
ddd8a0 |
- Update to 78.4.3
|
|
|
ddd8a0 |
|
|
|
8a9d71 |
* Wed Oct 21 2020 Eike Rathke <erack@redhat.com> - 78.4.0-1
|
|
|
8a9d71 |
- Update to 78.4.0 build1
|
|
|
8a9d71 |
- Disabled telemetry
|
|
|
8a9d71 |
|
|
|
83ba88 |
* Tue Sep 29 2020 Jan Horak <jhorak@redhat.com> - 78.3.1-1
|
|
|
83ba88 |
- Update to 78.3.1 build1
|
|
|
83ba88 |
|
|
|
83ba88 |
* Sat Sep 19 2020 Jan Horak <jhorak@redhat.com> - 78.3.0-3
|
|
|
83ba88 |
- Update to 78.3.0 build1
|
|
|
83ba88 |
- Remove librdp.so as long as we cannot ship it in RHEL
|
|
|
83ba88 |
|
|
|
83ba88 |
* Tue Sep 08 2020 Jan Horak <jhorak@redhat.com> - 78.2.1-1
|
|
|
83ba88 |
- Update to 78.2.1 build1
|
|
|
83ba88 |
|
|
|
4bc6cd |
* Wed Sep 02 2020 Jan Horak <jhorak@redhat.com> - 68.12.0-1
|
|
|
4bc6cd |
- Update to 68.12.0 build1
|
|
|
4bc6cd |
|
|
|
7020d1 |
* Tue Aug 04 2020 Jan Horak <jhorak@redhat.com> - 68.11.0-1
|
|
|
7020d1 |
- Update to 68.11.0 build1
|
|
|
7020d1 |
|
|
|
d69745 |
* Wed Jul 08 2020 Jan Horak <jhorak@redhat.com> - 68.10.0-1
|
|
|
d69745 |
- Update to 68.10.0 build1
|
|
|
d69745 |
|
|
|
307cc4 |
* Fri Jun 05 2020 Jan Horak <jhorak@redhat.com> - 68.9.0-1
|
|
|
307cc4 |
- Update to 68.9.0 build1
|
|
|
307cc4 |
|
|
|
69ffed |
* Tue May 05 2020 Jan Horak <jhorak@redhat.com> - 68.8.0-1
|
|
|
69ffed |
- Update to 68.8.0 build2
|
|
|
69ffed |
|
|
|
0b466a |
* Tue Apr 14 2020 Jan Horak <jhorak@redhat.com> - 68.7.0-1
|
|
|
0b466a |
- Update to 68.7.0 build1
|
|
|
0b466a |
|
|
|
4f0c3e |
* Fri Mar 13 2020 Jan Horak <jhorak@redhat.com> - 68.6.0-1
|
|
|
4f0c3e |
- Update to 68.6.0 build2
|
|
|
4f0c3e |
|
|
|
ac8db7 |
* Thu Feb 13 2020 Jan Horak <jhorak@redhat.com> - 68.5.0-1
|
|
|
ac8db7 |
- Update to 68.5.0 build1
|
|
|
ac8db7 |
|
|
|
1023e2 |
* Mon Jan 13 2020 Jan Horak <jhorak@redhat.com> - 68.4.1-2
|
|
|
1023e2 |
- Update to 68.4.1 build1
|
|
|
1023e2 |
|
|
|
1023e2 |
* Mon Dec 02 2019 Jan Horak <jhorak@redhat.com> - 68.3.0-2
|
|
|
82b545 |
- Update to 68.3.0 build2
|
|
|
82b545 |
|
|
|
82b545 |
* Fri Oct 25 2019 Jan Horak <jhorak@redhat.com> - 68.2.0-2
|
|
|
82b545 |
- Added patch for TLS 1.3 support.
|
|
|
82b545 |
|
|
|
ea29f4 |
* Tue Oct 22 2019 Jan Horak <jhorak@redhat.com> - 68.2.0-1
|
|
|
ea29f4 |
- Update to 68.2.0
|
|
|
ea29f4 |
|
|
|
ea29f4 |
* Thu Oct 3 2019 Jan Horak <jhorak@redhat.com> - 68.1.1-2
|
|
|
ea29f4 |
- Update to 68.1.1
|
|
|
ea29f4 |
|
|
|
ea29f4 |
* Wed Sep 4 2019 Jan Horak <jhorak@redhat.com> - 60.9.0-2
|
|
|
b371f0 |
- Update to 60.9.0
|
|
|
b371f0 |
|
|
|
851caf |
* Thu Jul 4 2019 Martin Stransky <stransky@redhat.com> - 60.8.0-1
|
|
|
851caf |
- Updated to 60.8.0
|
|
|
851caf |
|
|
|
851caf |
* Wed Jul 3 2019 Martin Stransky <stransky@redhat.com> - 60.7.2-3
|
|
|
851caf |
- Rebuild to fix rhbz#1725919 - Thunderbird fails to authenticate
|
|
|
851caf |
with gmail with ssl/tls and OAuth2.
|
|
|
851caf |
|