summaryrefslogtreecommitdiff
path: root/waterfox/waterfox.spec
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2018-10-01 15:19:20 -0400
committerB Stack <bgstack15@gmail.com>2018-10-01 15:19:20 -0400
commita5c981a7c2b31e43be74deaabfa73278e6ae05cf (patch)
tree62647883f65fa08be960ee7eb62b26748cb25062 /waterfox/waterfox.spec
parentMerge branch 'veracrypt-bump' into 'master' (diff)
downloadstackrpms-a5c981a7c2b31e43be74deaabfa73278e6ae05cf.tar.gz
stackrpms-a5c981a7c2b31e43be74deaabfa73278e6ae05cf.tar.bz2
stackrpms-a5c981a7c2b31e43be74deaabfa73278e6ae05cf.zip
import updates from chinforpms
Diffstat (limited to 'waterfox/waterfox.spec')
-rw-r--r--waterfox/waterfox.spec27
1 files changed, 15 insertions, 12 deletions
diff --git a/waterfox/waterfox.spec b/waterfox/waterfox.spec
index 1ad1cda..b1a026d 100644
--- a/waterfox/waterfox.spec
+++ b/waterfox/waterfox.spec
@@ -1,16 +1,16 @@
-%global commit 2294d4556bf76a6293275a17dbf9ef5fd187459e
+%global commit 432b42717b0678a933f9d0731f02f9d1d32bdec2
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global date 20180908
+%global date 20180911
%global with_snapshot 1
-%global freebsd_rev 478244
+%global freebsd_rev 480450
%global freebsd_root %{name}-FreeBSD-patches-r%{freebsd_rev}
%if 0%{?with_snapshot}
%global gver .%{date}git%{shortcommit}
%endif
-# Build with only clang?
+# Build with clang only?
%global with_clang 0
# Use ALSA backend?
@@ -118,8 +118,8 @@
Summary: Waterfox Web browser
Name: waterfox
-Version: 56.2.2
-Release: 4%{?gver}%{?dist}
+Version: 56.2.3
+Release: 2%{?gver}%{?dist}
URL: https://www.waterfoxproject.org
License: MPLv1.1 or GPLv2+ or LGPLv2+
%if 0%{?with_snapshot}
@@ -183,14 +183,15 @@ Patch417: mozilla-1436242.patch
%global wf_url https://github.com/MrAlex94/Waterfox
#Patch???: %%{wf_url}/commit/commit.patch#/wf-commit.patch
-Patch490: %{wf_url}/pull/547.patch#/wf-pull-547.patch
# Debian patches
Patch500: mozilla-440908.patch
# Chinforinfula patches
Patch700: %{name}-nolangpacks.patch
-Patch701: %{name}-waterfoxdir.patch
+# https://github.com/MrAlex94/Waterfox/pull/547.patch, down
+Patch701: %{name}-waterfoxdir-1.patch
+Patch702: %{name}-waterfoxdir-2.patch
%if %{?system_nss}
BuildRequires: pkgconfig(nspr) >= %{nspr_version}
@@ -364,8 +365,6 @@ This package contains results of tests executed during build.
%patch416 -p1 -b .bug1375074-save-restore-x28
%patch417 -p1 -b .mozilla-1436242
-%patch490 -p1
-
# Debian extension patch
%patch500 -p1 -b .440908
@@ -389,7 +388,7 @@ done
# 2: no apply
# 3: uncertain
for i in \
- 702179 991253 1021761 1144632 1288587 1452576 1425930 1469914 1469309 1470260 1472925 \
+ 702179 991253 1021761 1144632 1288587 1452576 \
1388744 1413143 \
1447519
do
@@ -408,7 +407,8 @@ done
# Install langpacks other way
%patch700 -p1 -b .nolangpacks
-%patch701 -p1 -b .waterfoxdir
+%patch701 -p1 -b .waterfoxdir-1
+%patch702 -p1 -b .waterfoxdir-2
# Patch for big endian platforms only
%if 0%{?big_endian}
@@ -893,6 +893,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Fri Sep 14 2018 Phantom X <megaphantomx at bol dot com dot br> - 56.2.3-1.20180911git432b427
+- New release/snapshot
+
* Sun Sep 09 2018 Phantom X <megaphantomx at bol dot com dot br> - 56.2.2-4.20180908git2294d45
- New snapshot
- clang only build switch
bgstack15