summaryrefslogtreecommitdiff
path: root/waterfox/waterfox.spec
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-01-02 21:45:41 -0500
committerB Stack <bgstack15@gmail.com>2019-01-02 21:45:41 -0500
commitb9d5a60468656302ab51f5aafc3fcb264543c7e4 (patch)
tree685f5941e732b33ace2519abb31e152ac5b51993 /waterfox/waterfox.spec
parentMerge branch 'bump-xseticon' into 'master' (diff)
downloadstackrpms-b9d5a60468656302ab51f5aafc3fcb264543c7e4.tar.gz
stackrpms-b9d5a60468656302ab51f5aafc3fcb264543c7e4.tar.bz2
stackrpms-b9d5a60468656302ab51f5aafc3fcb264543c7e4.zip
waterfox 56.2.6
Diffstat (limited to 'waterfox/waterfox.spec')
-rw-r--r--waterfox/waterfox.spec35
1 files changed, 24 insertions, 11 deletions
diff --git a/waterfox/waterfox.spec b/waterfox/waterfox.spec
index 5882681..948ebbd 100644
--- a/waterfox/waterfox.spec
+++ b/waterfox/waterfox.spec
@@ -1,6 +1,6 @@
-%global commit 3e2c786a657a0b2e6e7a82c155a8ff6030888c4a
+%global commit ff4597172229f8d71940c3885b74b903b7b1821a
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global date 20181211
+%global date 20181217
%global with_snapshot 1
%global freebsd_rev 480450
@@ -10,6 +10,7 @@
%global gver .%{date}git%{shortcommit}
%endif
+ExcludeArch: armv7hl
%global alsa_backend 1
%global system_nss 1
@@ -114,14 +115,16 @@
Summary: Waterfox Web browser
Name: waterfox
-Version: 56.2.5
-Release: 2%{?gver}%{?dist}
+Version: 56.2.6
+Release: 1%{?gver}%{?dist}
URL: https://www.waterfoxproject.org
License: MPLv1.1 or GPLv2+ or LGPLv2+
+
+%global vc_url https://github.com/MrAlex94/Waterfox
%if 0%{?with_snapshot}
-Source0: https://github.com/MrAlex94/%{name}/archive/%{commit}.tar.gz#/%{name}-%{shortcommit}.tar.gz
+Source0: %{vc_url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
%else
-Source0: https://github.com/MrAlex94/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Source0: %{vc_url}/archive/%{version}/%{name}-%{version}.tar.gz
%endif
# FreeBSD patches
@@ -179,8 +182,7 @@ Patch418: https://hg.mozilla.org/integration/autoland/raw-rev/342812d23eb
# Upstream updates
-%global wf_url https://github.com/MrAlex94/Waterfox
-#Patch???: %%{wf_url}/commit/commit.patch#/wf-commit.patch
+#Patch???: %%{vc_url}/commit/commit.patch#/wf-commit.patch
# Debian patches
Patch500: mozilla-440908.patch
@@ -619,9 +621,12 @@ MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-g/-g0/')
export MOZ_DEBUG_FLAGS=" "
%endif
%if !0%{?build_with_clang}
-%ifarch s390 %{arm} ppc aarch64
+%ifarch s390 ppc aarch64
MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
%endif
+%ifarch %{arm}
+MOZ_LINK_FLAGS="-Wl,--no-keep-memory"
+%endif
%endif
%ifarch %{arm} %{ix86}
@@ -647,7 +652,12 @@ export CXX=g++
MOZ_SMP_FLAGS=-j1
# On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
# however builds tend to fail on other arches when building in parallel.
-%ifarch %{ix86} x86_64 ppc ppc64 ppc64le aarch64
+%ifarch %{ix86}
+[ -z "$RPM_BUILD_NCPUS" ] && \
+ RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
+[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
+%endif
+%ifarch x86_64 ppc ppc64 ppc64le aarch64
[ -z "$RPM_BUILD_NCPUS" ] && \
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
[ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
@@ -931,9 +941,12 @@ fi
#---------------------------------------------------------------------
%changelog
-* Thu Dec 13 2018 B Stack <bgstack15@gmail.com> 56.2.5.-3.20181211git3e2c786
+* Wed Jan 2 2019 B Stack <bgstack15@gmail.com> - 56.2.6-1.20181217gitff45971
- repackage for stackrpms
+* Wed Dec 12 2018 Phantom X <megaphantomx at bol dot com dot br> - 56.2.6-1.20181217gitff45971
+- New release/snapshot
+
* Wed Dec 12 2018 Phantom X <megaphantomx at bol dot com dot br> - 56.2.5-2.20181211git3e2c786
- New snapshot
- Updated spec, more like Fedora Firefox one
bgstack15