summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-12-28 15:05:26 +0100
committerGuido Günther <agx@sigxcpu.org>2014-12-28 15:12:05 +0100
commitd0bdc62cddff86b8601bb0e32b8a115be65032ff (patch)
tree884e75df4d775769bf235d14e3c3b8603e326fb8
parentffc774e01dc6651d0d74e475b1dc7fac44d43788 (diff)
Document changes and release 0.0.9-1debian/0.0.9-1
-rw-r--r--debian/changelog14
-rw-r--r--debian/patches/0001-Another-import-bugfix.patch27
-rw-r--r--debian/patches/0002-Abort-early-if-we-found-a-match.patch24
-rw-r--r--debian/patches/series2
4 files changed, 14 insertions, 53 deletions
diff --git a/debian/changelog b/debian/changelog
index 9238046..94fec4b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+whatmaps (0.0.9-1) unstable; urgency=medium
+
+ * New upstream version:
+ * Install apt.conf configuration on derivatives too (Closes: #761054)
+ * Fix service detection with newer systemd (as in Debian Jessie)
+ * Make logging consistent
+ * [36fd4ee] Avoid error message on missing file.
+ Don't try to get the md5sum of a nonexistent file to avoid
+ md5sum: /etc/apt/apt.conf.d/20servicese: No such file or directory
+ which is confusing.
+ * Drop all patches merged upstream
+
+ -- Guido Günther <agx@sigxcpu.org> Sun, 28 Dec 2014 15:04:26 +0100
+
whatmaps (0.0.8-5) unstable; urgency=medium
* [617fed4] Add sv Debconf translation. Thanks to Martin Bagge (Closes:
diff --git a/debian/patches/0001-Another-import-bugfix.patch b/debian/patches/0001-Another-import-bugfix.patch
deleted file mode 100644
index 9cbb73e..0000000
--- a/debian/patches/0001-Another-import-bugfix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From: =?utf-8?q?Guido_G=C3=BCnther?= <agx@sigxcpu.org>
-Date: Fri, 11 Jul 2014 20:53:31 +0200
-Subject: Another import bugfix
-
----
- whatmaps/debiandistro.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py
-index 9294c9f..3a3bf16 100644
---- a/whatmaps/debiandistro.py
-+++ b/whatmaps/debiandistro.py
-@@ -31,12 +31,12 @@ import subprocess
- import sys
- import string
-
--import whatmaps.distro
-+from . distro import Distro
- from . debianpkg import DebianPkg
- from . pkg import PkgError
- from . systemd import Systemd
-
--class DebianDistro(whatmaps.distro.Distro):
-+class DebianDistro(Distro):
- "Debian (dpkg) based distribution"
- id = 'Debian'
-
diff --git a/debian/patches/0002-Abort-early-if-we-found-a-match.patch b/debian/patches/0002-Abort-early-if-we-found-a-match.patch
deleted file mode 100644
index 3513ad6..0000000
--- a/debian/patches/0002-Abort-early-if-we-found-a-match.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From: =?utf-8?q?Guido_G=C3=BCnther?= <agx@sigxcpu.org>
-Date: Mon, 14 Jul 2014 16:12:43 +0200
-Subject: Abort early if we found a match
-
-Once we found a shared object that a process maps we don't need to
-continue with the other shared objects since one is enough to require
-a process restart.
----
- whatmaps/command.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/whatmaps/command.py b/whatmaps/command.py
-index 7690ef8..e649cbb 100755
---- a/whatmaps/command.py
-+++ b/whatmaps/command.py
-@@ -39,7 +39,7 @@ def check_maps(procs, shared_objects):
- restart_procs[proc.exe] += [ proc ]
- else:
- restart_procs[proc.exe] = [ proc ]
-- continue
-+ break
- return restart_procs
-
-
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 219effd..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-0001-Another-import-bugfix.patch
-0002-Abort-early-if-we-found-a-match.patch