From a648d64d820d5807b460a6d38baade048070f84b Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 30 Apr 2019 08:21:01 -0400 Subject: pm 28.5.0 rpm --- palemoon/palemoon.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'palemoon/palemoon.spec') diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec index 7de11a1..6e08fb3 100644 --- a/palemoon/palemoon.spec +++ b/palemoon/palemoon.spec @@ -40,7 +40,7 @@ Summary: Pale Moon web browser with stackrpms prefs Name: palemoon Summary: Pale Moon web browser %endif -Version: 28.4.1 +Version: 28.5.0 Release: 1 Group: Networking/Web @@ -274,6 +274,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %doc AUTHORS LICENSE %changelog +* Tue Apr 30 2019 B Stack - 28.5.0-1 +- update version + * Tue Feb 19 2019 B Stack 28.4.0-1 - update version -- cgit From e9e623d92b65ec06dc007bb9d85915d8aa064044 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 30 Apr 2019 16:06:36 -0400 Subject: palemoon on fc30 disable -Wformat-overflow The problem lies with gcc 9 which changes how it searches printf parameters when using -Wformat-overflow. Gcc 9 is not released yet and causes problems when compiling the palemoon codebase. This commit still fails on rawhide but works in fc30 which is good enough for now. --- palemoon/palemoon.spec | 3 +++ 1 file changed, 3 insertions(+) (limited to 'palemoon/palemoon.spec') diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec index 6e08fb3..5bf1fdb 100644 --- a/palemoon/palemoon.spec +++ b/palemoon/palemoon.spec @@ -106,6 +106,9 @@ and themes to make the browser truly your own. %prep %setup -q -n %{tarballdir} %{__cp} %{SOURCE1} ./.mozconfig +%if 0%{?fedora} >= 30 +sed -i -r -e '/enable-optimize/s/"\s*$/ -Wno-format-overflow"/' ./.mozconfig +%endif %if 0%{stackrpms_custom} %patch0 -p1 -- cgit