summaryrefslogtreecommitdiff
path: root/librewolf.spec
diff options
context:
space:
mode:
Diffstat (limited to 'librewolf.spec')
-rw-r--r--librewolf.spec25
1 files changed, 18 insertions, 7 deletions
diff --git a/librewolf.spec b/librewolf.spec
index 6560c54..8ad0ad1 100644
--- a/librewolf.spec
+++ b/librewolf.spec
@@ -126,7 +126,7 @@ ExcludeArch: aarch64
%if %{?system_nss}
%global nspr_version 4.26
%global nspr_build_version %{nspr_version}
-%global nss_version 3.70
+%global nss_version 3.73
%global nss_build_version %{nss_version}
%endif
@@ -163,13 +163,13 @@ ExcludeArch: aarch64
Summary: Mozilla Firefox Web browser
Name: librewolf
%global enable_mozilla_crashreporter 0
-Version: 94.0
-Release: 1%{?pre_tag}%{?dist}
+Version: 95.0
+Release: 2%{?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}-20211031.tar.xz
+Source1: firefox-langpacks-%{version}%{?pre_version}-20211203.tar.xz
%endif
Source2: cbindgen-vendor.tar.xz
Source10: firefox-mozconfig
@@ -221,6 +221,7 @@ Patch54: mozilla-1669639.patch
Patch55: firefox-testing.patch
Patch57: firefox-disable-ffvpx-with-vapi.patch
Patch61: firefox-glibc-dynstack.patch
+Patch62: build-python.patch
# Test patches
# Generate without context by
@@ -483,9 +484,10 @@ This package contains results of tests executed during build.
%patch49 -p1 -b .build-arm-libaom
%patch53 -p1 -b .firefox-gcc-build
%patch54 -p1 -b .1669639
-%patch55 -p1 -b .testing
+#%patch55 -p1 -b .testing
%patch57 -p1 -b .ffvpx-with-vapi
#%patch61 -p1 -b .glibc-dynstack
+%patch62 -p1 -b .build-python
# Test patches
#%patch100 -p1 -b .firefox-tests-xpcshell
@@ -508,7 +510,7 @@ This package contains results of tests executed during build.
%patch407 -p1 -b .1667096
%patch408 -p1 -b .1663844
%patch415 -p1 -b .1670333
-%patch420 -p1 -b .mochitest-wayland-workaround
+#%patch420 -p1 -b .mochitest-wayland-workaround
# PGO patches
%if %{build_with_pgo}
@@ -1143,9 +1145,18 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
-* Fri Nov 19 2021 B. Stack <bgstack15@gmail.com> - 94.0-1
+* Tue Dec 14 2021 B. Stack <bgstack15@gmail.com> - 95.0-1
- Fork to librewolf release.
+* Thu Dec 9 2021 Martin Stransky <stransky@redhat.com> - 95.0-2
+- Updated symbolic icon (rhbz#2028939)
+
+* Fri Dec 3 2021 Martin Stransky <stransky@redhat.com> - 95.0-1
+- Updated to 95.0
+
+* Fri Nov 19 2021 Martin Stransky <stransky@redhat.com> - 94.0-2
+- Added fix for mozbz#1739924 / rhbz#2020981.
+
* Mon Nov 1 2021 Martin Stransky <stransky@redhat.com> - 94.0-1
- Updated to 94.0
bgstack15