summaryrefslogtreecommitdiff
path: root/librewolf.spec
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-12-29 15:33:43 -0500
committerB. Stack <bgstack15@gmail.com>2021-12-29 15:33:43 -0500
commitaaa1fde3b078939a6f569ce5fa3fb3d90653463c (patch)
tree92c343d4930cecf86eaff73c051ba3c6af21a054 /librewolf.spec
parentuse fedora mozconfig for disabled wasm (diff)
downloadlibrewolf-fedora-ff-aaa1fde3b078939a6f569ce5fa3fb3d90653463c.tar.gz
librewolf-fedora-ff-aaa1fde3b078939a6f569ce5fa3fb3d90653463c.tar.bz2
librewolf-fedora-ff-aaa1fde3b078939a6f569ce5fa3fb3d90653463c.zip
lw 95.0.2 rc1
Diffstat (limited to 'librewolf.spec')
-rw-r--r--librewolf.spec24
1 files changed, 20 insertions, 4 deletions
diff --git a/librewolf.spec b/librewolf.spec
index 8ad0ad1..4296c42 100644
--- a/librewolf.spec
+++ b/librewolf.spec
@@ -163,13 +163,13 @@ ExcludeArch: aarch64
Summary: Mozilla Firefox Web browser
Name: librewolf
%global enable_mozilla_crashreporter 0
-Version: 95.0
-Release: 2%{?pre_tag}%{?dist}
+Version: 95.0.2
+Release: 4%{?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}-20211203.tar.xz
+Source1: firefox-langpacks-%{version}%{?pre_version}-20211220.tar.xz
%endif
Source2: cbindgen-vendor.tar.xz
Source10: firefox-mozconfig
@@ -222,6 +222,7 @@ Patch55: firefox-testing.patch
Patch57: firefox-disable-ffvpx-with-vapi.patch
Patch61: firefox-glibc-dynstack.patch
Patch62: build-python.patch
+Patch63: mozilla-1745560.patch
# Test patches
# Generate without context by
@@ -247,6 +248,7 @@ Patch407: mozilla-1667096.patch
Patch408: mozilla-1663844.patch
Patch415: mozilla-1670333.patch
Patch420: mochitest-wayland-workaround.patch
+Patch421: mozilla-1744896.patch
# PGO/LTO patches
Patch600: pgo.patch
@@ -407,6 +409,7 @@ Source100: librewolf-branding.tgz
Source101: librewolf.cfg
Source102: local-settings.js
Source103: policies.json
+Source104: search-config.json
Patch900: armhf-reduce-linker-memory-use.patch
Patch901: fix-armhf-webrtc-build.patch
Patch902: webrtc-fix-compiler-flags-for-armhf.patch
@@ -488,6 +491,7 @@ This package contains results of tests executed during build.
%patch57 -p1 -b .ffvpx-with-vapi
#%patch61 -p1 -b .glibc-dynstack
%patch62 -p1 -b .build-python
+%patch63 -p1 -b .1745560
# Test patches
#%patch100 -p1 -b .firefox-tests-xpcshell
@@ -511,6 +515,7 @@ This package contains results of tests executed during build.
%patch408 -p1 -b .1663844
%patch415 -p1 -b .1670333
#%patch420 -p1 -b .mochitest-wayland-workaround
+%patch421 -p1 -b .1744896
# PGO patches
%if %{build_with_pgo}
@@ -646,6 +651,7 @@ chmod a-x third_party/rust/ash/src/extensions/nv/*.rs
#---------------------------------------------------------------------
+cp -p %{SOURCE104} %{_builddir}/%{tarballdir}/services/settings/dumps/main/
%build
# Disable LTO to work around rhbz#1883904
%define _lto_cflags %{nil}
@@ -1145,9 +1151,19 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
-* Tue Dec 14 2021 B. Stack <bgstack15@gmail.com> - 95.0-1
+* Wed Dec 29 2021 B. Stack <bgstack15@gmail.com> - 95.0.2-1
- Fork to librewolf release.
+* Thu Dec 23 2021 Martin Stransky <stransky@redhat.com> - 95.0.2-4
+- Added fix fox mozbz#1744896 (VSync)
+
+* Wed Dec 22 2021 Martin Stransky <stransky@redhat.com> - 95.0.2-3
+- Added Fedora 36 build fix (mzbz#1745560)
+
+* Mon Dec 20 2021 Martin Stransky <stransky@redhat.com> - 95.0.2-1
+- Updated to 95.0.2
+- Enabled Wayland on KDE by default
+
* Thu Dec 9 2021 Martin Stransky <stransky@redhat.com> - 95.0-2
- Updated symbolic icon (rhbz#2028939)
bgstack15