summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-04 15:02:46 +0000
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-04 15:02:46 +0000
commit6ff8959c99fd0344d136e99dfde1395de7869577 (patch)
tree158f223b72efd20f639ddafcd124d418edc034d2
parentwe probably do not need the 800+M dbgsym .deb (diff)
parentremove dpkg-divert tasks (diff)
downloadlibrewolf-debian-6ff8959c99fd0344d136e99dfde1395de7869577.tar.gz
librewolf-debian-6ff8959c99fd0344d136e99dfde1395de7869577.tar.bz2
librewolf-debian-6ff8959c99fd0344d136e99dfde1395de7869577.zip
Merge branch 'disable-dpkg-divert' into 'master'
remove dpkg-divert tasks See merge request librewolf-community/browser/debian!1
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index b578529..8240869 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# File: prep-librewolf-dpkg.sh
# Location: https://gitlab.com/bgstack15/librewolf-linux.git
-# Latest supported version: librewolf-84.0.2-2
+# Latest supported version: librewolf-85.0-1
# Author: bgstack15
# SPDX-License-Identifier: CC-BY-SA-4.0
# Startdate: 2020-11-29
@@ -251,6 +251,10 @@ cat "${new_changelog}" > "${debian_dir}"/changelog
rm -f "${new_changelog:-NOTHINGTODEL}"
+# remove dpkg-divert items which librewolf will not use
+# thankfully dpkg-divert is the only tasks in these files as of 85.0
+rm -f "${debian_dir}"/browser.postrm.in "${debian_dir}"/browser.preinst.in
+
#####################################
# Build new assets
# dpkg-buildpackage needs the orig tarball, debian tarball, and dsc file.
bgstack15