summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec9
1 files changed, 7 insertions, 2 deletions
diff --git a/firefox.spec b/firefox.spec
index 92df61a..5417246 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -113,13 +113,13 @@ ExcludeArch: aarch64
Summary: Mozilla Firefox Web browser
Name: firefox
-Version: 80.0
+Version: 80.0.1
Release: 1%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
%if %{with langpacks}
-Source1: firefox-langpacks-%{version}%{?pre_version}-20200820.tar.xz
+Source1: firefox-langpacks-%{version}%{?pre_version}-20200901.tar.xz
%endif
Source2: cbindgen-vendor.tar.xz
Source10: firefox-mozconfig
@@ -607,6 +607,8 @@ echo "export RANLIB=\"gcc-ranlib\"" >> .mozconfig
%if 0%{?build_with_pgo}
echo "ac_add_options MOZ_PGO=1" >> .mozconfig
#echo "ac_add_options --enable-lto" >> .mozconfig
+# PGO build does not work with ccache
+export CCACHE_DISABLE=1
%endif
MOZ_SMP_FLAGS=-j1
@@ -960,6 +962,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Tue Sep 1 2020 Martin Stransky <stransky@redhat.com> - 80.0.1-1
+- Updated to 80.0.1
+
* Tue Aug 18 2020 Martin Stransky <stransky@redhat.com> - 80.0-1
- Updated to 80.0 Build 2
- Go back to gcc
bgstack15