diff options
author | B Stack <bgstack15@gmail.com> | 2020-01-16 13:57:38 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-01-16 13:57:38 +0000 |
commit | 8635bfb9c3b53bb46ff562e88b84f4cc193cbd57 (patch) | |
tree | 7269f52b2c566232f374e16be77967215fdb6780 /palemoon/debian | |
parent | Merge branch 'xdgmenumaker-bump' into 'master' (diff) | |
parent | ublock-origin 1.16.4.14 (diff) | |
download | stackrpms-8635bfb9c3b53bb46ff562e88b84f4cc193cbd57.tar.gz stackrpms-8635bfb9c3b53bb46ff562e88b84f4cc193cbd57.tar.bz2 stackrpms-8635bfb9c3b53bb46ff562e88b84f4cc193cbd57.zip |
Merge branch 'updates' into 'master'
palemoon 28.8.1 and ublock-origin
See merge request bgstack15/stackrpms!114
Diffstat (limited to 'palemoon/debian')
-rw-r--r-- | palemoon/debian/changelog | 13 | ||||
-rw-r--r-- | palemoon/debian/control | 7 | ||||
-rwxr-xr-x | palemoon/debian/rules | 18 |
3 files changed, 23 insertions, 15 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog index 9e48da7..67fa7cf 100644 --- a/palemoon/debian/changelog +++ b/palemoon/debian/changelog @@ -1,3 +1,16 @@ +palemoon (28.8.1-1+devuan) obs; urgency=medium + + * From releasenotes.shtml: This is an important security and stability release. + * Changes/fixes + - Fixed a sampling issue in libsoundtouch (DiD) + - Fixed an issue with a new upcoming Windows 10 feature not honoring Private Browsing mode by default (DiD) + - Fixed several stability and memory safety hazards. (DiD) + - Fixed an issue where files could inadvertently be executed with the designated file type handler instead of opened. (CVE-2019-17019) + - Fixed an issue with the JavaScript JIT compiler that could lead to exploitable crashes. (CVE-2019-17026) actively exploited + - Unified XUL Platform Mozilla Security Patch Summary: 2 fixed, 7 DiD, 12 not applicable. + + -- B Stack <bgstack15@gmail.com> Mon, 13 Jan 2020 10:24:21 -0500 + palemoon (28.8.0-1+devuan) obs; urgency=medium * From releasenotes.shtml: This is a major development release. Many things have been improved, some landmark features have been added/enabled, and many libraries have been updated for added stability and performance. diff --git a/palemoon/debian/control b/palemoon/debian/control index 194753e..29b9108 100644 --- a/palemoon/debian/control +++ b/palemoon/debian/control @@ -6,22 +6,17 @@ Bugs: mailto: <bgstack15@gmail.com> XSBC-Original-Maintainer: Steven Pusser <stevep@mxlinux.org> Build-Depends: debhelper (>= 12), 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, + mesa-common-dev, pkg-config, python (>= 2.7), - python-dbus, unzip, yasm (>= 1.1), zip, diff --git a/palemoon/debian/rules b/palemoon/debian/rules index b56d4f7..5705c90 100755 --- a/palemoon/debian/rules +++ b/palemoon/debian/rules @@ -2,15 +2,15 @@ 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 +## 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 $@ |