diff options
Diffstat (limited to 'nonprism-testing')
-rw-r--r-- | nonprism-testing/icedove/PKGBUILD | 6 | ||||
-rw-r--r-- | nonprism-testing/icedove/icedove.install | 19 |
2 files changed, 15 insertions, 10 deletions
diff --git a/nonprism-testing/icedove/PKGBUILD b/nonprism-testing/icedove/PKGBUILD index 260b17209..6de81d68b 100644 --- a/nonprism-testing/icedove/PKGBUILD +++ b/nonprism-testing/icedove/PKGBUILD @@ -5,7 +5,7 @@ # We're getting this from Debian Sid _debname=icedove -_debver=45.3.0 +_debver=45.4.0 _debrel=deb1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -38,8 +38,8 @@ source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.xz" fix-missing-files.patch no-neon.patch mozilla-1253216.patch) -sha256sums=('3e8a34c0e7e41daa400f020c565219fcc4f8d3abe7c14acd909706103fee25f3' - '72a23ab7975769e05c25ec838ed2a2e22107093c74788bd320f315451fdda621' +sha256sums=('00ff0dcd4bddd053b5285c78cd687876cfab9455c2eb1e670746eb4bedaac38f' + 'b4d1b193aee7481249ef5e638bf583b69c1785dd530a9ecd098a84f42dfdf09d' 'aaca37bcca176d1b8ebe7c18d3fb0c61e3d21769fbf8e994a189eb3263257d3d' '0b0d25067c64c6b829c84e5259ffca978e3971f85acc8483f47bdbed5b0b5b6a' 'e1f72c44e31f191271207fc874dcfbf3d504b6b42dc1bb063ba8c7c9ee032130' diff --git a/nonprism-testing/icedove/icedove.install b/nonprism-testing/icedove/icedove.install index a01634bcf..dc20b4f9b 100644 --- a/nonprism-testing/icedove/icedove.install +++ b/nonprism-testing/icedove/icedove.install @@ -1,10 +1,8 @@ -post_install() { - update-desktop-database -q - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor - cat <<EOM +notice() { + cat <<EOM == IMPORTANT NOTICE == - This package contains several new patches that were introduced + This package contains several new patches that were introduced to strengthen and protect the end user from security and privacy threats. For users who wish to opt-out of privacy, you may override options in @@ -18,14 +16,21 @@ post_install() { * https://lists.parabola.nu/pipermail/dev/2016-October/004522.html * http://kb.mozillazine.org/About:config * http://kb.mozillazine.org/User.js_file - + EOM } +post_install() { + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + notice +} + post_upgrade() { post_install } post_remove() { - post_install + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor } |