71c2a1
%global disable_toolsets  0
cbe2c5
# Produce a build suitable for release, i.e. use PGO/LTO. You can turn it off
cbe2c5
# when building locally to reduce build time.
cbe2c5
%global release_build     1
71c2a1
cbe2c5
# Run Mozilla test suite as a part of compile rpm section. Turn off when
cbe2c5
# building locally and don't want to spend 24 hours waiting for results.
cbe2c5
%global run_firefox_tests 0
cbe2c5
%ifarch x86_64 %{ix86}
cbe2c5
%global run_firefox_tests 0
6588a7
%endif
9c0984
cbe2c5
# Don't create debuginfo rpm packages. It reduces build time as
cbe2c5
# exctracting debuginfo takes long time.
cbe2c5
%global create_debuginfo  1
cbe2c5
feb268
%{lua:
feb268
function dist_to_rhel_minor(str, start)
feb268
  match = string.match(str, ".module%+el8.%d+")
feb268
  if match then
feb268
     return string.sub(match, 13)
feb268
  end
feb268
  match = string.match(str, ".el8_%d+")
feb268
  if match then
feb268
     return string.sub(match, 6)
feb268
  end
feb268
  match = string.match(str, ".el8")
feb268
  if match then
356ae4
     return 7
feb268
  end
feb268
  return -1
feb268
end}
feb268
feb268
%global rhel_minor_version %{lua:print(dist_to_rhel_minor(rpm.expand("%dist")))}
cbe2c5
cbe2c5
# Produce debug (non-optimized) package build. Suitable for debugging only
cbe2c5
# as the build is *very* slow.
cbe2c5
%global debug_build       0
9c0984
6588a7
%global system_nss        1
9c0984
%global bundle_nss        0
9c0984
9c0984
%if 0%{?rhel} == 8
cbe2c5
  %if %{rhel_minor_version} <= 4
8e9ec3
    %global bundle_nss        1
8e9ec3
    %global system_nss        1
9c0984
  %endif
6588a7
%endif
9c0984
cbe2c5
%global build_with_asan   0
9c0984
8e9ec3
%global use_llvmts        0
8e9ec3
%global use_nodejsts      0
8e9ec3
%if 0%{?rhel} < 8
8e9ec3
%global use_llvmts        1
8e9ec3
%global use_nodejsts      1
6588a7
%endif
cbe2c5
%if %{run_firefox_tests} 
cbe2c5
%global test_on_wayland   1
cbe2c5
%endif
cbe2c5
9c0984
8e9ec3
%global nodejs_rb         nodejs
8e9ec3
%global llvm_version      7.0
cbe2c5
%if "%{toolchain}" == "clang"
cbe2c5
%global build_with_clang 1
cbe2c5
%else
cbe2c5
%global build_with_clang 0
6588a7
%endif
71c2a1
cbe2c5
%ifarch armv7hl
cbe2c5
%global create_debuginfo  0
cbe2c5
%endif
8e9ec3
%if 0%{?rhel} == 7
8e9ec3
  %global use_dts         1
8e9ec3
  %global nodejs_rb       rh-nodejs10-nodejs
8e9ec3
  %global llvm_version    11.0
71c2a1
%endif
71c2a1
cbe2c5
# Temporary disabled due to
cbe2c5
# https://bugzilla.redhat.com/show_bug.cgi?id=1951606
cbe2c5
%global enable_mozilla_crashreporter 0
cbe2c5
cbe2c5
%global system_ffi        1
cbe2c5
%ifarch armv7hl
cbe2c5
%global system_libvpx     1
cbe2c5
%else
cbe2c5
%global system_libvpx     0
cbe2c5
%endif
cbe2c5
%global hardened_build    1
cbe2c5
%global system_jpeg       1
cbe2c5
%global disable_elfhack   1
cbe2c5
%global use_bundled_cbindgen  1
cbe2c5
%if %{debug_build}
cbe2c5
%global release_build     0
cbe2c5
%endif
cbe2c5
# Build PGO+LTO on x86_64 only due to build issues
cbe2c5
# on other arches.
cbe2c5
%global build_with_pgo    0
cbe2c5
%ifarch x86_64
cbe2c5
%if %{release_build}
cbe2c5
%global build_with_pgo    0
cbe2c5
%endif
cbe2c5
%endif
71c2a1
%global use_rustts        1
cbe2c5
%global dts_version       10
cbe2c5
%global rust_version      1.62
cbe2c5
%if 0%{?rhel} >= 8
8e9ec3
  %global use_rustts      0
71c2a1
%endif
cbe2c5
%if 0%{?flatpak}
cbe2c5
%global build_with_pgo    0
cbe2c5
%endif
8e9ec3
71c2a1
%if 0%{?disable_toolsets}
71c2a1
%global use_rustts        0
71c2a1
%global use_dts           0
71c2a1
%global use_llvmts        0
cbe2c5
%global use_nodejsts      0
cbe2c5
%global nodejs_rb         nodejs
71c2a1
%endif
71c2a1
71c2a1
# Big endian platforms
71c2a1
%ifarch ppc64 s390x
71c2a1
%global big_endian        1
71c2a1
%endif
71c2a1
cbe2c5
%if 0%{?build_with_pgo}
cbe2c5
%global use_xvfb          1
cbe2c5
%global build_tests       1
cbe2c5
%endif
71c2a1
cbe2c5
%if 0%{?run_firefox_tests}
cbe2c5
%global use_xvfb          1
cbe2c5
%global build_tests       1
71c2a1
%endif
71c2a1
cbe2c5
%global launch_wayland_compositor 0
cbe2c5
%if %{build_with_pgo} && 0%{?test_on_wayland}
cbe2c5
%global launch_wayland_compositor 1
cbe2c5
%endif
cbe2c5
%if %{run_firefox_tests} && 0%{?test_on_wayland}
cbe2c5
%global launch_wayland_compositor 1
cbe2c5
%endif
71c2a1
8e9ec3
# We need to use full path because of flatpak where datadir is /app/share
9c0984
%global default_bookmarks_file  /usr/share/bookmarks/default-bookmarks.html
71c2a1
%global firefox_app_id  \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
71c2a1
# Minimal required versions
cbe2c5
%global cairo_version 1.13.1
cbe2c5
%global freetype_version 2.1.9
cbe2c5
%global libnotify_version 0.7.0
cbe2c5
%if %{?system_libvpx}
cbe2c5
%global libvpx_version 1.8.2
cbe2c5
%endif
71c2a1
cbe2c5
%if %{?system_nss}
cbe2c5
%global nspr_version 4.34
71c2a1
%global nspr_build_version %{nspr_version}
cbe2c5
%global nss_version 3.79
71c2a1
%global nss_build_version %{nss_version}
71c2a1
%endif
71c2a1
cbe2c5
%global mozappdir     %{_libdir}/firefox
cbe2c5
%global mozappdirdev  %{_libdir}/firefox-devel-%{version}
cbe2c5
%global langpackdir   %{mozappdir}/browser/extensions
cbe2c5
%global tarballdir    firefox-%{version}
9c0984
8e9ec3
%define bundled_install_path %{mozappdir}/bundled
cbe2c5
%global official_branding       1
71c2a1
71c2a1
# We could use %%include, but in %%files, %%post and other sections, but in these
71c2a1
# sections it could lead to syntax errors about unclosed %%if. Work around it by
71c2a1
# using the following macro
71c2a1
%define include_file() %{expand:%(cat '%1')}
71c2a1
cbe2c5
%bcond_without langpacks
71c2a1
cbe2c5
%global pre_version   esr
cbe2c5
%if !%{release_build}
cbe2c5
%global pre_tag .npgo
cbe2c5
%endif
cbe2c5
%if %{build_with_clang}
cbe2c5
%global pre_tag .clang
cbe2c5
%endif
cbe2c5
%if %{build_with_asan}
cbe2c5
%global pre_tag .asan
cbe2c5
%global build_with_pgo    0
cbe2c5
%endif
cbe2c5
%if !%{system_nss}
cbe2c5
%global nss_tag .nss
cbe2c5
%endif
cbe2c5
%if %{debug_build}
cbe2c5
%global pre_tag .debug
cbe2c5
%endif
71c2a1
cbe2c5
# Exclude private libraries from autogenerated provides and requires
cbe2c5
%global __provides_exclude_from ^%{mozappdir}
cbe2c5
%global __requires_exclude ^(%%(find %{buildroot}%{mozappdir} -name '*.so' | xargs -n1 basename | sort -u | paste -s -d '|' -))
356ae4
71c2a1
Summary:        Mozilla Firefox Web browser
71c2a1
Name:           firefox
cbe2c5
Version:        102.8.0
cbe2c5
Release:        2%{?dist}
71c2a1
URL:            https://www.mozilla.org/firefox/
71c2a1
License:        MPLv1.1 or GPLv2+ or LGPLv2+
cbe2c5
cbe2c5
# Workaround the dreaded "upstream source file changed content" rpminspect failure.
cbe2c5
# If set to .b2 or .b3 ... the processed source file needs to be renamed before upload, e.g.
cbe2c5
# firefox-102.8.0esr.b2.processed-source.tar.xz
cbe2c5
# When unset use processed source file name as is.
cbe2c5
%global buildnum .b2
cbe2c5
8e9ec3
%if 0%{?rhel} == 9
8e9ec3
ExcludeArch:    %{ix86}
8e9ec3
%endif
8e9ec3
%if 0%{?rhel} == 8
356ae4
  %if %{rhel_minor_version} == 1
356ae4
ExcludeArch:    %{ix86} aarch64 s390x
356ae4
  %else
8e9ec3
ExcludeArch:    %{ix86}
356ae4
  %endif
8e9ec3
%endif
71c2a1
%if 0%{?rhel} == 7
356ae4
ExcludeArch:    aarch64 s390 ppc
71c2a1
%endif
8e9ec3
# We can't use the official tarball as it contains some test files that use
8e9ec3
# licenses that are rejected by Red Hat Legal.
8e9ec3
# The official tarball has to be always processed by the process-official-tarball
cbe2c5
# script
cbe2c5
# Link to original tarball: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
356ae4
Source0:        firefox-%{version}%{?pre_version}%{?buildnum}.processed-source.tar.xz
cbe2c5
%if %{with langpacks}
cbe2c5
Source1:        firefox-langpacks-%{version}%{?pre_version}-20230214.tar.xz
71c2a1
%endif
8e9ec3
Source2:        cbindgen-vendor.tar.xz
8e9ec3
Source3:        process-official-tarball
71c2a1
Source10:       firefox-mozconfig
71c2a1
Source12:       firefox-redhat-default-prefs.js
71c2a1
Source20:       firefox.desktop
71c2a1
Source21:       firefox.sh.in
71c2a1
Source23:       firefox.1
71c2a1
Source24:       mozilla-api-key
71c2a1
Source25:       firefox-symbolic.svg
71c2a1
Source26:       distribution.ini
71c2a1
Source27:       google-api-key
cbe2c5
Source30:       firefox-x11.sh.in
cbe2c5
Source31:       firefox-x11.desktop
cbe2c5
Source32:       node-stdout-nonblocking-wrapper
cbe2c5
Source33:       firefox.appdata.xml.in
cbe2c5
Source34:       firefox-search-provider.ini
cbe2c5
Source35:       google-loc-api-key
cbe2c5
Source37:       mochitest-python.tar.gz
cbe2c5
Source38:       print_results
cbe2c5
Source39:       print-errors
cbe2c5
Source40:       run-tests-x11
cbe2c5
Source41:       run-tests-wayland
cbe2c5
Source42:       psummary
cbe2c5
Source43:       print_failures
cbe2c5
Source44:       print-error-reftest
cbe2c5
Source45:       run-wayland-compositor
cbe2c5
Source403:      nss-3.79.0-6.el8_1.src.rpm
9c0984
Source401:      nss-setup-flags-env.inc
cbe2c5
Source402:      nspr-4.34.0-3.el8_1.src.rpm
8e9ec3
71c2a1
# Build patches
cbe2c5
Patch3:         mozilla-build-arm.patch
cbe2c5
Patch25:        rhbz-1219542-s390-build.patch
cbe2c5
# Fixing missing cacheFlush when JS_CODEGEN_NONE is used (s390x)
cbe2c5
Patch40:        build-aarch64-skia.patch
cbe2c5
Patch41:        build-disable-elfhack.patch
cbe2c5
Patch44:        build-arm-libopus.patch
cbe2c5
Patch47:        fedora-shebang-build.patch
cbe2c5
Patch49:        build-arm-libaom.patch
cbe2c5
Patch53:        firefox-gcc-build.patch
cbe2c5
Patch54:        mozilla-1669639.patch
cbe2c5
Patch71:        0001-GLIBCXX-fix-for-GCC-12.patch
cbe2c5
Patch72:        build-remove-dav1d-from-wayland-dep.patch
cbe2c5
Patch73:        build-ascii-decode-fail-rhel7.patch
cbe2c5
Patch75:        build-big-endian-errors.patch
cbe2c5
Patch76:        firefox-nss-version.patch
cbe2c5
Patch77:        mozilla-1775202.patch
cbe2c5
Patch78:        build-rhel7-lower-node-min-version.patch
cbe2c5
cbe2c5
cbe2c5
# Test patches
cbe2c5
# Generate without context by
cbe2c5
# GENDIFF_DIFF_ARGS=-U0 gendiff firefox-xxxx .firefox-tests-xpcshell
cbe2c5
# GENDIFF_DIFF_ARGS=-U0 gendiff firefox-xxxx .firefox-tests-reftest
cbe2c5
Patch102:       firefox-tests-xpcshell-freeze.patch
cbe2c5
cbe2c5
# Fedora specific patches
71c2a1
Patch215:        firefox-enable-addons.patch
71c2a1
Patch219:        rhbz-1173156.patch
71c2a1
Patch224:        mozilla-1170092.patch
cbe2c5
#ARM run-time patch
cbe2c5
Patch226:        rhbz-1354671.patch
cbe2c5
Patch228:        disable-openh264-download.patch
cbe2c5
Patch229:        firefox-nss-addon-hack.patch
cbe2c5
Patch230:        D110204-fscreen.diff
cbe2c5
Patch231:        webrtc-nss-fix.patch
cbe2c5
# Backported WebRTC changes for PipeWire/Wayland screen sharing support
cbe2c5
Patch232:        libwebrtc-screen-cast-sync.patch
71c2a1
71c2a1
# Upstream patches
cbe2c5
Patch415:        mozilla-1670333.patch
cbe2c5
Patch416:        mozilla-bmo1005535.patch
cbe2c5
Patch417:        mozilla-bmo1504834-part1.patch
cbe2c5
Patch418:        mozilla-bmo1504834-part3.patch
cbe2c5
Patch419:        mozilla-bmo849632.patch
cbe2c5
Patch420:        mozilla-bmo998749.patch
cbe2c5
Patch421:        mozilla-s390x-skia-gradient.patch
cbe2c5
Patch422:        one_swizzle_to_rule_them_all.patch
cbe2c5
Patch423:        svg-rendering.patch
cbe2c5
Patch424:        D158770.diff
cbe2c5
cbe2c5
# PGO/LTO patches
cbe2c5
Patch600:        pgo.patch
cbe2c5
Patch602:        mozilla-1516803.patch
cbe2c5
cbe2c5
Patch1008:      build-rhel7-nasm-dwarf.patch
9c0984
71c2a1
%if %{?system_nss}
9c0984
%if !0%{?bundle_nss}
71c2a1
BuildRequires:  pkgconfig(nspr) >= %{nspr_version}
71c2a1
BuildRequires:  pkgconfig(nss) >= %{nss_version}
71c2a1
BuildRequires:  nss-static >= %{nss_version}
71c2a1
%endif
9c0984
%endif
71c2a1
BuildRequires:  pkgconfig(libpng)
cbe2c5
%if %{?system_jpeg}
71c2a1
BuildRequires:  libjpeg-devel
cbe2c5
%endif
71c2a1
BuildRequires:  zip
71c2a1
BuildRequires:  bzip2-devel
71c2a1
BuildRequires:  pkgconfig(zlib)
cbe2c5
BuildRequires:  pkgconfig(gtk+-3.0)
71c2a1
BuildRequires:  pkgconfig(gtk+-2.0)
cbe2c5
BuildRequires:  pkgconfig(krb5)
71c2a1
BuildRequires:  pkgconfig(pango)
cbe2c5
BuildRequires:  pkgconfig(freetype2) >= %{freetype_version}
71c2a1
BuildRequires:  pkgconfig(xt)
cbe2c5
BuildRequires:  pkgconfig(xtst)
71c2a1
BuildRequires:  pkgconfig(xrender)
71c2a1
BuildRequires:  pkgconfig(libstartup-notification-1.0)
cbe2c5
BuildRequires:  pkgconfig(libnotify) >= %{libnotify_version}
71c2a1
BuildRequires:  pkgconfig(dri)
71c2a1
BuildRequires:  pkgconfig(libcurl)
cbe2c5
BuildRequires:  pkgconfig(alsa)
cbe2c5
BuildRequires:  libstdc++-devel
cbe2c5
BuildRequires:  libstdc++-static
71c2a1
BuildRequires:  dbus-glib-devel
cbe2c5
%if %{?system_libvpx}
cbe2c5
BuildRequires:  libvpx-devel >= %{libvpx_version}
cbe2c5
%endif
8e9ec3
BuildRequires:  m4
71c2a1
BuildRequires:  pkgconfig(libpulse)
71c2a1
71c2a1
%if 0%{?use_dts}
71c2a1
BuildRequires:  devtoolset-%{dts_version}-gcc-c++
71c2a1
BuildRequires:  devtoolset-%{dts_version}-gcc
71c2a1
BuildRequires:  devtoolset-%{dts_version}-libatomic-devel
71c2a1
%endif
8e9ec3
%if 0%{?rhel} == 9
8e9ec3
BuildRequires:  gcc
8e9ec3
BuildRequires:  gcc-c++
8e9ec3
BuildRequires:  cargo
8e9ec3
BuildRequires:  rust
8e9ec3
BuildRequires:  clang clang-libs llvm
71c2a1
%endif
cbe2c5
BuildRequires:  %{nodejs_rb} >= 10.21
cbe2c5
%if 0%{?rhel} == 7
6588a7
BuildRequires:  scl-utils
9c0984
BuildRequires:  findutils
cbe2c5
%endif
71c2a1
%if 0%{?rhel} == 8
71c2a1
BuildRequires:  cargo
6588a7
BuildRequires:  rust >= %{rust_version}
71c2a1
BuildRequires:  llvm >= %{llvm_version}
71c2a1
BuildRequires:  llvm-devel >= %{llvm_version}
71c2a1
BuildRequires:  clang >= %{llvm_version}
6588a7
BuildRequires:  clang-devel >= %{llvm_version}
6588a7
BuildRequires:  rustfmt >= %{rust_version}
cbe2c5
%endif
cbe2c5
71c2a1
%if 0%{?use_rustts}
8e9ec3
BuildRequires:  rust-toolset-%{rust_version}
9c0984
%endif
cbe2c5
71c2a1
%if 0%{?use_llvmts}
71c2a1
BuildRequires:  llvm-toolset-%{llvm_version}
71c2a1
BuildRequires:  llvm-toolset-%{llvm_version}-llvm-devel
8e9ec3
BuildRequires:  llvm-toolset-%{llvm_version}-clang
8e9ec3
BuildRequires:  llvm-toolset-%{llvm_version}-clang-devel
71c2a1
%endif
71c2a1
71c2a1
cbe2c5
%if 0%{?rhel} > 7
71c2a1
BuildRequires:  pipewire-devel
71c2a1
%endif
71c2a1
cbe2c5
%if !0%{?use_bundled_cbindgen}
cbe2c5
BuildRequires:  cbindgen
cbe2c5
%endif
cbe2c5
BuildRequires:  nasm >= 1.13
cbe2c5
BuildRequires:  libappstream-glib
71c2a1
cbe2c5
%if 0%{?big_endian}
cbe2c5
BuildRequires:  icu
cbe2c5
%endif
9c0984
# Bundled nss/nspr requirement
9c0984
%if 0%{?bundle_nss}
9c0984
BuildRequires:    nss-softokn
9c0984
BuildRequires:    sqlite-devel
9c0984
BuildRequires:    zlib-devel
9c0984
BuildRequires:    pkgconfig
9c0984
BuildRequires:    gawk
9c0984
BuildRequires:    psmisc
9c0984
BuildRequires:    perl-interpreter
9c0984
BuildRequires:    gcc-c++
9c0984
BuildRequires:    xmlto
9c0984
%endif
9c0984
71c2a1
Requires:       mozilla-filesystem
cbe2c5
#not known or rhel7
cbe2c5
#Recommends:     mozilla-openh264 >= 2.1.1
cbe2c5
#Recommends:     libva
71c2a1
Requires:       p11-kit-trust
cbe2c5
Requires:       pciutils-libs
71c2a1
%if %{?system_nss}
9c0984
%if !0%{?bundle_nss}
71c2a1
Requires:       nspr >= %{nspr_build_version}
71c2a1
Requires:       nss >= %{nss_build_version}
71c2a1
%endif
9c0984
%endif
cbe2c5
BuildRequires:  python3-devel
cbe2c5
BuildRequires:  python3-setuptools
71c2a1
71c2a1
BuildRequires:  desktop-file-utils
71c2a1
Requires:       redhat-indexhtml
71c2a1
cbe2c5
%if !0%{?flatpak}
cbe2c5
#TODO
cbe2c5
BuildRequires:  system-bookmarks
71c2a1
%endif
cbe2c5
%if %{?system_ffi}
71c2a1
BuildRequires:  pkgconfig(libffi)
cbe2c5
%endif
9c0984
cbe2c5
%if 0%{?use_xvfb}
cbe2c5
BuildRequires:  xorg-x11-server-Xvfb
9c0984
%endif
cbe2c5
%if %{build_with_asan}
cbe2c5
BuildRequires:  libasan
cbe2c5
BuildRequires:  libasan-static
cbe2c5
%endif
cbe2c5
BuildRequires:  perl-interpreter
cbe2c5
#BuildRequires:  fdk-aac-free-devel not on rhel8
cbe2c5
%if 0%{?test_on_wayland}
cbe2c5
BuildRequires:  mutter
cbe2c5
BuildRequires:  gsettings-desktop-schemas
cbe2c5
BuildRequires:  gnome-settings-daemon
cbe2c5
BuildRequires:  mesa-dri-drivers
cbe2c5
BuildRequires:  xorg-x11-server-Xwayland
cbe2c5
BuildRequires:  dbus-x11
cbe2c5
BuildRequires:  gnome-keyring
cbe2c5
%endif
cbe2c5
%if 0%{?run_firefox_tests}
cbe2c5
BuildRequires:  procps-ng
cbe2c5
BuildRequires:  nss-tools
cbe2c5
BuildRequires:  dejavu-sans-mono-fonts
cbe2c5
BuildRequires:  dejavu-sans-fonts
cbe2c5
BuildRequires:  dejavu-serif-fonts
cbe2c5
BuildRequires:  dbus-x11
cbe2c5
BuildRequires:  gnome-keyring
cbe2c5
BuildRequires:  mesa-dri-drivers
cbe2c5
# ----------------------------------------
cbe2c5
BuildRequires:  liberation-fonts-common
cbe2c5
BuildRequires:  liberation-mono-fonts
cbe2c5
BuildRequires:  liberation-sans-fonts
cbe2c5
BuildRequires:  liberation-serif-fonts
cbe2c5
# ----------------------------------
cbe2c5
# Missing on f32
cbe2c5
%if 0%{?fedora} > 33
cbe2c5
BuildRequires:  google-carlito-fonts
cbe2c5
%endif
cbe2c5
BuildRequires:  google-droid-sans-fonts
cbe2c5
BuildRequires:  google-noto-fonts-common
cbe2c5
BuildRequires:  google-noto-cjk-fonts-common
cbe2c5
BuildRequires:  google-noto-sans-cjk-ttc-fonts
cbe2c5
BuildRequires:  google-noto-sans-gurmukhi-fonts
cbe2c5
BuildRequires:  google-noto-sans-fonts
cbe2c5
BuildRequires:  google-noto-emoji-color-fonts
cbe2c5
BuildRequires:  google-noto-sans-sinhala-vf-fonts
cbe2c5
# -----------------------------------
cbe2c5
BuildRequires:  thai-scalable-fonts-common
cbe2c5
BuildRequires:  thai-scalable-waree-fonts
cbe2c5
BuildRequires:  khmeros-base-fonts
cbe2c5
BuildRequires:  jomolhari-fonts
cbe2c5
# ----------------------------------
cbe2c5
BuildRequires:  lohit-tamil-fonts
cbe2c5
BuildRequires:  lohit-telugu-fonts
cbe2c5
# ----------------------------------
cbe2c5
BuildRequires:  paktype-naskh-basic-fonts
cbe2c5
# faild to build in Koji / f32
cbe2c5
%if 0%{?fedora} > 33
cbe2c5
BuildRequires:  pt-sans-fonts
cbe2c5
%endif
cbe2c5
BuildRequires:  smc-meera-fonts
cbe2c5
BuildRequires:  stix-fonts
cbe2c5
BuildRequires:  abattis-cantarell-fonts
cbe2c5
BuildRequires:  xorg-x11-fonts-ISO8859-1-100dpi
cbe2c5
BuildRequires:  xorg-x11-fonts-misc
cbe2c5
%endif
cbe2c5
BuildRequires:  make
cbe2c5
BuildRequires:  pciutils-libs
9c0984
71c2a1
Obsoletes:      mozilla <= 37:1.7.13
71c2a1
Provides:       webclient
cbe2c5
%if 0%{?rhel} == 8 && %{rhel_minor_version} < 6
cbe2c5
%ifarch aarch64
cbe2c5
BuildRequires: gcc-toolset-12-annobin-plugin-gcc
cbe2c5
%endif
cbe2c5
%endif
71c2a1
8e9ec3
# Bundled libraries
8e9ec3
Provides: bundled(angle)
cbe2c5
Provides: bundled(audioipc-2)
cbe2c5
Provides: bundled(brotli)
8e9ec3
Provides: bundled(cairo)
cbe2c5
Provides: bundled(cfworker)
cbe2c5
Provides: bundled(d3.js)
cbe2c5
Provides: bundled(double-conversion)
cbe2c5
Provides: bundled(expat)
cbe2c5
Provides: bundled(fdlibm)
cbe2c5
Provides: bundled(ffvpx)
cbe2c5
Provides: bundled(freetype2)
8e9ec3
Provides: bundled(graphite2)
8e9ec3
Provides: bundled(harfbuzz)
cbe2c5
Provides: bundled(highway)
cbe2c5
Provides: bundled(intgemm)
8e9ec3
Provides: bundled(kissfft)
8e9ec3
Provides: bundled(libaom)
8e9ec3
Provides: bundled(libcubeb)
8e9ec3
Provides: bundled(libdav1d)
8e9ec3
Provides: bundled(libjpeg)
cbe2c5
Provides: bundled(libjxl)
cbe2c5
Provides: bundled(libjxl)
cbe2c5
Provides: bundled(libmar)
8e9ec3
Provides: bundled(libmkv)
8e9ec3
Provides: bundled(libnestegg)
8e9ec3
Provides: bundled(libogg)
8e9ec3
Provides: bundled(libopus)
8e9ec3
Provides: bundled(libpng)
cbe2c5
Provides: bundled(libprio)
8e9ec3
Provides: bundled(libsoundtouch)
8e9ec3
Provides: bundled(libspeex_resampler)
cbe2c5
Provides: bundled(libsrtp)
8e9ec3
Provides: bundled(libtheora)
8e9ec3
Provides: bundled(libtremor)
8e9ec3
Provides: bundled(libvorbis)
8e9ec3
Provides: bundled(libvpx)
8e9ec3
Provides: bundled(libwebp)
cbe2c5
Provides: bundled(libwebrtc)
8e9ec3
Provides: bundled(libyuv)
8e9ec3
Provides: bundled(mp4parse-rust)
cbe2c5
Provides: bundled(mp4parse-rust)
cbe2c5
Provides: bundled(msgpack-c)
cbe2c5
Provides: bundled(msgpack-c)
8e9ec3
Provides: bundled(mtransport)
8e9ec3
Provides: bundled(openmax_dl)
cbe2c5
Provides: bundled(openmax_il)
cbe2c5
Provides: bundled(openmax_il)
cbe2c5
Provides: bundled(ots)
cbe2c5
Provides: bundled(qcms)
cbe2c5
Provides: bundled(rlbox_sandboxing_api)
cbe2c5
Provides: bundled(sfntly)
cbe2c5
Provides: bundled(sipcc)
cbe2c5
Provides: bundled(skia)
cbe2c5
Provides: bundled(sqlite3)
cbe2c5
Provides: bundled(thebes)
cbe2c5
Provides: bundled(wasm2c)
cbe2c5
Provides: bundled(WebRender)
8e9ec3
Provides: bundled(woff2)
8e9ec3
Provides: bundled(xz-embedded)
cbe2c5
Provides: bundled(ycbcr)
8e9ec3
Provides: bundled(zlib)
8e9ec3
8e9ec3
%if 0%{?bundle_nss}
cbe2c5
Provides: bundled(nss) = 3.79.0
cbe2c5
Provides: bundled(nspr) = 4.34.0
8e9ec3
%endif
8e9ec3
71c2a1
%description
71c2a1
Mozilla Firefox is an open-source web browser, designed for standards
71c2a1
compliance, performance and portability.
71c2a1
cbe2c5
%if 0%{?run_firefox_tests}
cbe2c5
%global testsuite_pkg_name %{name}-testresults
71c2a1
%package -n %{testsuite_pkg_name}
71c2a1
Summary: Results of testsuite
71c2a1
%description -n %{testsuite_pkg_name}
71c2a1
This package contains results of tests executed during build.
71c2a1
%files -n %{testsuite_pkg_name}
cbe2c5
/%{version}-%{release}/test_results
cbe2c5
/%{version}-%{release}/test_summary.txt
cbe2c5
/%{version}-%{release}/failures-*
cbe2c5
%endif
cbe2c5
cbe2c5
%if 0%{?rhel} >= 9
cbe2c5
%package x11
cbe2c5
Summary: Firefox X11 launcher.
cbe2c5
Requires: %{name}
cbe2c5
%description x11
cbe2c5
The firefox-x11 package contains launcher and desktop file
cbe2c5
to run Firefox explicitly on X11.
cbe2c5
%files x11
cbe2c5
%{_bindir}/firefox-x11
cbe2c5
%{_datadir}/applications/firefox-x11.desktop
71c2a1
%endif
71c2a1
71c2a1
#---------------------------------------------------------------------
cbe2c5
71c2a1
%prep
9c0984
echo "Build environment"
9c0984
echo "dist                  %{?dist}"
cbe2c5
echo "RHEL 8 minor version: %{?rhel_minor_version}"
9c0984
echo "use_bundled_ffi       %{?use_bundled_ffi}"
9c0984
echo "bundle_nss            %{?bundle_nss}"
9c0984
echo "system_nss            %{?system_nss}"
9c0984
echo "use_rustts            %{?use_rustts}"
9c0984
71c2a1
%setup -q -n %{tarballdir}
cbe2c5
71c2a1
# Build patches, can't change backup suffix from default because during build
71c2a1
# there is a compare of config and js/config directories and .orig suffix is
71c2a1
# ignored during this compare.
71c2a1
cbe2c5
%ifarch s390
cbe2c5
%patch25 -p1 -b .rhbz-1219542-s390
cbe2c5
%endif
cbe2c5
%patch40 -p1 -b .aarch64-skia
cbe2c5
%if 0%{?disable_elfhack}
cbe2c5
%patch41 -p1 -b .disable-elfhack
cbe2c5
%endif
cbe2c5
%patch3  -p1 -b .arm
cbe2c5
%patch44 -p1 -b .build-arm-libopus
cbe2c5
%patch47 -p1 -b .fedora-shebang
cbe2c5
%patch49 -p1 -b .build-arm-libaom
cbe2c5
%patch53 -p1 -b .firefox-gcc-build
cbe2c5
%patch54 -p1 -b .1669639
cbe2c5
%patch71 -p1 -b .0001-GLIBCXX-fix-for-GCC-12
cbe2c5
%patch72 -p1 -b .build-remove-dav1d-from-wayland-dep
cbe2c5
cbe2c5
%patch75 -p1 -b .build-big-endian-errors
cbe2c5
%patch76 -p1 -b .firefox-nss-version
cbe2c5
#ppc64le build failure because of webrtc
cbe2c5
%patch77 -p1 -b .mozilla-1775202
cbe2c5
cbe2c5
%patch73 -p1 -b .build-ascii-decode-fail-rhel7
cbe2c5
%if 0%{?rhel} == 7
cbe2c5
%patch78 -p1 -b .build-rhel7-lower-node-min-version
cbe2c5
%endif
cbe2c5
cbe2c5
# Test patches
cbe2c5
%patch102 -p1 -b .firefox-tests-xpcshell-freeze
71c2a1
71c2a1
# Fedora patches
71c2a1
%patch215 -p1 -b .addons
71c2a1
%patch219 -p1 -b .rhbz-1173156
d445b2
%patch224 -p1 -b .1170092
cbe2c5
#ARM run-time patch
cbe2c5
%ifarch aarch64
cbe2c5
%patch226 -p1 -b .1354671
cbe2c5
%endif
cbe2c5
%patch228 -p1 -b .disable-openh264-download
cbe2c5
%patch229 -p1 -b .firefox-nss-addon-hack
cbe2c5
%patch230 -p1 -b .D110204-fscreen.diff
cbe2c5
%patch231 -p1 -b .webrtc-nss-fix
cbe2c5
%patch232 -p1 -b .libwebrtc-screen-cast-sync
cbe2c5
cbe2c5
%patch415 -p1 -b .1670333
cbe2c5
%patch416 -p1 -b .mozilla-bmo1005535
cbe2c5
%patch417 -p1 -b .mozilla-bmo1504834-part1
cbe2c5
%patch418 -p1 -b .mozilla-bmo1504834-part3
cbe2c5
%patch419 -p1 -b .mozilla-bmo849632
cbe2c5
%patch420 -p1 -b .mozilla-bmo998749
cbe2c5
%patch421 -p1 -b .mozilla-s390x-skia-gradient
cbe2c5
%patch422 -p1 -b .one_swizzle_to_rule_them_all
cbe2c5
%patch423 -p1 -b .svg-rendering
cbe2c5
%patch424 -p1 -b .D158770.diff
cbe2c5
cbe2c5
# PGO patches
cbe2c5
%if %{build_with_pgo}
cbe2c5
%if !%{build_with_clang}
cbe2c5
%patch600 -p1 -b .pgo
cbe2c5
%patch602 -p1 -b .1516803
356ae4
%endif
71c2a1
%endif
71c2a1
8e9ec3
%if 0%{?rhel} == 7
8e9ec3
  %ifarch %{ix86}
8e9ec3
# -F dwarf not available in RHEL7's nasm
8e9ec3
%patch1008 -p1 -b .build-rhel7-nasm-dwarf
8e9ec3
  %endif
d445b2
%endif
6588a7
cbe2c5
cbe2c5
71c2a1
%{__rm} -f .mozconfig
71c2a1
%{__cp} %{SOURCE10} .mozconfig
cbe2c5
echo "ac_add_options --enable-default-toolkit=cairo-gtk3-wayland" >> .mozconfig
71c2a1
%if %{official_branding}
71c2a1
echo "ac_add_options --enable-official-branding" >> .mozconfig
71c2a1
%endif
71c2a1
%{__cp} %{SOURCE24} mozilla-api-key
71c2a1
%{__cp} %{SOURCE27} google-api-key
cbe2c5
%{__cp} %{SOURCE35} google-loc-api-key
cbe2c5
cbe2c5
echo "ac_add_options --prefix=\"%{_prefix}\"" >> .mozconfig
cbe2c5
echo "ac_add_options --libdir=\"%{_libdir}\"" >> .mozconfig
71c2a1
71c2a1
%if %{?system_nss}
71c2a1
echo "ac_add_options --with-system-nspr" >> .mozconfig
71c2a1
echo "ac_add_options --with-system-nss" >> .mozconfig
71c2a1
%else
71c2a1
echo "ac_add_options --without-system-nspr" >> .mozconfig
71c2a1
echo "ac_add_options --without-system-nss" >> .mozconfig
71c2a1
%endif
71c2a1
cbe2c5
%if %{?system_ffi}
cbe2c5
echo "ac_add_options --enable-system-ffi" >> .mozconfig
cbe2c5
%endif
cbe2c5
cbe2c5
%ifarch %{arm}
71c2a1
echo "ac_add_options --disable-elf-hack" >> .mozconfig
71c2a1
%endif
71c2a1
71c2a1
%if %{?debug_build}
71c2a1
echo "ac_add_options --enable-debug" >> .mozconfig
71c2a1
echo "ac_add_options --disable-optimize" >> .mozconfig
71c2a1
%else
cbe2c5
%global optimize_flags "none"
8e9ec3
%ifarch s390x
d445b2
%global optimize_flags "-g -O1"
71c2a1
%endif
71c2a1
%ifarch ppc64le aarch64
71c2a1
%global optimize_flags "-g -O2"
71c2a1
%endif
71c2a1
%if %{optimize_flags} != "none"
71c2a1
echo 'ac_add_options --enable-optimize=%{?optimize_flags}' >> .mozconfig
71c2a1
%else
71c2a1
echo 'ac_add_options --enable-optimize' >> .mozconfig
71c2a1
%endif
71c2a1
echo "ac_add_options --disable-debug" >> .mozconfig
71c2a1
%endif
71c2a1
71c2a1
# Second arches fail to start with jemalloc enabled
71c2a1
%ifnarch %{ix86} x86_64
71c2a1
echo "ac_add_options --disable-jemalloc" >> .mozconfig
71c2a1
%endif
71c2a1
cbe2c5
%if 0%{?build_tests}
cbe2c5
echo "ac_add_options --enable-tests" >> .mozconfig
cbe2c5
%else
cbe2c5
echo "ac_add_options --disable-tests" >> .mozconfig
71c2a1
%endif
71c2a1
cbe2c5
%if !%{?system_jpeg}
cbe2c5
echo "ac_add_options --without-system-jpeg" >> .mozconfig
cbe2c5
%else
cbe2c5
echo "ac_add_options --with-system-jpeg" >> .mozconfig
71c2a1
%endif
71c2a1
cbe2c5
%if %{?system_libvpx}
cbe2c5
echo "ac_add_options --with-system-libvpx" >> .mozconfig
cbe2c5
%else
cbe2c5
echo "ac_add_options --without-system-libvpx" >> .mozconfig
cbe2c5
%endif
cbe2c5
cbe2c5
%ifarch s390 s390x
9c0984
echo "ac_add_options --disable-jit" >> .mozconfig
9c0984
%endif
9c0984
cbe2c5
%if %{build_with_asan}
cbe2c5
echo "ac_add_options --enable-address-sanitizer" >> .mozconfig
cbe2c5
echo "ac_add_options --disable-jemalloc" >> .mozconfig
9c0984
%endif
cbe2c5
cbe2c5
%if !%{enable_mozilla_crashreporter}
cbe2c5
echo "ac_add_options --disable-crashreporter" >> .mozconfig
71c2a1
%endif
71c2a1
8e9ec3
# AV1 requires newer nasm that was rebased in 8.4
8e9ec3
%if 0%{?rhel} == 7 || (0%{?rhel} == 8 && %{rhel_minor_version} < 4)
8e9ec3
echo "ac_add_options --disable-av1" >> .mozconfig
8e9ec3
%endif
8e9ec3
cbe2c5
# api keys full path
cbe2c5
echo "ac_add_options --with-mozilla-api-keyfile=`pwd`/mozilla-api-key" >> .mozconfig
cbe2c5
# It seems that the api key we have is for the safe browsing only
cbe2c5
echo "ac_add_options --with-google-location-service-api-keyfile=`pwd`/google-loc-api-key" >> .mozconfig
cbe2c5
echo "ac_add_options --with-google-safebrowsing-api-keyfile=`pwd`/google-api-key" >> .mozconfig
cbe2c5
6588a7
echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"' >> .mozconfig
71c2a1
71c2a1
# Remove executable bit to make brp-mangle-shebangs happy.
71c2a1
chmod -x third_party/rust/itertools/src/lib.rs
9c0984
chmod a-x third_party/rust/ash/src/extensions/ext/*.rs
9c0984
chmod a-x third_party/rust/ash/src/extensions/khr/*.rs
9c0984
chmod a-x third_party/rust/ash/src/extensions/nv/*.rs
71c2a1
71c2a1
#---------------------------------------------------------------------
71c2a1
71c2a1
%build
8e9ec3
# Disable LTO to work around rhbz#1883904
8e9ec3
%define _lto_cflags %{nil}
71c2a1
export PATH="%{_buildrootdir}/bin:$PATH"
cbe2c5
# Cleanup buildroot for existing rpms from bundled nss/nspr and other packages
cbe2c5
rm -rf %{_buildrootdir}/*
71c2a1
71c2a1
function install_rpms_to_current_dir() {
71c2a1
    PACKAGE_RPM=$(eval echo $1)
71c2a1
    PACKAGE_DIR=%{_rpmdir}
71c2a1
71c2a1
    if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
71c2a1
        # Hack for tps tests
71c2a1
        ARCH_STR=%{_arch}
8e9ec3
        %ifarch %{ix86}
71c2a1
            ARCH_STR="i?86"
71c2a1
        %endif
8e9ec3
        PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
71c2a1
     fi
71c2a1
71c2a1
     for package in $(ls $PACKAGE_DIR/$PACKAGE_RPM)
71c2a1
     do
71c2a1
         echo "$package"
71c2a1
         rpm2cpio "$package" | cpio -idu
71c2a1
     done
71c2a1
}
9c0984
%if 0%{?bundle_nss}
8e9ec3
  rpm -ivh %{SOURCE402}
8e9ec3
  #rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nspr.spec
8e9ec3
  rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nspr.spec
8e9ec3
  pushd %{_buildrootdir}
8e9ec3
  install_rpms_to_current_dir nspr-4*.rpm
8e9ec3
  install_rpms_to_current_dir nspr-devel*.rpm
8e9ec3
  popd
8e9ec3
  echo "Setting nspr flags"
8e9ec3
  # nss-setup-flags-env.inc
8e9ec3
  sed -i 's@%{bundled_install_path}@%{_buildrootdir}%{bundled_install_path}@g' %{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig/nspr*.pc
cbe2c5
  cat %{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig/nspr*.pc
8e9ec3
8e9ec3
  export LDFLAGS="-L%{_buildrootdir}%{bundled_install_path}/%{_lib} $LDFLAGS"
8e9ec3
  export LDFLAGS="-Wl,-rpath,%{bundled_install_path}/%{_lib} $LDFLAGS"
8e9ec3
  export LDFLAGS="-Wl,-rpath-link,%{_buildrootdir}%{bundled_install_path}/%{_lib} $LDFLAGS"
8e9ec3
  export PKG_CONFIG_PATH=%{_buildrootdir}%{bundled_install_path}/%{_lib}/pkgconfig
cbe2c5
  pkg-config --libs-only-L nspr
cbe2c5
  pkg-config --libs nspr
cbe2c5
  export PATH="%{_buildrootdir}%{bundled_install_path}/bin:$PATH"
8e9ec3
8e9ec3
  export PATH=%{_buildrootdir}/%{bundled_install_path}/bin:$PATH
8e9ec3
  echo $PKG_CONFIG_PATH
9c0984
8e9ec3
  rpm -ivh %{SOURCE403}
356ae4
  rpmbuild --nodeps --define '_prefix %{bundled_install_path}' --without=tests -ba %{_specdir}/nss.spec
8e9ec3
  pushd %{_buildrootdir}
8e9ec3
  #cleanup
8e9ec3
  install_rpms_to_current_dir nss-3*.rpm
8e9ec3
  install_rpms_to_current_dir nss-devel*.rpm
8e9ec3
  install_rpms_to_current_dir nss-pkcs11-devel*.rpm
8e9ec3
  install_rpms_to_current_dir nss-softokn-3*.rpm
8e9ec3
  install_rpms_to_current_dir nss-softokn-devel*.rpm
8e9ec3
  install_rpms_to_current_dir nss-softokn-freebl-3*.rpm
8e9ec3
  install_rpms_to_current_dir nss-softokn-freebl-devel*.rpm
8e9ec3
  install_rpms_to_current_dir nss-util-3*.rpm
8e9ec3
  install_rpms_to_current_dir nss-util-devel*.rpm
8e9ec3
  popd
8e9ec3
  %filter_provides_in %{bundled_install_path}/%{_lib}
8e9ec3
  %filter_requires_in %{bundled_install_path}/%{_lib}
9c0984
  %filter_from_requires /libnss3.so.*/d
