summaryrefslogtreecommitdiff
path: root/waterfox/waterfox.spec
diff options
context:
space:
mode:
Diffstat (limited to 'waterfox/waterfox.spec')
-rw-r--r--waterfox/waterfox.spec33
1 files changed, 17 insertions, 16 deletions
diff --git a/waterfox/waterfox.spec b/waterfox/waterfox.spec
index c2ed9d9..621a924 100644
--- a/waterfox/waterfox.spec
+++ b/waterfox/waterfox.spec
@@ -6,6 +6,7 @@
%global with_snapshot 0
%global branch classic
+%global channel Classic
%global freebsd_rev 20191102
%global freebsd_root %{name}-FreeBSD-patches-%{freebsd_rev}
@@ -123,12 +124,6 @@ ExcludeArch: armv7hl
%global sqlite_build_version %(pkg-config --silence-errors --modversion sqlite3 2>/dev/null || echo 65536)
%endif
-%if "%{branch}" == "classic"
-%global channel Classic
-%else
-%global channel Current
-%endif
-
%global mozappdir %{_libdir}/%{name}
%global mozappdirdev %{_libdir}/%{name}-devel-%{version}
%global langpackdir %{mozappdir}/langpacks
@@ -169,18 +164,18 @@ BuildRequires: %{scl_buildreq}
%global system_libvpx 0
%endif
-Summary: Waterfox Web browser
+Summary: Waterfox %{channel} Web browser
Name: waterfox
-Version: 2021.10
+Version: 2021.11
Release: 11%{?branch:.%{branch}}%{?gver}%{?dist}
-URL: https://www.waterfox.net
+URL: https://classic.waterfox.net
License: MPLv1.1 or GPLv2+ or LGPLv2+
%global vc_url https://github.com/WaterfoxCo/Waterfox
%if 0%{?with_snapshot}
-Source0: %{vc_url}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
+Source0: %{vc_url}/archive/%{commit}/%{name}-%{channel}-%{shortcommit}.tar.gz
%else
-Source0: %{vc_url}/archive/%{version}-%{branch}/%{name}-%{version}-%{branch}.tar.gz
+Source0: %{vc_url}/archive/%{version}-%{branch}/%{name}-%{branch}-%{version}.tar.gz
%endif
# FreeBSD patches
@@ -386,10 +381,12 @@ BuildRequires: cargo
Obsoletes: mozilla <= 37:1.7.13
Provides: webclient
+Provides: %{name}-%{branch} = %{?epoch:%{epoch}:}%{version}-%{release}
%description
-Waterfox is an open-source web browser, specialised modification of the Mozilla
-platform, designed for privacy and user choice in mind.
+Waterfox %{channel} is an open-source web browser, specialised
+modification of the Mozilla platform, designed for privacy and user
+choice in mind.
%if %{run_tests}
%global testsuite_pkg_name %{name}-testresults
@@ -405,9 +402,9 @@ This package contains results of tests executed during build.
%prep
%if 0%{?with_snapshot}
-%setup -q -n Waterfox-%{commit} -a 600
+%setup -q -n Waterfox-%{channel}-%{commit} -a 600
%else
-%setup -q -n Waterfox-%{version}-%{branch} -a 600
+%setup -q -n Waterfox-%{channel}-%{version}-%{branch} -a 600
%endif
%if %{build_langpacks}
@@ -1128,11 +1125,15 @@ fi
#---------------------------------------------------------------------
%changelog
-* Thu Oct 21 2021 B. Stack <bgstack15@gmail.com> - 2021.10-11.classic
+* Mon Nov 29 2021 B. Stack <bgstack15@gmail.com> - 2021.11-11.classic
- add el7 and el8 support
- repackage for stackrpms
- disable simd globally
+* Fri Nov 19 2021 Phantom X <megaphantomx at hotmail dot com> - 2021.11-1.classic
+- 2021.11
+- Update URLs to new Classic repository
+
* Wed Oct 20 2021 Phantom X <megaphantomx at hotmail dot com> - 2021.10-1.classic
- 2021.10
bgstack15