summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--palemoon/debian/changelog66
-rw-r--r--palemoon/debian/control42
-rwxr-xr-xpalemoon/debian/rules10
-rw-r--r--palemoon/palemoon-stackrpms.spec11
-rw-r--r--palemoon/palemoon.spec11
-rw-r--r--waterfox/debian/changelog7
-rw-r--r--waterfox/waterfox-remove-SetCurrentProcessPrivileges.patch25
-rw-r--r--waterfox/waterfox.spec18
8 files changed, 133 insertions, 57 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index 4c04927..7f94380 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,69 @@
+palemoon (28.7.1-1+devuan) obs; urgency=medium
+
+ * From releasenotes.shtml: This is a security and bugfix update.
+ - Fixed an issue where saving a webpage to disk would sometimes drop tags from the document.
+ - Fixed an issue with click-to-play plugin content throwing up a blank notification.
+ - Fixed an issue in the renderer where region intersections would sometimes return the wrong result.
+ - This fixes a regression caused by the fix for CVE-2016-5252.
+ - Fixed security issues: CVE-2019-11744, CVE-2019-11752, CVE-2019-11737, CVE-2019-11746, CVE-2019-11750, CVE-2019-11747 and CVE-2019-11738.
+ - Unified XUL Platform Mozilla Security Patch Summary: 7 fixed, 1 DiD, 1 already covered, 22 not applicable.
+
+ -- B Stack <bgstack15@gmail.com> Wed, 04 Sep 2019 08:23:21 -0400
+
+palemoon (28.7.0-1+devuan) obs; urgency=medium
+
+ * From releasenotes.shtml: This is a major development update involving a partial JavaScript engine overhaul.
+ - Landed a large JavaScript parser tune-up, which as a targeted goal brings
+ our ES6 stringification fully in line with the ES2018 revision for
+ classes, and implements rest/spread parameters for object literals.
+ (Cheers to Luke!)
+ - Fixed a crash with the tuned-up parser code when certain error messages
+ were triggered.
+ - Aligned browser behavior with mainstream regarding inner window behavior
+ when domain is manipulated.
+ - Improved performance dealing with frame properties.
+ - Improved performance for handling html5 strings.
+ - Improved performance of image content loading.
+ - Fixed potential type confusion in array joins.
+ - Fixed an issue on some pages causing high CPU usage when wrongly
+ specifying plugin content.
+ - Fixed an issue with the add-ons manager "discover" pane if no network
+ connection is present.
+ - Fixed an issue with bookmark/history search results offering context menu
+ options that would be invalid without a selection.
+ - Fixed the devtools JSON viewer and enabled it by default.
+ - Fixed searching from `about:home` not working for search plugins using the
+ POST method.
+ - Fixed an issue with the checkboxes for location bar preferences.
+ - Fixed SVG alignment issues if SVG-containing elements fall on odd pixel
+ sizes, causing blurry display of especially small SVGs like icons/glyphs.
+ - SVGs will now always be pixel-snapped to provide expected crisp display.
+ - Fixed precompilation of Sync client modules when packaging. This also
+ removes the redundant `services.sync.enabled` pref.
+ - Added support for matroska containers and h264-based webm video formats.
+ - Added support for AAC audio in matroska and webm video formats.
+ - Added support for spaces in the Mac package and application name.
+ - Added an exception to the unique file origin policy for font types.
+ - Added native file picker support for xdg on Linux.
+ - Updated the default bookmark icons.
+ - Updated the SQLite lib to 3.29.0.
+ - Removed e10s information from about:troubleshooting.
+ - Removed hotfix leftovers.
+ - Removed the WebIDE developer tool.
+ - Removed conditional build-time disabling of the Pale Moon status bar code.
+ - Removed "Delete this page" and "Forget about this site" links from live
+ bookmarks (since they make no sense on feeds).
+ - Removed the Financial Times' polyfill user-agent override since they
+ updated their detection to work with Pale Moon.
+
+ -- B Stack <bgstack15@gmail.com> Wed, 04 Sep 2019 08:23:21 -0400
+
+palemoon (28.6.1-3+devuan) obs; urgency=medium
+
+ * Specify gcc-8 on debian buster which is the upstream for beowulf/ceres.
+
+ -- B Stack <bgstack15@gmail.com> Thu, 25 Jul 2019 13:03:15 -0400
+
palemoon (28.6.1-2+devuan) obs; urgency=medium
* Add override for dh_strip_nondeterminism to address build failures with the
diff --git a/palemoon/debian/control b/palemoon/debian/control
index eca609c..bc85aaf 100644
--- a/palemoon/debian/control
+++ b/palemoon/debian/control
@@ -4,26 +4,28 @@ Priority: optional
Maintainer: B Stack <bgstack15@gmail.com>
Bugs: mailto: <bgstack15@gmail.com>
XSBC-Original-Maintainer: Steven Pusser <stevep@mxlinux.org>
-Build-Depends: autoconf2.13,
- debhelper (>= 9),
- gcc (>= 4.9),
- libasound2-dev,
- libbz2-dev,
- libdbus-glib-1-dev (>= 0.60),
- libegl1-mesa-dev,
- libgconf2-dev (>= 1.2.1),
- libgtk2.0-dev (>= 2.14),
- libsqlite3-dev,
- libssl-dev,
- libx11-xcb-dev,
- libxt-dev,
- pkg-config,
- python (>= 2.7),
- python-dbus,
- unzip,
- yasm (>= 1.1),
- zip,
- zlib1g-dev,
+Build-Depends: debhelper (>= 9),
+ autoconf2.13,
+ build-essential,
+ gcc-8, g++-8, cpp-8,
+ libasound2-dev,
+ libbz2-dev,
+ libdbus-glib-1-dev (>= 0.60),
+ libegl1-mesa-dev,
+ libgconf2-dev (>= 1.2.1),
+ libgtk2.0-dev (>= 2.14),
+ libsqlite3-dev,
+ libssl-dev,
+ libx11-xcb-dev,
+ libxt-dev,
+ lsb-release,
+ pkg-config,
+ python (>= 2.7),
+ python-dbus,
+ unzip,
+ yasm (>= 1.1),
+ zip,
+ zlib1g-dev,
Standards-Version: 3.9.6
Homepage: http://www.palemoon.org/
diff --git a/palemoon/debian/rules b/palemoon/debian/rules
index 2a74bf0..b56d4f7 100755
--- a/palemoon/debian/rules
+++ b/palemoon/debian/rules
@@ -2,6 +2,16 @@
export SHELL=/bin/bash
+# borrowed from stevepusser's logic
+# Build with gcc-8 on Buster (beowulf/ceres)
+distrelease := $(shell lsb_release -cs)
+ifeq ($(distrelease),$(filter $(distrelease),buster beowulf/ceres))
+export CC=gcc-8
+export CXX=g++-8
+export CPP=cpp-8
+export LD=gcc-8
+endif
+
%:
dh $@
diff --git a/palemoon/palemoon-stackrpms.spec b/palemoon/palemoon-stackrpms.spec
index 06322ca..a33a0ea 100644
--- a/palemoon/palemoon-stackrpms.spec
+++ b/palemoon/palemoon-stackrpms.spec
@@ -40,7 +40,7 @@ Summary: Pale Moon web browser with stackrpms prefs
Name: palemoon
Summary: Pale Moon web browser
%endif
-Version: 28.6.1
+Version: 28.7.1
Release: 1
Group: Networking/Web
@@ -83,6 +83,9 @@ BuildRequires: unzip
BuildRequires: yasm
BuildRequires: zip
BuildRequires: zlib-devel
+%if 0%{?fedora} >= 31
+BuildRequires: python2-devel
+%endif
BuildRoot: %{_tmppath}/%{name}-%{version}
Provides: mimehandler(application/x-xpinstall)
Provides: palemoon
@@ -281,6 +284,12 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Thu Sep 12 2019 B Stack <bgstack15@gmail.com> - 28.7.1-1
+- update version
+
+* Wed Sep 04 2019 B Stack <bgstack15@gmail.com> - 28.7.0-1
+- update version
+
* Thu Jul 25 2019 B Stack <bgstack15@gmail.com> - 28.6.1-1
- update version
diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec
index 4f2f857..6bf621d 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.6.1
+Version: 28.7.1
Release: 1
Group: Networking/Web
@@ -83,6 +83,9 @@ BuildRequires: unzip
BuildRequires: yasm
BuildRequires: zip
BuildRequires: zlib-devel
+%if 0%{?fedora} >= 31
+BuildRequires: python2-devel
+%endif
BuildRoot: %{_tmppath}/%{name}-%{version}
Provides: mimehandler(application/x-xpinstall)
Provides: palemoon
@@ -281,6 +284,12 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Thu Sep 12 2019 B Stack <bgstack15@gmail.com> - 28.7.1-1
+- update version
+
+* Wed Sep 04 2019 B Stack <bgstack15@gmail.com> - 28.7.0-1
+- update version
+
* Thu Jul 25 2019 B Stack <bgstack15@gmail.com> - 28.6.1-1
- update version
diff --git a/waterfox/debian/changelog b/waterfox/debian/changelog
index 02fcbaf..aac7a26 100644
--- a/waterfox/debian/changelog
+++ b/waterfox/debian/changelog
@@ -1,3 +1,10 @@
+waterfox (56.2.14-1+devuan) obs; urgency=medium
+
+ * This a security release, which brings Waterfox inline with security patches from ESR 60.9
+ - Waterfox for macOS is now built with OS X 10.11 SDK once again, which should alleviate crashes.
+
+ -- B Stack <bgstack15@gmail.com> Mon, 09 Sep 2019 10:58:27 -0400
+
waterfox (56.2.13-1+devuan) obs; urgency=medium
* Updated Gecko Media Plugin components
diff --git a/waterfox/waterfox-remove-SetCurrentProcessPrivileges.patch b/waterfox/waterfox-remove-SetCurrentProcessPrivileges.patch
deleted file mode 100644
index ed096fb..0000000
--- a/waterfox/waterfox-remove-SetCurrentProcessPrivileges.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From ddb9e372a2f3ac7b37b1c58a427351333b0545fe Mon Sep 17 00:00:00 2001
-From: Phantom X <PhantomX@users.noreply.github.com>
-Date: Mon, 19 Aug 2019 21:53:21 -0300
-Subject: [PATCH] Remove unneeded SetCurrentProcessPrivileges
-
----
- ipc/chromium/src/base/process_util_linux.cc | 2 --
- 1 file changed, 2 deletions(-)
-
-diff --git a/ipc/chromium/src/base/process_util_linux.cc b/ipc/chromium/src/base/process_util_linux.cc
-index f8cfb32..5501747 100644
---- a/ipc/chromium/src/base/process_util_linux.cc
-+++ b/ipc/chromium/src/base/process_util_linux.cc
-@@ -169,8 +169,6 @@ bool LaunchApp(const std::vector<std::string>& argv,
- argv_cstr[i] = const_cast<char*>(argv[i].c_str());
- argv_cstr[argv.size()] = NULL;
-
-- SetCurrentProcessPrivileges(privs);
--
- execve(argv_cstr[0], argv_cstr.get(), envp);
- // if we get here, we're in serious trouble and should complain loudly
- // NOTE: This is async signal unsafe; it could deadlock instead. (But
---
-2.21.0
-
diff --git a/waterfox/waterfox.spec b/waterfox/waterfox.spec
index 3449372..d450d67 100644
--- a/waterfox/waterfox.spec
+++ b/waterfox/waterfox.spec
@@ -1,6 +1,6 @@
-%global commit dc34e4b9d6fccdc97ce8b267eb04ca2c27490d2a
+%global commit 4f22b84524c911ee3d9dba38180304c0a324bca9
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global date 20190819
+%global date 20190902
%global with_snapshot 1
%global freebsd_rev 480450
@@ -69,9 +69,6 @@ ExcludeArch: armv7hl
%global debug_build 0
%global disable_elfhack 0
-#%if !0%{?build_with_clang} || 0%{?fedora} > 28
-#%global disable_elfhack 1
-#%endif
%global build_stylo 1
%global build_rust_simd 1
@@ -156,7 +153,7 @@ BuildRequires: %{scl_buildreq}
Summary: Waterfox Web browser
Name: waterfox
-Version: 56.2.13
+Version: 56.2.14
Release: 11%{?gver}%{?dist}
URL: https://www.waterfox.net
License: MPLv1.1 or GPLv2+ or LGPLv2+
@@ -239,7 +236,6 @@ Patch701: %{name}-waterfoxdir-1.patch
Patch702: %{name}-waterfoxdir-2.patch
Patch703: %{name}-webrtc-gtest-libv4l2.patch
Patch704: %{name}-fix-testing-file.patch
-Patch705: %{name}-remove-SetCurrentProcessPrivileges.patch
%if 0%{?system_nss}
@@ -461,7 +457,7 @@ done
# 3: uncertain
for i in \
702179 991253 1021761 1144632 1288587 1393235 1393283 1395486 1433747 1452576 1453127 1466606 \
- 1388744 1413143 \
+ 1384121 1388744 1413143 \
1447519
do
rm -f _patches/patch-bug${i}
@@ -479,7 +475,6 @@ done
%patch702 -p1 -b .waterfoxdir-2
%patch703 -p1 -b .lv4l2
%patch704 -p1 -b .fix-testing-file
-%patch705 -p1 -b .remove-privs
# Patch for big endian platforms only
%if 0%{?big_endian}
@@ -1070,10 +1065,13 @@ fi
#---------------------------------------------------------------------
%changelog
-* Tue Aug 20 2019 B Stack <bgstack15@gmail.com> - 56.2.13-11
+* Tue Sep 10 2019 B Stack <bgstack15@gmail.com> - 56.2.14-11
- add el7 support, which uses provided libs for the most part, and disables lto
- repackage for stackrpms
+* Wed Sep 04 2019 Phantom X <megaphantomx at bol dot com dot br> - 56.2.14-1
+- 5.2.14
+
* Mon Aug 19 2019 Phantom X <megaphantomx at bol dot com dot br> - 56.2.13-1.20190709gitdc34e4b
- New release/snapshot
bgstack15