9c0984
  %filter_from_requires /libsmime3.so.*/d
9c0984
  %filter_from_requires /libssl3.so.*/d
9c0984
  %filter_from_requires /libnssutil3.so.*/d
9c0984
  %filter_from_requires /libnspr4.so.*/d
8e9ec3
  find %{_buildrootdir}
71c2a1
%endif
71c2a1
71c2a1
set +e
cbe2c5
%if 0%{?rhel} == 8 && %{rhel_minor_version} < 6
cbe2c5
%ifarch aarch64
cbe2c5
source scl_source enable gcc-toolset-12
cbe2c5
%endif
cbe2c5
%endif
71c2a1
%if 0%{?use_dts}
71c2a1
source scl_source enable devtoolset-%{dts_version}
71c2a1
%endif
71c2a1
%if 0%{?use_rustts}
8e9ec3
source scl_source enable rust-toolset-%{rust_version}
8e9ec3
%endif
8e9ec3
%if 0%{?use_nodejsts}
8e9ec3
source scl_source enable rh-nodejs10
71c2a1
%endif
cbe2c5
%if 0%{?use_llvmts}
cbe2c5
source scl_source enable llvm-toolset-%{llvm_version}
cbe2c5
%endif
71c2a1
cbe2c5
set -e
9c0984
env
9c0984
which gcc
9c0984
which c++
9c0984
which g++
9c0984
which ld
8e9ec3
which nasm
cbe2c5
which node
cbe2c5
%if 0%{?use_bundled_cbindgen}
6588a7
mkdir -p my_rust_vendor
6588a7
cd my_rust_vendor
6588a7
%{__tar} xf %{SOURCE2}
6588a7
mkdir -p .cargo
6588a7
cat > .cargo/config <
6588a7
[source.crates-io]
6588a7
replace-with = "vendored-sources"
6588a7
6588a7
[source.vendored-sources]
cbe2c5
directory = "`pwd`"
6588a7
EOL
6588a7
cbe2c5
%ifarch aarch64
cbe2c5
#export RUSTFLAGS="-Cdebuginfo=0 -Clinker=/opt/rh/gcc-toolset-12/root/usr/bin/gcc"
cbe2c5
%endif
6588a7
cbe2c5
env CARGO_HOME=.cargo cargo install cbindgen
cbe2c5
export PATH=`pwd`/.cargo/bin:$PATH
cbe2c5
cd -
cbe2c5
%endif
9c0984
6588a7
mkdir %{_buildrootdir}/bin || :
cbe2c5
cp %{SOURCE32} %{_buildrootdir}/bin || :
6588a7
71c2a1
# Update the various config.guess to upstream release for aarch64 support
cbe2c5
# Do not update config.guess in the ./third_party/rust because that would break checksums
cbe2c5
find ./ -path ./third_party/rust -prune -o -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
cbe2c5
71c2a1
MOZ_OPT_FLAGS=$(echo "%{optflags}" | %{__sed} -e 's/-Wall//')
71c2a1
#rhbz#1037063
71c2a1
# -Werror=format-security causes build failures when -Wno-format is explicitly given
71c2a1
# for some sources
71c2a1
# Explicitly force the hardening flags for Firefox so it passes the checksec test;
71c2a1
# See also https://fedoraproject.org/wiki/Changes/Harden_All_Packages
cbe2c5
%if 0%{?fedora} < 30
71c2a1
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wformat-security -Wformat -Werror=format-security"
cbe2c5
%else
cbe2c5
# Workaround for mozbz#1531309
cbe2c5
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-Werror=format-security//')
cbe2c5
%endif
cbe2c5
%if 0%{?fedora} > 30
cbe2c5
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fpermissive"
cbe2c5
%endif
71c2a1
%if %{?hardened_build}
cbe2c5
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fPIC -Wl,-z,relro -Wl,-z,now"
cbe2c5
%endif
71c2a1
%if %{?debug_build}
cbe2c5
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-O2//')
cbe2c5
%endif
cbe2c5
%ifarch s390
cbe2c5
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-g/-g1/')
cbe2c5
# If MOZ_DEBUG_FLAGS is empty, firefox's build will default it to "-g" which
cbe2c5
# overrides the -g1 from line above and breaks building on s390/arm
cbe2c5
# (OOM when linking, rhbz#1238225)
cbe2c5
export MOZ_DEBUG_FLAGS=" "
cbe2c5
%endif
cbe2c5
%ifarch %{arm} %{ix86}
cbe2c5
MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-g/-g0/')
cbe2c5
export MOZ_DEBUG_FLAGS=" "
71c2a1
%endif
8e9ec3
%if !%{build_with_clang}
cbe2c5
%ifarch s390x ppc aarch64 %{ix86}
cbe2c5
MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
cbe2c5
%endif
cbe2c5
%ifarch %{arm}
cbe2c5
MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--strip-debug"
cbe2c5
echo "ac_add_options --enable-linker=gold" >> .mozconfig
cbe2c5
%endif
cbe2c5
%endif
cbe2c5
%if 0%{?flatpak}
cbe2c5
# Make sure the linker can find libraries in /app/lib64 as we don't use
cbe2c5
# __global_ldflags that normally sets this.
cbe2c5
MOZ_LINK_FLAGS="$MOZ_LINK_FLAGS -L%{_libdir}"
cbe2c5
%endif
cbe2c5
%ifarch %{arm} %{ix86} %{s390x}
cbe2c5
export RUSTFLAGS="-Cdebuginfo=0"
cbe2c5
echo 'export RUSTFLAGS="-Cdebuginfo=0"' >> .mozconfig
cbe2c5
%endif
cbe2c5
#%ifarch aarch64
cbe2c5
#export RUSTFLAGS="-Cdebuginfo=0 -Clinker=/opt/rh/gcc-toolset-12/root/usr/bin/gcc"
cbe2c5
#echo 'export RUSTFLAGS="-Cdebuginfo=0 -Clinker=/opt/rh/gcc-toolset-12/root/usr/bin/gcc"' >> .mozconfig
cbe2c5
#%endif
cbe2c5
%if %{build_with_asan}
cbe2c5
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fsanitize=address -Dxmalloc=myxmalloc"
cbe2c5
MOZ_LINK_FLAGS="$MOZ_LINK_FLAGS -fsanitize=address -ldl"
71c2a1
%endif
8e9ec3
8e9ec3
%if 0%{?bundle_nss}
8e9ec3
  mkdir -p %{_buildrootdir}%{bundled_install_path}/%{_lib}
