summaryrefslogtreecommitdiff
path: root/palemoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-08-04 09:12:15 -0400
committerB Stack <bgstack15@gmail.com>2019-08-04 09:12:15 -0400
commite629f797cf5ae722f17cabab2b64373ad42efd4b (patch)
tree6d9ae7fde9420922304fb4281cae02ca742f3c00 /palemoon
parentMerge branch 'palemoon-bump' into 'master' (diff)
downloadstackrpms-e629f797cf5ae722f17cabab2b64373ad42efd4b.tar.gz
stackrpms-e629f797cf5ae722f17cabab2b64373ad42efd4b.tar.bz2
stackrpms-e629f797cf5ae722f17cabab2b64373ad42efd4b.zip
add override_dh_strip_nondeterminism from Steven
Diffstat (limited to 'palemoon')
-rw-r--r--palemoon/debian/changelog7
-rwxr-xr-xpalemoon/debian/rules3
2 files changed, 10 insertions, 0 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index 47b544c..4c04927 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,10 @@
+palemoon (28.6.1-2+devuan) obs; urgency=medium
+
+ * Add override for dh_strip_nondeterminism to address build failures with the
+ latest version of that in Debian Testing and Sid.
+
+ -- Steven Pusser <stevep@mxlinux.org> Fri, 02 Aug 2019 14:48:44 -0700
+
palemoon (28.6.1-1+devuan) manual; urgency=low
* From releasenotes.shtml: This is security and bugfix update.
diff --git a/palemoon/debian/rules b/palemoon/debian/rules
index 527fae9..2a74bf0 100755
--- a/palemoon/debian/rules
+++ b/palemoon/debian/rules
@@ -28,3 +28,6 @@ override_dh_auto_install:
override_dh_shlibdeps:
dh_shlibdeps -l /usr/lib/palemoon
+
+override_dh_strip_nondeterminism:
+ dh_strip_nondeterminism -Xdebian/palemoon/usr/lib/palemoon/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi
bgstack15