summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-03-03 14:59:03 +0100
committerMartin Stransky <stransky@redhat.com>2021-03-03 14:59:03 +0100
commit9ebc9be748937ba00181255086b69bf331d1b3d1 (patch)
tree9ae92d87e24dadd0cb4b8e91c21dacd018860e4c /firefox.spec
parentAdded fix for mozilla#1694670 (diff)
parentMerge branch 'f33' into rawhide (diff)
downloadlibrewolf-fedora-ff-9ebc9be748937ba00181255086b69bf331d1b3d1.tar.gz
librewolf-fedora-ff-9ebc9be748937ba00181255086b69bf331d1b3d1.tar.bz2
librewolf-fedora-ff-9ebc9be748937ba00181255086b69bf331d1b3d1.zip
Added fix for mozbz#1694670 - merge
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec13
1 files changed, 9 insertions, 4 deletions
diff --git a/firefox.spec b/firefox.spec
index 8d4940f..83aae82 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -174,7 +174,7 @@ ExcludeArch: armv7hl
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 86.0
-Release: 4%{?pre_tag}%{?dist}
+Release: 7%{?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
@@ -201,11 +201,12 @@ Source34: firefox-search-provider.ini
Source35: google-loc-api-key
Source37: mochitest-python.tar.gz
Source38: print_results
-Source39: perrors
+Source39: print-errors
Source40: run-tests-x11
Source41: run-tests-wayland
Source42: psummary
Source43: print_failures
+Source44: print-error-reftest
# Build patches
Patch3: mozilla-build-arm.patch
@@ -794,7 +795,7 @@ find-links=`pwd`/mochitest-python
no-index=true
EOF
tar xf %{SOURCE37}
-cp %{SOURCE40} %{SOURCE41} %{SOURCE42} %{SOURCE38} %{SOURCE39} %{SOURCE43} .
+cp %{SOURCE40} %{SOURCE41} %{SOURCE42} %{SOURCE38} %{SOURCE39} %{SOURCE43} %{SOURCE44} .
mkdir -p test_results
%if %{test_on_wayland}
./run-tests-wayland %{test_offscreen} || true
@@ -1083,9 +1084,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
-* Mon Mar 1 2021 Martin Stransky <stransky@redhat.com> - 86.0-6
+* Wed Mar 3 2021 Martin Stransky <stransky@redhat.com> - 86.0-7
- Added fix for mozbz#1694670
+* Mon Mar 1 2021 Martin Stransky <stransky@redhat.com> - 86.0-6
+- Run xpcshell tests sequential
+- Test fixes
+
* Mon Mar 1 2021 Martin Stransky <stransky@redhat.com> - 86.0-4
- Enable Wayland backend only when Wayland display is set.
bgstack15