summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--firefox.spec20
-rw-r--r--sources4
3 files changed, 18 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
index afa2337..eb2ed39 100644
--- a/.gitignore
+++ b/.gitignore
@@ -327,3 +327,5 @@ firefox-3.6.4.source.tar.bz2
/firefox-langpacks-65.0-20190128.tar.xz
/firefox-65.0.1.source.tar.xz
/firefox-langpacks-65.0.1-20190215.tar.xz
+/firefox-65.0.2.source.tar.xz
+/firefox-langpacks-65.0.2-20190301.tar.xz
diff --git a/firefox.spec b/firefox.spec
index 8498e15..16e3add 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -15,9 +15,13 @@ ExcludeArch: armv7hl
%global disable_elfhack 1
%global build_with_clang 0
%global use_bundled_cbindgen 1
+# Disable PGO+LTO on Fedora 30 due to broken gdb which can't process
+# LTO debuginfo.
+%if 0%{?fedora} < 30
%ifnarch %{ix86} ppc64 s390x
%global build_with_pgo 1
%endif
+%endif
%if 0%{?fedora} > 29
%global wayland_backend_default 1
%endif
@@ -72,9 +76,8 @@ ExcludeArch: armv7hl
%global enable_mozilla_crashreporter 0
%if !%{debug_build}
%ifarch %{ix86} x86_64
-# Disable crashreporter for Fedora 30 / Rawhide
-# to collect Wayland crashes.
-%if 0%{?fedora} < 29
+# Disable crashreporter sa we want to collect Wayland crashes.
+%if 0%{?fedora} < 28
%global enable_mozilla_crashreporter 1
%endif
%endif
@@ -82,13 +85,13 @@ ExcludeArch: armv7hl
Summary: Mozilla Firefox Web browser
Name: firefox
-Version: 65.0.1
-Release: 2%{?pre_tag}%{?dist}
+Version: 65.0.2
+Release: 1%{?pre_tag}%{?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}-20190215.tar.xz
+Source1: firefox-langpacks-%{version}%{?pre_version}-20190301.tar.xz
%endif
Source2: cbindgen-vendor.tar.xz
Source10: firefox-mozconfig
@@ -891,6 +894,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Fri Mar 1 2019 Martin Stransky <stransky@redhat.com> - 65.0.2-1
+- Updated to 65.0.2
+- Disabled PGO+LTO for Fedora 30
+- Disabled Mozilla Crashreporter to get Wayland crashes by ABRT
+
* Thu Feb 28 2019 Martin Stransky <stransky@redhat.com> - 65.0.1-2
- Enable ARBT for Fedora 29 and later to catch wayland crashes.
- Disable system libvpx for Fedora 30 and later.
diff --git a/sources b/sources
index f530b53..ee7488d 100644
--- a/sources
+++ b/sources
@@ -1,3 +1,3 @@
-SHA512 (firefox-65.0.1.source.tar.xz) = cc76a83f6430f501c2260c6b35b5e48f045f5b180daf03375e9ab114a9afd67dfc0146ddb81cd29be4617aadb66a332ed5ebc625cb500df9579e412ed4909599
-SHA512 (firefox-langpacks-65.0.1-20190215.tar.xz) = 16d63e24827328f1593b70b88f4a6cac907c1fac6053b43377175484e547f5796f1a1a60dc3d9c238717e9dd3fe1cd95c749414fe5dfe1488a00e82007e8e795
SHA512 (cbindgen-vendor.tar.xz) = b6737ca86e6223bb9e25861dae05e18469aecbeaa74d0d24719f531b01c74b9a00d9ba4e7faf6366e98cb7f0bdbeedfc337b739fff60bb3d22faabe9751f7ded
+SHA512 (firefox-65.0.2.source.tar.xz) = 880c95f3563c475684be337209b825352de3622caa83322c70b4177010d00c3b0550c7f6156793248433802deab62279eaa2c3b463ece27669c80ba3799ea8b0
+SHA512 (firefox-langpacks-65.0.2-20190301.tar.xz) = 24d4bbbeda42f19159aea3b53d5f70a241ed2026b38be0020f903a222f03a1b8a538bb5461d5acbb824219ae6941bdf4ab5566ec7680349a3ba8e695b83e54ab
bgstack15