summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2016-06-05 15:09:40 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2016-06-05 15:09:40 +0200
commit4ec85b860b210ba7c09123fef95b8eb24cd1828d (patch)
tree81a1ab337ddd1f38947123f9cc25a72320e8bb61
parent64dbab030b2085b1bac05abdb618c81fbda3376a (diff)
new debian/shotwell-common.postrm
-rw-r--r--.gitignore1
-rw-r--r--debian/changelog13
-rw-r--r--debian/shotwell-common.postrm16
3 files changed, 25 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index c6795b5..37c7f74 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
.bzr
.bzrignore
+.pc
diff --git a/debian/changelog b/debian/changelog
index faea2a0..28b9d17 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,14 +1,16 @@
-shotwell (0.23.1-1) UNRELEASED; urgency=medium
+shotwell (0.23.1-1) unstable; urgency=medium
* New upstream release (Closes: #824164, #825788).
- Renew Patches.
- - Remove upstream apllayed patches:
+ - Remove upstream applied patches:
+ 0500-Port-to-webkit2gtk-40.patch
+ 0501-Dont-pack-webview-into-a-scrolled-window.patch
+ 0502-Have-all-soup-sessions-validate-TLS-certificates.patch
+ 0503-facebook-Dont-disable-XSS-auditor.patch
- - Close upstream apllayed bugs:
- + Inconsistent licensing metadata in icons/rejected.svg (Closes: #800902).
+ - Close upstream applied bugs:
+ + Fix inconsistent licensing metadata in icons/rejected.svg
+ (Closes: #800902).
+ + Fix crash open files with external editor (Closes: #806248).
- debian/copyright: Move copyright to Software Freedom Conservancy Inc.
* Rewrite rule at debian/watch.
* debian/rules:
@@ -16,8 +18,9 @@ shotwell (0.23.1-1) UNRELEASED; urgency=medium
+ Fix date handling for non-English locales.
+ Fix files mode in temp-source tarball.
Thanks to Alexis Bienvenüe <pado@passoire.fr>.
+ * New debian/shotwell-common.postrm to rebuild icon cache after purge / remove.
- -- Jörg Frings-Fürst <debian@jff-webhosting.net> Sat, 04 Jun 2016 23:14:30 +0200
+ -- Jörg Frings-Fürst <debian@jff-webhosting.net> Sun, 05 Jun 2016 15:05:46 +0200
shotwell (0.22.1-1) unstable; urgency=medium
diff --git a/debian/shotwell-common.postrm b/debian/shotwell-common.postrm
new file mode 100644
index 0000000..2390561
--- /dev/null
+++ b/debian/shotwell-common.postrm
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+set -e
+
+
+case "$1" in
+ purge|remove)
+
+ #
+ # rebuild icon cache
+ #
+ gtk-update-icon-cache /usr/share/icons/hicolor
+
+esac
+
+#DEBHELPER#