8e9ec3
  MOZ_LINK_FLAGS="-L%{_buildrootdir}%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
8e9ec3
  MOZ_LINK_FLAGS="-Wl,-rpath,%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
8e9ec3
  MOZ_LINK_FLAGS="-Wl,-rpath-link,%{_buildrootdir}%{bundled_install_path}/%{_lib} $MOZ_LINK_FLAGS"
9c0984
%endif
9c0984
cbe2c5
# We don't wantfirefox to use CK_GCM_PARAMS_V3 in nss
cbe2c5
MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -DNSS_PKCS11_3_0_STRICT"
71c2a1
8e9ec3
echo "export CFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
8e9ec3
echo "export CXXFLAGS=\"$MOZ_OPT_FLAGS\"" >> .mozconfig
8e9ec3
echo "export LDFLAGS=\"$MOZ_LINK_FLAGS\"" >> .mozconfig
8e9ec3
8e9ec3
%if %{build_with_clang}
cbe2c5
echo "export LLVM_PROFDATA=\"llvm-profdata\"" >> .mozconfig
cbe2c5
echo "export AR=\"llvm-ar\"" >> .mozconfig
cbe2c5
echo "export NM=\"llvm-nm\"" >> .mozconfig
cbe2c5
echo "export RANLIB=\"llvm-ranlib\"" >> .mozconfig
cbe2c5
echo "ac_add_options --enable-linker=lld" >> .mozconfig
8e9ec3
%else
cbe2c5
echo "export CC=gcc" >> .mozconfig
cbe2c5
echo "export CXX=g++" >> .mozconfig
cbe2c5
echo "export AR=\"gcc-ar\"" >> .mozconfig
cbe2c5
echo "export NM=\"gcc-nm\"" >> .mozconfig
cbe2c5
echo "export RANLIB=\"gcc-ranlib\"" >> .mozconfig
cbe2c5
%endif
cbe2c5
%if 0%{?build_with_pgo}
cbe2c5
echo "ac_add_options MOZ_PGO=1" >> .mozconfig
cbe2c5
# PGO build doesn't work with ccache
cbe2c5
export CCACHE_DISABLE=1
8e9ec3
%endif
71c2a1
71c2a1
MOZ_SMP_FLAGS=-j1
cbe2c5
# On x86_64 architectures, Mozilla can build up to 4 jobs at once in parallel,
cbe2c5
# however builds tend to fail on other arches when building in parallel.
cbe2c5
#%ifarch %{ix86} s390x %{arm} aarch64 ppc64le
cbe2c5
#[ -z "$RPM_BUILD_NCPUS" ] && \
cbe2c5
#     RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
cbe2c5
#[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
cbe2c5
#%endif
cbe2c5
#%ifarch x86_64 ppc ppc64 ppc64le
cbe2c5
[ -z "$RPM_BUILD_NCPUS" ] && \
8e9ec3
       RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
