From b0fe0557684cc4926a12b63fd8da837297413e02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 3 May 2014 11:28:44 +0200 Subject: Add missing import --- debian/patches/0001-Add-missing-import.patch | 20 ++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 21 insertions(+) create mode 100644 debian/patches/0001-Add-missing-import.patch create mode 100644 debian/patches/series (limited to 'debian') diff --git a/debian/patches/0001-Add-missing-import.patch b/debian/patches/0001-Add-missing-import.patch new file mode 100644 index 0000000..3f23df5 --- /dev/null +++ b/debian/patches/0001-Add-missing-import.patch @@ -0,0 +1,20 @@ +From: =?utf-8?q?Guido_G=C3=BCnther?= +Date: Sat, 3 May 2014 11:27:34 +0200 +Subject: Add missing import + +--- + whatmaps/debiandistro.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py +index 54c706a..4a3d0db 100644 +--- a/whatmaps/debiandistro.py ++++ b/whatmaps/debiandistro.py +@@ -26,6 +26,7 @@ except ImportError: + lsb_release = None + + import logging ++import string + import subprocess + import sys + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..98daf29 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +0001-Add-missing-import.patch -- cgit v1.2.3 From 00790da0e3b2c5e63254511a07b2bc4167bde40d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Sat, 3 May 2014 11:29:20 +0200 Subject: Document changes and release 0.0.6-2 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index c1757df..71c825c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +whatmaps (0.0.6-2) unstable; urgency=medium + + * [b0fe055] Add missing import + + -- Guido Günther Sat, 03 May 2014 11:29:16 +0200 + whatmaps (0.0.6-1) unstable; urgency=medium * New upstream version 0.0.6 -- cgit v1.2.3 From d10e47c277d729a7d8375444a24878809d020055 Mon Sep 17 00:00:00 2001 From: Justin B Rye Date: Tue, 6 May 2014 09:12:03 +0200 Subject: Improve package description Closes: #747147 --- debian/control | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'debian') diff --git a/debian/control b/debian/control index 570fbb8..e35fce7 100644 --- a/debian/control +++ b/debian/control @@ -16,13 +16,10 @@ Package: whatmaps Architecture: all Depends: ${misc:Depends}, ${python:Depends}, lsb-release, python-apt -Description: Find processes mapping shared objects - After package upgrades processes using a ahared library need to be - restarted to make use of that updated library (e.g. if the library got a - security upgrade). +Description: tool to find processes mapping shared objects + After package upgrades (especially security fixes), services using a + shared library need to be restarted to make use of the updated version. . - Whatmaps looks for shared objects in packages and finds running programs that - map them, list them and allows one to restart them. - . - It can be integrated with apt to automatically restart services automatically - on security upgrades. + Whatmaps looks for shared objects provided by upgraded packages, lists any + running processes that map them, and can integrate with APT to restart + services as needed after security upgrades. -- cgit v1.2.3 From acbf3dd87ee59069efac5cf0c4c801bfa375308f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Fri, 6 Jun 2014 19:19:05 +0200 Subject: Depend on python-pkg-resources needed for the entry point --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/control b/debian/control index e35fce7..516e234 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,7 @@ X-Python-Version: >= 2.7 Package: whatmaps Architecture: all Depends: ${misc:Depends}, ${python:Depends}, lsb-release, - python-apt + python-apt, python-pkg-resources Description: tool to find processes mapping shared objects After package upgrades (especially security fixes), services using a shared library need to be restarted to make use of the updated version. -- cgit v1.2.3 From a049392e5091a3d61443edcca1e0199adc26d4e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Fri, 6 Jun 2014 19:41:32 +0200 Subject: Drop patches applied upstream --- debian/patches/0001-Add-missing-import.patch | 20 -------------------- debian/patches/series | 1 - 2 files changed, 21 deletions(-) delete mode 100644 debian/patches/0001-Add-missing-import.patch delete mode 100644 debian/patches/series (limited to 'debian') diff --git a/debian/patches/0001-Add-missing-import.patch b/debian/patches/0001-Add-missing-import.patch deleted file mode 100644 index 3f23df5..0000000 --- a/debian/patches/0001-Add-missing-import.patch +++ /dev/null @@ -1,20 +0,0 @@ -From: =?utf-8?q?Guido_G=C3=BCnther?= -Date: Sat, 3 May 2014 11:27:34 +0200 -Subject: Add missing import - ---- - whatmaps/debiandistro.py | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/whatmaps/debiandistro.py b/whatmaps/debiandistro.py -index 54c706a..4a3d0db 100644 ---- a/whatmaps/debiandistro.py -+++ b/whatmaps/debiandistro.py -@@ -26,6 +26,7 @@ except ImportError: - lsb_release = None - - import logging -+import string - import subprocess - import sys - diff --git a/debian/patches/series b/debian/patches/series deleted file mode 100644 index 98daf29..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -0001-Add-missing-import.patch -- cgit v1.2.3 From 9f93c4de0a223b9ae8422c80f828745bd7725b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Fri, 6 Jun 2014 19:42:19 +0200 Subject: Document changes and release 0.0.7-1 --- debian/changelog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 71c825c..3d09258 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +whatmaps (0.0.7-1) unstable; urgency=medium + + [ Justin B Rye ] + * [d10e47c] Improve package description (Closes: #747147) + + [ Guido Günther ] + * New upstream version 0.0.7 + * [acbf3dd] Depend on python-pkg-resources needed for the entry point + * [a049392] Drop patches applied upstream + + -- Guido Günther Fri, 06 Jun 2014 19:42:09 +0200 + whatmaps (0.0.6-2) unstable; urgency=medium * [b0fe055] Add missing import -- cgit v1.2.3