cbe2c5
[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
cbe2c5
[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
cbe2c5
[ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j8
cbe2c5
[ "$RPM_BUILD_NCPUS" -ge 16 ] && MOZ_SMP_FLAGS=-j16
cbe2c5
#%endif
9c0984
cbe2c5
echo "mk_add_options MOZ_MAKE_FLAGS=\"$MOZ_SMP_FLAGS\"" >> .mozconfig
cbe2c5
echo "mk_add_options MOZ_SERVICES_SYNC=1" >> .mozconfig
cbe2c5
echo "export STRIP=/bin/true" >> .mozconfig
cbe2c5
#export MACH_USE_SYSTEM_PYTHON=1
9c0984
cbe2c5
%if %{launch_wayland_compositor}
cbe2c5
cp %{SOURCE45} .
cbe2c5
. ./run-wayland-compositor
71c2a1
%endif
71c2a1
9c0984
%if 0%{?bundle_nss}
8e9ec3
  echo "Setting nss flags"
8e9ec3
  # nss-setup-flags-env.inc
8e9ec3
  %include_file %{SOURCE401}
8e9ec3
  export PATH=%{_buildrootdir}/%{bundled_install_path}/bin:$PATH
8e9ec3
  echo $PKG_CONFIG_PATH
9c0984
%endif
9c0984
cbe2c5
%if %{build_with_pgo}
cbe2c5
%if 0%{?test_on_wayland}
cbe2c5
env | grep "WAYLAND"
cbe2c5
MOZ_ENABLE_WAYLAND=1 ./mach build -v 2>&1 || exit 1
cbe2c5
%else
cbe2c5
xvfb-run ./mach build -v 2>&1 || exit 1
9c0984
%endif
9c0984
%else
cbe2c5
./mach build -v 2>&1 || exit 1
71c2a1
%endif
71c2a1
71c2a1
#---------------------------------------------------------------------
71c2a1
%install
8e9ec3
export MACH_USE_SYSTEM_PYTHON=1
71c2a1
function install_rpms_to_current_dir() {
71c2a1
    PACKAGE_RPM=$(eval echo $1)
71c2a1
    PACKAGE_DIR=%{_rpmdir}
71c2a1
71c2a1
    if [ ! -f $PACKAGE_DIR/$PACKAGE_RPM ]; then
71c2a1
        # Hack for tps tests
71c2a1
        ARCH_STR=%{_arch}
8e9ec3
        %ifarch %{ix86}
71c2a1
            ARCH_STR="i?86"
71c2a1
        %endif
8e9ec3
        PACKAGE_DIR="$PACKAGE_DIR/$ARCH_STR"
71c2a1
     fi
71c2a1
71c2a1
     for package in $(ls $PACKAGE_DIR/$PACKAGE_RPM)
71c2a1
     do
71c2a1
         echo "$package"
71c2a1
         rpm2cpio "$package" | cpio -idu
71c2a1
     done
71c2a1
}
71c2a1
9c0984
%if 0%{?bundle_nss}
9c0984
  pushd %{buildroot}
9c0984
  #install_rpms_to_current_dir nss-*.rpm
9c0984
  install_rpms_to_current_dir nspr-4*.rpm
9c0984
  install_rpms_to_current_dir nss-3*.rpm
9c0984
  install_rpms_to_current_dir nss-softokn-3*.rpm
9c0984
  install_rpms_to_current_dir nss-softokn-freebl-3*.rpm
9c0984
  install_rpms_to_current_dir nss-util-3*.rpm
8e9ec3
9c0984
  # cleanup unecessary nss files
8e9ec3
  #rm -rf %{_buildrootdir}/%{bundled_install_path}/bin
8e9ec3
  #rm -rf %{_buildrootdir}/%{bundled_install_path}/include
8e9ec3
  rm -rf %{buildroot}/%{bundled_install_path}/lib/dracut
8e9ec3
  rm -rf %{buildroot}/%{bundled_install_path}/%{_lib}/nss
8e9ec3
  #rm -rf %{_buildrootdir}/%{bundled_install_path}/%{_lib}/pkgconfig
8e9ec3
  rm -rf %{buildroot}/%{bundled_install_path}/%{_lib}/share
8e9ec3
  rm -rf %{buildroot}/%{bundled_install_path}/share
9c0984
  rm -rf %{buildroot}/etc/pki
9c0984
  rm -rf %{buildroot}/usr/lib/.build-id
9c0984
  rm -rf %{buildroot}/etc/crypto-policies
9c0984
  popd
9c0984
%endif
9c0984
cbe2c5
# run Firefox test suite
cbe2c5
%if %{launch_wayland_compositor}
cbe2c5
cp %{SOURCE45} .
cbe2c5
. ./run-wayland-compositor
cbe2c5
%endif
cbe2c5
cbe2c5
%if 0%{?run_firefox_tests}
cbe2c5
mkdir -p objdir/_virtualenvs/init_py3
cbe2c5
%{__cat} > objdir/_virtualenvs/init_py3/pip.conf << EOF
cbe2c5
[global]
cbe2c5
find-links=`pwd`/mochitest-python
cbe2c5
no-index=true
cbe2c5
EOF
cbe2c5
tar xf %{SOURCE37}
cbe2c5
cp %{SOURCE40} %{SOURCE41} %{SOURCE42} %{SOURCE38} %{SOURCE39} %{SOURCE43} %{SOURCE44} .
cbe2c5
mkdir -p test_results
cbe2c5
%if %{?test_on_wayland}
cbe2c5
./run-tests-wayland || true
cbe2c5
%else
cbe2c5
./run-tests-x11 || true
cbe2c5
%endif
cbe2c5
./print_results > test_summary.txt 2>&1 || true
cbe2c5
./print_failures || true
71c2a1
%endif
71c2a1
71c2a1
# set up our default bookmarks
cbe2c5
%if !0%{?flatpak}
cbe2c5
%{__cp} -p %{default_bookmarks_file} objdir/dist/bin/browser/chrome/browser/content/browser/default-bookmarks.html
cbe2c5
%endif
71c2a1
71c2a1
# Make sure locale works for langpacks
71c2a1
%{__cat} > objdir/dist/bin/browser/defaults/preferences/firefox-l10n.js << EOF
71c2a1
pref("general.useragent.locale", "chrome://global/locale/intl.properties");
71c2a1
EOF
71c2a1
71c2a1
DESTDIR=%{buildroot} make -C objdir install
71c2a1
71c2a1
%{__mkdir_p} %{buildroot}{%{_libdir},%{_bindir},%{_datadir}/applications}
71c2a1
71c2a1
desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE20}
cbe2c5
%if 0%{?rhel} >= 9
cbe2c5
desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE31}
cbe2c5
%endif
71c2a1
71c2a1
# set up the firefox start script
71c2a1
%{__rm} -rf %{buildroot}%{_bindir}/firefox
cbe2c5
%{__sed} -e 's,/__PREFIX__,%{_prefix},g' %{SOURCE21} > %{buildroot}%{_bindir}/firefox
71c2a1
%{__chmod} 755 %{buildroot}%{_bindir}/firefox
71c2a1
cbe2c5
%if 0%{?flatpak}
cbe2c5
sed -i -e 's|%FLATPAK_ENV_VARS%|export TMPDIR="$XDG_CACHE_HOME/tmp"|' %{buildroot}%{_bindir}/firefox
cbe2c5
%else
cbe2c5
sed -i -e 's|%FLATPAK_ENV_VARS%||' %{buildroot}%{_bindir}/firefox
cbe2c5
%endif
cbe2c5
cbe2c5
# Run firefox under wayland only on RHEL9 and newer
cbe2c5
%if 0%{?rhel} < 9
cbe2c5
sed -i -e 's|%DISABLE_WAYLAND_PLACEHOLDER%|export MOZ_DISABLE_WAYLAND=1|' %{buildroot}%{_bindir}/firefox
cbe2c5
%else
cbe2c5
sed -i -e 's|%DISABLE_WAYLAND_PLACEHOLDER%||' %{buildroot}%{_bindir}/firefox
cbe2c5
# firefox-x11 launch script for RHEL9 only
cbe2c5
%{__sed} -e 's,/__PREFIX__,%{_prefix},g' %{SOURCE30} > %{buildroot}%{_bindir}/firefox-x11
cbe2c5
%{__chmod} 755 %{buildroot}%{_bindir}/firefox-x11
cbe2c5
%endif
cbe2c5
71c2a1
%{__install} -p -D -m 644 %{SOURCE23} %{buildroot}%{_mandir}/man1/firefox.1
71c2a1
71c2a1
%{__rm} -f %{buildroot}/%{mozappdir}/firefox-config
71c2a1
%{__rm} -f %{buildroot}/%{mozappdir}/update-settings.ini
71c2a1
71c2a1
for s in 16 22 24 32 48 256; do
71c2a1
    %{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps
71c2a1
    %{__cp} -p browser/branding/official/default${s}.png \
71c2a1
               %{buildroot}%{_datadir}/icons/hicolor/${s}x${s}/apps/firefox.png
71c2a1
done
71c2a1
71c2a1
# Install hight contrast icon
71c2a1
%{__mkdir_p} %{buildroot}%{_datadir}/icons/hicolor/symbolic/apps
71c2a1
%{__cp} -p %{SOURCE25} \
71c2a1
           %{buildroot}%{_datadir}/icons/hicolor/symbolic/apps
71c2a1
71c2a1
echo > %{name}.lang
cbe2c5
%if %{with langpacks}
71c2a1
# Extract langpacks, make any mods needed, repack the langpack, and install it.
71c2a1
%{__mkdir_p} %{buildroot}%{langpackdir}
71c2a1
%{__tar} xf %{SOURCE1}
71c2a1
for langpack in `ls firefox-langpacks/*.xpi`; do
71c2a1
  language=`basename $langpack .xpi`
71c2a1
  extensionID=langpack-$language@firefox.mozilla.org
71c2a1
  %{__mkdir_p} $extensionID
71c2a1
  unzip -qq $langpack -d $extensionID
71c2a1
  find $extensionID -type f | xargs chmod 644
71c2a1
71c2a1
  cd $extensionID
71c2a1
  zip -qq -r9mX ../${extensionID}.xpi *
71c2a1
  cd -
71c2a1
71c2a1
  %{__install} -m 644 ${extensionID}.xpi %{buildroot}%{langpackdir}
71c2a1
  language=`echo $language | sed -e 's/-/_/g'`
cbe2c5
%if 0%{?flatpak}
cbe2c5
  echo "%{langpackdir}/${extensionID}.xpi" >> %{name}.lang
cbe2c5
%else
71c2a1
  echo "%%lang($language) %{langpackdir}/${extensionID}.xpi" >> %{name}.lang
cbe2c5
%endif
71c2a1
done
71c2a1
%{__rm} -rf firefox-langpacks
71c2a1
71c2a1
# Install langpack workaround (see #707100, #821169)
71c2a1
function create_default_langpack() {
71c2a1
language_long=$1
71c2a1
language_short=$2
71c2a1
cd %{buildroot}%{langpackdir}
71c2a1
ln -s langpack-$language_long@firefox.mozilla.org.xpi langpack-$language_short@firefox.mozilla.org.xpi
71c2a1
cd -
71c2a1
echo "%%lang($language_short) %{langpackdir}/langpack-$language_short@firefox.mozilla.org.xpi" >> %{name}.lang
71c2a1
}
71c2a1
71c2a1
# Table of fallbacks for each language
71c2a1
# please file a bug at bugzilla.redhat.com if the assignment is incorrect
cbe2c5
#create_default_langpack "bn-IN" "bn"
71c2a1
create_default_langpack "es-AR" "es"
71c2a1
create_default_langpack "fy-NL" "fy"
71c2a1
create_default_langpack "ga-IE" "ga"
71c2a1
create_default_langpack "gu-IN" "gu"
71c2a1
create_default_langpack "hi-IN" "hi"
71c2a1
create_default_langpack "hy-AM" "hy"
71c2a1
create_default_langpack "nb-NO" "nb"
71c2a1
create_default_langpack "nn-NO" "nn"
71c2a1
create_default_langpack "pa-IN" "pa"
71c2a1
create_default_langpack "pt-PT" "pt"
71c2a1
create_default_langpack "sv-SE" "sv"
71c2a1
create_default_langpack "zh-TW" "zh"
d445b2
%endif
71c2a1
71c2a1
# Keep compatibility with the old preference location.
71c2a1
%{__mkdir_p} %{buildroot}%{mozappdir}/defaults/preferences
71c2a1
%{__mkdir_p} %{buildroot}%{mozappdir}/browser/defaults
71c2a1
ln -s %{mozappdir}/defaults/preferences $RPM_BUILD_ROOT/%{mozappdir}/browser/defaults/preferences
71c2a1
# Default preferences
71c2a1
%{__cp} %{SOURCE12} %{buildroot}%{mozappdir}/defaults/preferences/all-redhat.js
feb268
sed -i -e 's|%PREFIX%|%{_prefix}|' %{buildroot}%{mozappdir}/defaults/preferences/all-redhat.js
8e9ec3
# Enable modern crypto for the key export on the RHEL9 only (rhbz#1764205)
8e9ec3
%if 0%{?rhel} == 9
8e9ec3
  echo 'pref("security.pki.use_modern_crypto_with_pkcs12", true);' >> %{buildroot}%{mozappdir}/defaults/preferences/all-redhat.js
8e9ec3
%endif
8e9ec3
cbe2c5
%ifarch s390x
8e9ec3
  echo 'pref("gfx.webrender.force-disabled", true);' >> %{buildroot}%{mozappdir}/defaults/preferences/all-redhat.js
8e9ec3
%endif
8e9ec3
cbe2c5
%ifarch s390x ppc64
cbe2c5
  echo 'pref("gfx.webrender.force-disabled", true);' >> %{buildroot}%{mozappdir}/defaults/preferences/all-redhat.js
cbe2c5
%endif
71c2a1
71c2a1
# System config dir
71c2a1
%{__mkdir_p} %{buildroot}/%{_sysconfdir}/%{name}/pref
71c2a1
71c2a1
# System extensions
71c2a1
%{__mkdir_p} %{buildroot}%{_datadir}/mozilla/extensions/%{firefox_app_id}
71c2a1
%{__mkdir_p} %{buildroot}%{_libdir}/mozilla/extensions/%{firefox_app_id}
71c2a1
71c2a1
# Copy over the LICENSE
71c2a1
%{__install} -p -c -m 644 LICENSE %{buildroot}/%{mozappdir}
71c2a1
71c2a1
# Use the system hunspell dictionaries
71c2a1
%{__rm} -rf %{buildroot}%{mozappdir}/dictionaries
71c2a1
ln -s %{_datadir}/myspell %{buildroot}%{mozappdir}/dictionaries
71c2a1
cbe2c5
%if 0%{?run_firefox_tests}
cbe2c5
%{__mkdir_p} %{buildroot}/%{version}-%{release}/test_results
cbe2c5
%{__cp} test_results/* %{buildroot}/%{version}-%{release}/test_results
cbe2c5
%{__cp} test_summary.txt %{buildroot}/%{version}-%{release}/
cbe2c5
%{__cp} failures-* %{buildroot}/%{version}-%{release}/ || true
71c2a1
%endif
71c2a1
71c2a1
# Copy over run-mozilla.sh
71c2a1
%{__cp} build/unix/run-mozilla.sh %{buildroot}%{mozappdir}
71c2a1
71c2a1
# Add distribution.ini
71c2a1
%{__mkdir_p} %{buildroot}%{mozappdir}/distribution
71c2a1
%{__cp} %{SOURCE26} %{buildroot}%{mozappdir}/distribution
71c2a1
cbe2c5
# Install appdata file
cbe2c5
mkdir -p %{buildroot}%{_datadir}/metainfo
cbe2c5
%{__sed} -e "s/__VERSION__/%{version}/" \
cbe2c5
         -e "s/__DATE__/$(date '+%Y-%m-%d')/" \
cbe2c5
         %{SOURCE33} > %{buildroot}%{_datadir}/metainfo/firefox.appdata.xml
cbe2c5
cbe2c5
# Install Gnome search provider files
cbe2c5
mkdir -p %{buildroot}%{_datadir}/gnome-shell/search-providers
cbe2c5
%{__cp} %{SOURCE34} %{buildroot}%{_datadir}/gnome-shell/search-providers
cbe2c5
cbe2c5
# Remove gtk2 support as flash plugin is no longer supported
cbe2c5
rm -rf %{buildroot}%{mozappdir}/gtk2/
d445b2
71c2a1
# Remove copied libraries to speed up build
71c2a1
rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libmozjs.so
71c2a1
rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libmozalloc.so
71c2a1
rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libxul.so
cbe2c5
cbe2c5
# Create a symlink to replace libnssckbi.so with p11-kit-client.so
cbe2c5
# instead of p11-kit-trust.so, so that Firefox can see the system
cbe2c5
# trust store on the host through the p11-kit RPC protocol.  A symlink
cbe2c5
# to libnss3.so is also needed, because Firefox tries to load
cbe2c5
# libnssckbi.so from the same directory where libnss3.so is loaded (as
cbe2c5
# of Firefox 89).
cbe2c5
%if 0%{?flatpak}
cbe2c5
ln -sf /usr/lib64/libnss3.so %{buildroot}%{_libdir}/libnss3.so
cbe2c5
ln -sf /usr/lib64/pkcs11/p11-kit-client.so %{buildroot}%{_libdir}/libnssckbi.so
cbe2c5
%endif
71c2a1
#---------------------------------------------------------------------
71c2a1
cbe2c5
%check
cbe2c5
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/*.appdata.xml
cbe2c5
71c2a1
%preun
71c2a1
# is it a final removal?
71c2a1
if [ $1 -eq 0 ]; then
71c2a1
  %{__rm} -rf %{mozappdir}/components
71c2a1
  %{__rm} -rf %{mozappdir}/extensions
71c2a1
  %{__rm} -rf %{mozappdir}/plugins
71c2a1
fi
71c2a1
71c2a1
%clean
71c2a1
rm -rf %{_srcrpmdir}/libffi*.src.rpm
71c2a1
find %{_rpmdir} -name "libffi*.rpm" -delete
6588a7
rm -rf %{_srcrpmdir}/openssl*.src.rpm
6588a7
find %{_rpmdir} -name "openssl*.rpm" -delete
9c0984
rm -rf %{_srcrpmdir}/nss*.src.rpm
9c0984
find %{_rpmdir} -name "nss*.rpm" -delete
9c0984
rm -rf %{_srcrpmdir}/nspr*.src.rpm
9c0984
find %{_rpmdir} -name "nspr*.rpm" -delete
71c2a1
71c2a1
%post
71c2a1
update-desktop-database &> /dev/null || :
71c2a1
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
71c2a1
71c2a1
%postun
71c2a1
update-desktop-database &> /dev/null || :
71c2a1
if [ $1 -eq 0 ] ; then
71c2a1
    touch --no-create %{_datadir}/icons/hicolor &>/dev/null
71c2a1
    gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
cbe2c5
    %{__rm} -rf %{langpackdir}
71c2a1
fi
71c2a1
71c2a1
%posttrans
71c2a1
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
71c2a1
71c2a1
%files -f %{name}.lang
71c2a1
%{_bindir}/firefox
71c2a1
%{mozappdir}/firefox
71c2a1
%{mozappdir}/firefox-bin
71c2a1
%doc %{_mandir}/man1/*
71c2a1
%dir %{_sysconfdir}/%{name}
71c2a1
%dir %{_sysconfdir}/%{name}/*
71c2a1
%dir %{_datadir}/mozilla/extensions/*
71c2a1
%dir %{_libdir}/mozilla/extensions/*
cbe2c5
%{_datadir}/applications/%{name}.desktop
cbe2c5
%{_datadir}/metainfo/*.appdata.xml
cbe2c5
%{_datadir}/gnome-shell/search-providers/*.ini
71c2a1
%dir %{mozappdir}
cbe2c5
%license %{mozappdir}/LICENSE
71c2a1
%{mozappdir}/browser/chrome
71c2a1
%{mozappdir}/defaults/preferences/*
71c2a1
%{mozappdir}/browser/defaults/preferences
71c2a1
%{mozappdir}/browser/features/*.xpi
71c2a1
%{mozappdir}/distribution/distribution.ini
cbe2c5
# That's Windows only
cbe2c5
%ghost %{mozappdir}/browser/features/aushelper@mozilla.org.xpi
cbe2c5
%if %{with langpacks}
71c2a1
%dir %{langpackdir}
71c2a1
%endif
71c2a1
%{mozappdir}/browser/omni.ja
71c2a1
%{mozappdir}/run-mozilla.sh
71c2a1
%{mozappdir}/application.ini
71c2a1
%{mozappdir}/pingsender
71c2a1
%exclude %{mozappdir}/removed-files
cbe2c5
%if 0%{?flatpak}
cbe2c5
%{_libdir}/libnss3.so
cbe2c5
%{_libdir}/libnssckbi.so
cbe2c5
%endif
71c2a1
%{_datadir}/icons/hicolor/16x16/apps/firefox.png
71c2a1
%{_datadir}/icons/hicolor/22x22/apps/firefox.png
71c2a1
%{_datadir}/icons/hicolor/24x24/apps/firefox.png
71c2a1
%{_datadir}/icons/hicolor/256x256/apps/firefox.png
71c2a1
%{_datadir}/icons/hicolor/32x32/apps/firefox.png
71c2a1
%{_datadir}/icons/hicolor/48x48/apps/firefox.png
71c2a1
%{_datadir}/icons/hicolor/symbolic/apps/firefox-symbolic.svg
cbe2c5
%if %{enable_mozilla_crashreporter}
cbe2c5
%{mozappdir}/crashreporter
cbe2c5
%{mozappdir}/crashreporter.ini
cbe2c5
%{mozappdir}/minidump-analyzer
cbe2c5
%{mozappdir}/Throbber-small.gif
cbe2c5
%{mozappdir}/browser/crashreporter-override.ini
cbe2c5
%endif
71c2a1
%{mozappdir}/*.so
71c2a1
%{mozappdir}/defaults/pref/channel-prefs.js
71c2a1
%{mozappdir}/dependentlibs.list
71c2a1
%{mozappdir}/dictionaries
71c2a1
%{mozappdir}/omni.ja
71c2a1
%{mozappdir}/platform.ini
71c2a1
%{mozappdir}/plugin-container
71c2a1
%{mozappdir}/gmp-clearkey
cbe2c5
%{mozappdir}/fonts/TwemojiMozilla.ttf
71c2a1
%if !%{?system_nss}
71c2a1
%exclude %{mozappdir}/libnssckbi.so
71c2a1
%endif
cbe2c5
%if %{build_with_asan}
cbe2c5
%{mozappdir}/llvm-symbolizer
71c2a1
%endif
71c2a1
9c0984
%if 0%{?bundle_nss}
9c0984
%{mozappdir}/bundled/%{_lib}/libfreebl*
9c0984
%{mozappdir}/bundled/%{_lib}/libnss3*
9c0984
%{mozappdir}/bundled/%{_lib}/libnssdbm3*
9c0984
%{mozappdir}/bundled/%{_lib}/libnssutil3*
9c0984
%{mozappdir}/bundled/%{_lib}/libsmime3*
9c0984
%{mozappdir}/bundled/%{_lib}/libsoftokn*
9c0984
%{mozappdir}/bundled/%{_lib}/libssl3*
9c0984
%{mozappdir}/bundled/%{_lib}/libnspr4.so
9c0984
%{mozappdir}/bundled/%{_lib}/libplc4.so
9c0984
%{mozappdir}/bundled/%{_lib}/libplds4.so
9c0984
%endif
9c0984
71c2a1
#---------------------------------------------------------------------
71c2a1
71c2a1
%changelog
dd0f02
* Tue Mar 28 2023 CentOS Sources <bugs@centos.org> - 102.8.0-2.el8.centos
dd0f02
- Apply debranding changes
dd0f02
cbe2c5
* Tue Feb 14 2023 Eike Rathke <erack@redhat.com> - 102.8.0-2
cbe2c5
- Update to 102.8.0 build2
cbe2c5
cbe2c5
* Tue Feb 07 2023 Eike Rathke <erack@redhat.com> - 102.8.0-1
cbe2c5
- Update to 102.8.0 build1
b19f13
cbe2c5
* Tue Jan 10 2023 Eike Rathke <erack@redhat.com> - 102.7.0-1
cbe2c5
- Update to 102.7.0 build1
cbe2c5
cbe2c5
* Mon Jan 02 2023 Jan Horak <jhorak@redhat.com> - 102.6.0-2
cbe2c5
- Add firefox-x11 subpackage to allow explicit run of firefox under x11 on RHEL9
cbe2c5
cbe2c5
* Tue Dec 06 2022 Eike Rathke <erack@redhat.com> - 102.6.0-1
cbe2c5
- Update to 102.6.0 build1
cbe2c5
cbe2c5
* Fri Nov 25 2022 Jan Horak <jhorak@redhat.com> - 102.5.0-2
cbe2c5
- Added libwebrtc screencast patch for newer features
cbe2c5
cbe2c5
* Wed Nov 09 2022 Eike Rathke <erack@redhat.com> - 102.5.0-1
cbe2c5
- Update to 102.5.0 build1
cbe2c5
cbe2c5
* Wed Oct 12 2022 Eike Rathke <erack@redhat.com> - 102.4.0-1
cbe2c5
- Update to 102.4.0 build1
cbe2c5
cbe2c5
* Tue Oct 11 2022 Jan Horak <jhorak@redhat.com> - 102.3.0-7
cbe2c5
- Fix for expat CVE-2022-40674 and non functional webrtc
cbe2c5
cbe2c5
* Tue Sep 13 2022 Jan Horak <jhorak@redhat.com> - 102.3.0-6
cbe2c5
- Update to 102.3.0 build1
356ae4
356ae4
* Thu Jul 21 2022 Eike Rathke <erack@redhat.com> - 91.12.0-1
356ae4
- Update to 91.12.0 build1
356ae4
356ae4
* Thu Jun 23 2022 Eike Rathke <erack@redhat.com> - 91.11.0-2
356ae4
- Update to 91.11.0 build2
356ae4
356ae4
* Tue Jun 21 2022 Eike Rathke <erack@redhat.com> - 91.11.0-1
356ae4
- Update to 91.11.0 build1
356ae4
356ae4
* Tue May 24 2022 Eike Rathke <erack@redhat.com> - 91.10.0-1
356ae4
- Update to 91.10.0 build1
356ae4
356ae4
* Fri May 20 2022 Jan Horak <jhorak@redhat.com> - 91.9.1-1
356ae4
- Update to 91.9.1 build1
356ae4
356ae4
* Tue Apr 26 2022 Eike Rathke <erack@redhat.com> - 91.9.0-1
356ae4
- Update to 91.9.0
356ae4
356ae4
* Tue Apr 05 2022 Eike Rathke <erack@redhat.com> - 91.8.0-1
356ae4
- Update to 91.8.0
356ae4
356ae4
* Mon Mar 07 2022 Eike Rathke <erack@redhat.com> - 91.7.0-3
356ae4
- Update to 91.7.0 build3
356ae4
356ae4
* Wed Mar 02 2022 Jan Horak <jhorak@redhat.com> - 91.7.0-2
356ae4
- Added expat backports of CVE-2022-25235, CVE-2022-25236 and CVE-2022-25315
356ae4
356ae4
* Tue Mar 01 2022 Eike Rathke <erack@redhat.com> - 91.7.0-1
356ae4
- Update to 91.7.0 build2
356ae4
356ae4
* Fri Feb 25 2022 Jan Horak <jhorak@redhat.com> - 91.6.0-2
356ae4
- Install langpacks to the browser/extensions to make them available in UI:
356ae4
  rhbz#2030190
356ae4
356ae4
* Wed Feb 02 2022 Eike Rathke <erack@redhat.com> - 91.6.0-1
356ae4
- Update to 91.6.0 build1
356ae4
356ae4
* Wed Feb 02 2022 Jan Horak <jhorak@redhat.com> - 91.5.0-2
356ae4
- Use default update channel to fix non working enterprise policies:
356ae4
  rhbz#2044667
356ae4
356ae4
* Thu Jan 06 2022 Eike Rathke <erack@redhat.com> - 91.5.0-1
356ae4
- Update to 91.5.0 build1
356ae4
356ae4
* Mon Dec 13 2021 Jan Horak <jhorak@redhat.com> - 91.4.0-2
356ae4
- Added fix for failing addons signatures.
ec7f3d
8e9ec3
* Wed Dec 01 2021 Eike Rathke <erack@redhat.com> - 91.4.0-1
8e9ec3
- Update to 91.4.0 build1
8e9ec3
8e9ec3
* Mon Nov 01 2021 Eike Rathke <erack@redhat.com> - 91.3.0-1
8e9ec3
- Update to 91.3.0 build1
8e9ec3
8e9ec3
* Thu Oct 21 2021 Jan Horak <jhorak@redhat.com> - 91.2.0-5
8e9ec3
- Fixed crashes when FIPS is enabled.
8e9ec3
8e9ec3
* Mon Oct 04 2021 Jan Horak <jhorak@redhat.com> - 91.2.0-4
8e9ec3
- Disable webrender on the s390x due to wrong colors: rhbz#2009503
8e9ec3
8e9ec3
* Wed Sep 29 2021 Jan Horak <jhorak@redhat.com> - 91.2.0-3
8e9ec3
- Update to 91.2.0 build1
8e9ec3
8e9ec3
* Wed Sep 15 2021 Jan Horak <jhorak@redhat.com> - 91.1.0-1
8e9ec3
- Update to 91.1.0 build1
8e9ec3
8e9ec3
* Tue Aug 17 2021 Jan Horak <jhorak@redhat.com>
8e9ec3
- Update to 91.0.1 build1
83633a
8e9ec3
* Tue Aug 10 2021 Jan Horak <jhorak@redhat.com> - 91.0-1
8e9ec3
- Update to 91.0 ESR
feb268
8e9ec3
* Thu Jul 29 2021 Jan Horak <jhorak@redhat.com> - 91.0-1
8e9ec3
- Update to 91.0b8
feb268
feb268
* Fri Jul 16 2021 Jan Horak <jhorak@redhat.com> - 78.12.0-2
feb268
- Rebuild to pickup older nss
feb268
feb268
* Wed Jul 07 2021 Eike Rathke <erack@redhat.com> - 78.12.0-1
feb268
- Update to 78.12.0 build1
feb268
feb268
* Mon May 31 2021 Eike Rathke <erack@redhat.com> - 78.11.0-3
feb268
- Update to 78.11.0 build2 (release)
feb268
feb268
* Thu May 27 2021 Eike Rathke <erack@redhat.com> - 78.11.0-2
feb268
- Fix rhel_minor_version for dist .el8_4 and .el8
feb268
feb268
* Tue May 25 2021 Eike Rathke <erack@redhat.com> - 78.11.0-1
feb268
- Update to 78.11.0 build1
feb268
feb268
* Tue Apr 20 2021 Eike Rathke <erack@redhat.com> - 78.10.0-1
feb268
- Update to 78.10.0
feb268
feb268
* Wed Mar 17 2021 Eike Rathke <erack@redhat.com> - 78.9.0-1
feb268
- Update to 78.9.0 build1
feb268
feb268
* Wed Feb 17 2021 Eike Rathke <erack@redhat.com> - 78.8.0-1
feb268
- Update to 78.8.0 build2
feb268
feb268
* Tue Feb 09 2021 Eike Rathke <erack@redhat.com> - 78.7.1-1
feb268
- Update to 78.7.1
feb268
feb268
* Tue Feb 09 2021 Jan Horak <jhorak@redhat.com> - 78.7.0-3
feb268
- Fixing install prefix for the homepage
feb268
9c0984
* Fri Jan 22 2021 Eike Rathke <erack@redhat.com> - 78.7.0-2
9c0984
- Update to 78.7.0 build2
9c0984
9c0984
* Wed Jan 20 2021 Eike Rathke <erack@redhat.com> - 78.7.0-1
9c0984
- Update to 78.7.0 build1
9c0984
9c0984
* Wed Jan  6 2021 Eike Rathke <erack@redhat.com> - 78.6.1-1
9c0984
- Update to 78.6.1 build1
9c0984
9c0984
* Thu Dec 10 2020 Jan Horak <jhorak@redhat.com> - 78.6.0-1
9c0984
- Update to 78.6.0 build1
9c0984
9c0984
* Wed Nov 18 2020 Jan Horak <jhorak@redhat.com> - 78.5.0-1
9c0984
- Update to 78.5.0 build1
9c0984
9c0984
* Tue Nov 10 2020 erack@redhat.com - 78.4.1-1
9c0984
- Update to 78.4.1
9c0984
9c0984
* Tue Nov 10 2020 Jan Horak <jhorak@redhat.com> - 78.4.0-3
9c0984
- Fixing flatpak build, fixing firefox.sh.in to not disable langpacks loading
9c0984
9c0984
* Thu Oct 29 2020 Jan Horak <jhorak@redhat.com> - 78.4.0-2
9c0984
- Enable addon sideloading
9c0984
9c0984
* Fri Oct 16 2020 Jan Horak <jhorak@redhat.com> - 78.4.0-1
9c0984
- Update to 78.4.0 build2
9c0984
9c0984
* Fri Sep 18 2020 Jan Horak <jhorak@redhat.com>
9c0984
- Update to 78.3.0 build1
9c0984
9c0984
* Tue Aug 18 2020 Jan Horak <jhorak@redhat.com> - 78.2.0-3
9c0984
- Update to 78.2.0 build1
9c0984
9c0984
* Fri Jul 24 2020 Jan Horak <jhorak@redhat.com>
9c0984
- Update to 68.11.0 build1
9c0984
9c0984
* Fri Jun 26 2020 Jan Horak <jhorak@redhat.com>
9c0984
- Update to 68.10.0 build1
9c0984
d445b2
* Fri May 29 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.9.0 build1
d445b2
- Added patch for pipewire 0.3
d445b2
d445b2
* Mon May 11 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Added s390x specific patches
d445b2
d445b2
* Wed Apr 29 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.8.0 build1
d445b2
d445b2
* Thu Apr 23 2020 Martin Stransky <stransky@redhat.com> - 68.7.0-3
d445b2
- Added fix for rhbz#1821418
d445b2
d445b2
* Tue Apr 07 2020 Jan Horak <jhorak@redhat.com> - 68.7.0-2
d445b2
- Update to 68.7.0 build3
d445b2
d445b2
* Mon Apr  6 2020 Jan Horak <jhorak@redhat.com> - 68.6.1-1
d445b2
- Update to 68.6.1 ESR
d445b2
d445b2
* Wed Mar 04 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.6.0 build1
d445b2
d445b2
* Mon Feb 24 2020 Martin Stransky <stransky@redhat.com> - 68.5.0-3
d445b2
- Added fix for rhbz#1805667
d445b2
- Enabled mzbz@1170092 - Firefox prefs at /etc
d445b2
d445b2
* Fri Feb 07 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.5.0 build2
d445b2
d445b2
* Wed Feb 05 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.5.0 build1
d445b2
d445b2
* Wed Jan 08 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.4.1esr build1
d445b2
d445b2
* Fri Jan 03 2020 Jan Horak <jhorak@redhat.com>
d445b2
- Update to 68.4.0esr build1
d445b2
d445b2
* Wed Dec 18 2019 Jan Horak <jhorak@redhat.com>
d445b2
- Fix for wrong intl.accept_lang when using non en-us langpack
d445b2
6588a7
* Wed Nov 27 2019 Martin Stransky <stransky@redhat.com> - 68.3.0-1
6588a7
- Update to 68.3.0 ESR
6588a7
6588a7
* Thu Oct 24 2019 Martin Stransky <stransky@redhat.com> - 68.2.0-4
6588a7
- Added patch for TLS 1.3 support.
6588a7
6588a7
* Wed Oct 23 2019 Martin Stransky <stransky@redhat.com> - 68.2.0-3
6588a7
- Rebuild
6588a7
6588a7
* Mon Oct 21 2019 Martin Stransky <stransky@redhat.com> - 68.2.0-2
6588a7
- Rebuild
6588a7
6588a7
* Thu Oct 17 2019 Martin Stransky <stransky@redhat.com> - 68.2.0-1
6588a7
- Update to 68.2.0 ESR
6588a7
6588a7
* Thu Oct 10 2019 Martin Stransky <stransky@redhat.com> - 68.1.0-6
6588a7
- Enable system nss on RHEL6
6588a7
6588a7
* Thu Sep  5 2019 Jan Horak <jhorak@redhat.com> - 68.1.0-2
6588a7
- Enable building langpacks
6588a7
6588a7
* Wed Aug 28 2019 Jan Horak <jhorak@redhat.com> - 68.1.0-1
6588a7
- Update to 68.1.0 ESR
6588a7
6588a7
* Mon Aug 5 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-4
6588a7
- Enable system nss
6588a7
6588a7
* Mon Jul 29 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-3
6588a7
- Enable official branding
6588a7
6588a7
* Fri Jul 26 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-2
6588a7
- Enabled PipeWire on RHEL8
71c2a1
6588a7
* Fri Jul 26 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-1
6588a7
- Updated to 68.0.1 ESR
71c2a1
6588a7
* Tue Jul 16 2019 Jan Horak <jhorak@redhat.com> - 68.0-0.11
6588a7
- Update to 68.0 ESR
71c2a1
6588a7
* Tue Jun 25 2019 Martin Stransky <stransky@redhat.com> - 68.0-0.10
6588a7
- Updated to 68.0 alpha 13
6588a7
- Enabled second arches
71c2a1
6588a7
* Fri Mar 22 2019 Martin Stransky <stransky@redhat.com> - 68.0-0.1
6588a7
- Updated to 68.0 alpha
71c2a1
71c2a1
* Fri Mar 15 2019 Martin Stransky <stransky@redhat.com> - 60.6.0-3
71c2a1
- Added Google API keys (mozbz#1531176)
71c2a1
71c2a1
* Thu Mar 14 2019 Martin Stransky <stransky@redhat.com> - 60.6.0-2
71c2a1
- Update to 60.6.0 ESR (Build 2)
71c2a1
71c2a1
* Wed Mar 13 2019 Martin Stransky <stransky@redhat.com> - 60.6.0-1
71c2a1
- Update to 60.6.0 ESR (Build 1)
71c2a1
71c2a1
* Wed Feb 13 2019 Jan Horak <jhorak@redhat.com> - 60.5.1-1
71c2a1
- Update to 60.5.1 ESR
71c2a1
71c2a1
* Wed Feb 6 2019 Martin Stransky <stransky@redhat.com> - 60.5.0-3
71c2a1
- Added fix for rhbz#1672424 - Firefox crashes on NFS drives.
71c2a1
71c2a1
* Fri Jan 25 2019 Martin Stransky <stransky@redhat.com> - 60.5.0-2
71c2a1
- Updated to 60.5.0 ESR build2
71c2a1
71c2a1
* Tue Jan 22 2019 Martin Stransky <stransky@redhat.com> - 60.5.0-1
71c2a1
- Updated to 60.5.0 ESR build1
71c2a1
71c2a1
* Thu Jan 10 2019 Jan Horak <jhorak@redhat.com> - 60.4.0-3
71c2a1
- Fixing fontconfig warnings (rhbz#1601475)
71c2a1
71c2a1
* Wed Jan  9 2019 Jan Horak <jhorak@redhat.com> - 60.4.0-2
71c2a1
- Added pipewire patch from Tomas Popela (rhbz#1664270)
71c2a1
71c2a1
* Wed Dec  5 2018 Jan Horak <jhorak@redhat.com> - 60.4.0-1
71c2a1
- Update to 60.4.0 ESR
71c2a1
71c2a1
* Tue Dec  4 2018 Jan Horak <jhorak@redhat.com> - 60.3.0-2
71c2a1
- Added firefox-gnome-shell-extension
71c2a1
71c2a1
* Fri Oct 19 2018 Jan Horak <jhorak@redhat.com> - 60.3.0-1
71c2a1
- Update to 60.3.0 ESR
71c2a1
71c2a1
* Wed Oct 10 2018 Jan Horak <jhorak@redhat.com> - 60.2.2-2
71c2a1
- Added patch for rhbz#1633932
71c2a1
71c2a1
* Tue Oct  2 2018 Jan Horak <jhorak@redhat.com> - 60.2.2-1
71c2a1
- Update to 60.2.2 ESR
71c2a1
71c2a1
* Mon Sep 24 2018 Jan Horak <jhorak@redhat.com> - 60.2.1-1
71c2a1
- Update to 60.2.1 ESR
71c2a1
71c2a1
* Fri Aug 31 2018 Jan Horak <jhorak@redhat.com> - 60.2.0-1
71c2a1
- Update to 60.2.0 ESR
71c2a1
71c2a1
* Tue Aug 28 2018 Jan Horak <jhorak@redhat.com> - 60.1.0-9
71c2a1
- Do not set user agent (rhbz#1608065)
71c2a1
- GTK dialogs are localized now (rhbz#1619373)
71c2a1
- JNLP association works again (rhbz#1607457)
71c2a1
71c2a1
* Thu Aug 16 2018 Jan Horak <jhorak@redhat.com> - 60.1.0-8
71c2a1
- Fixed homepage and bookmarks (rhbz#1606778)
71c2a1
- Fixed missing file associations in RHEL6 (rhbz#1613565)
71c2a1
71c2a1
* Thu Jul 12 2018 Jan Horak <jhorak@redhat.com> - 60.1.0-7
71c2a1
- Run at-spi-bus if not running already (for the bundled gtk3)
71c2a1
71c2a1
* Mon Jul  9 2018 Jan Horak <jhorak@redhat.com> - 60.1.0-6
71c2a1
- Fix for missing schemes for bundled gtk3
71c2a1
71c2a1
* Mon Jun 25 2018 Martin Stransky <stransky@redhat.com> - 60.1.0-5
71c2a1
- Added mesa-libEGL dependency to gtk3/rhel6
71c2a1
71c2a1
* Sun Jun 24 2018 Martin Stransky <stransky@redhat.com> - 60.1.0-4
71c2a1
- Disabled jemalloc on all second arches
71c2a1
71c2a1
* Fri Jun 22 2018 Martin Stransky <stransky@redhat.com> - 60.1.0-3
71c2a1
- Updated to 60.1.0 ESR build2
71c2a1
71c2a1
* Thu Jun 21 2018 Martin Stransky <stransky@redhat.com> - 60.1.0-2
71c2a1
- Disabled jemalloc on second arches
71c2a1
71c2a1
* Wed Jun 20 2018 Martin Stransky <stransky@redhat.com> - 60.1.0-1
71c2a1
- Updated to 60.1.0 ESR
71c2a1
71c2a1
* Wed Jun 13 2018 Jan Horak <jhorak@redhat.com> - 60.0-12
71c2a1
- Fixing bundled libffi issues
71c2a1
- Readded some requirements
71c2a1
71c2a1
* Mon Jun 11 2018 Martin Stransky <stransky@redhat.com> - 60.0-10
71c2a1
- Added fix for mozilla BZ#1436242 - IPC crashes.
71c2a1
71c2a1
* Mon Jun 11 2018 Jan Horak <jhorak@redhat.com> - 60.0-9
71c2a1
- Bundling libffi for the sec-arches
71c2a1
- Added openssl-devel for the Python
71c2a1
- Fixing bundled gtk3
71c2a1
71c2a1
* Fri May 18 2018 Martin Stransky <stransky@redhat.com> - 60.0-8
71c2a1
- Added fix for mozilla BZ#1458492
71c2a1
71c2a1
* Wed May 16 2018 Martin Stransky <stransky@redhat.com> - 60.0-7
71c2a1
- Added patch from rhbz#1498561 to fix ppc64(le) crashes.
71c2a1
71c2a1
* Wed May 16 2018 Martin Stransky <stransky@redhat.com> - 60.0-6
71c2a1
- Disabled jemalloc on second arches
71c2a1
71c2a1
* Sun May  6 2018 Jan Horak <jhorak@redhat.com> - 60.0-4
71c2a1
- Update to 60.0 ESR
71c2a1
71c2a1
* Thu Mar  8 2018 Jan Horak <jhorak@redhat.com> - 52.7.0-1
71c2a1
- Update to 52.7.0 ESR
71c2a1
71c2a1
* Mon Jan 29 2018 Martin Stransky <stransky@redhat.com> - 52.6.0-2
71c2a1
- Build Firefox for desktop arches only (x86_64 and ppc64le)
71c2a1
71c2a1
* Thu Jan 18 2018 Martin Stransky <stransky@redhat.com> - 52.6.0-1
71c2a1
- Update to 52.6.0 ESR
71c2a1
71c2a1
* Thu Nov  9 2017 Jan Horak <jhorak@redhat.com> - 52.5.0-1
71c2a1
- Update to 52.5.0 ESR
71c2a1
71c2a1
* Mon Sep 25 2017 Jan Horak <jhorak@redhat.com> - 52.4.0-1
71c2a1
- Update to 52.4.0 ESR
71c2a1
71c2a1
* Thu Aug  3 2017 Jan Horak <jhorak@redhat.com> - 52.3.0-3
71c2a1
- Update to 52.3.0 ESR (b2)
71c2a1
- Require correct nss version
71c2a1
71c2a1
* Tue Jun 13 2017 Jan Horak <jhorak@redhat.com> - 52.2.0-1
71c2a1
- Update to 52.2.0 ESR
71c2a1
71c2a1
* Wed May 24 2017 Jan Horak <jhorak@redhat.com> - 52.1.2-1
71c2a1
- Update to 52.1.2 ESR
71c2a1
71c2a1
* Wed May 24 2017 Jan Horak <jhorak@redhat.com> - 52.0-7
71c2a1
- Added fix for accept language (rhbz#1454322)
71c2a1
71c2a1
* Wed Mar 22 2017 Jan Horak <jhorak@redhat.com> - 52.0-6
71c2a1
- Removing patch required for older NSS from RHEL 7.3
71c2a1
- Added patch for rhbz#1414564
71c2a1
71c2a1
* Fri Mar 17 2017 Martin Stransky <stransky@redhat.com> - 52.0-5
71c2a1
- Added fix for mozbz#1348168/CVE-2017-5428
71c2a1
71c2a1
* Mon Mar  6 2017 Jan Horak <jhorak@redhat.com> - 52.0-4
71c2a1
- Update to 52.0 ESR (b4)
71c2a1
71c2a1
* Thu Mar 2 2017 Martin Stransky <stransky@redhat.com> - 52.0-3
71c2a1
- Added fix for rhbz#1423012 - ppc64 gfx crashes
71c2a1
71c2a1
* Wed Mar  1 2017 Jan Horak <jhorak@redhat.com> - 52.0-2
71c2a1
- Enable system nss
71c2a1
71c2a1
* Tue Feb 28 2017 Martin Stransky <stransky@redhat.com> - 52.0-1
71c2a1
- Update to 52.0ESR (B1)
71c2a1
- Build RHEL7 package for Gtk3
71c2a1
71c2a1
* Mon Feb 27 2017 Martin Stransky <stransky@redhat.com> - 52.0-0.13
71c2a1
- Added fix for rhbz#1414535
71c2a1
71c2a1
* Tue Feb 21 2017 Jan Horak <jhorak@redhat.com> - 52.0-0.12
71c2a1
- Update to 52.0b8
71c2a1
71c2a1
* Tue Feb  7 2017 Jan Horak <jhorak@redhat.com> - 52.0-0.11
71c2a1
- Readded addons patch
71c2a1
71c2a1
* Mon Feb  6 2017 Jan Horak <jhorak@redhat.com> - 52.0-0.10
71c2a1
- Update to 52.0b3
71c2a1
71c2a1
* Tue Jan 31 2017 Jan Horak <jhorak@redhat.com> - 52.0-0.9
71c2a1
- Update to 52.0b2
71c2a1
71c2a1
* Fri Jan 27 2017 Jan Horak <jhorak@redhat.com> - 52.0-0.8
71c2a1
- Update to 52.0b1
71c2a1
71c2a1
* Thu Dec  8 2016 Jan Horak <jhorak@redhat.com> - 52.0-0.5
71c2a1
- Firefox Aurora 52 testing build
cbe2c5