summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog58
-rw-r--r--debian/compat1
-rw-r--r--debian/control25
-rw-r--r--debian/copyright39
-rw-r--r--debian/dirs1
-rw-r--r--debian/docs1
-rw-r--r--debian/gbp.conf3
-rw-r--r--debian/patches/0001-Add-missing-import.patch20
-rw-r--r--debian/patches/series1
-rw-r--r--debian/pyversions1
-rwxr-xr-xdebian/rules25
-rw-r--r--debian/source/format1
12 files changed, 176 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..71c825c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,58 @@
+whatmaps (0.0.6-2) unstable; urgency=medium
+
+ * [b0fe055] Add missing import
+
+ -- Guido Günther <agx@sigxcpu.org> Sat, 03 May 2014 11:29:16 +0200
+
+whatmaps (0.0.6-1) unstable; urgency=medium
+
+ * New upstream version 0.0.6
+ * [3029ab6] Make whatmaps a non native package. It's meant for Debian
+ mostly but can be used on RPM based distros as well.
+ * [f0be66f] Drop README.Debian since it doesn't carry additional info
+ (Closes: #746623)
+ * [e98bdde] Build-depend on python-mock
+
+ -- Guido Günther <agx@sigxcpu.org> Fri, 02 May 2014 17:40:32 +0200
+
+whatmaps (0.0.5) unstable; urgency=medium
+
+ * [8d0efd3] Improve description
+ * [ce27981] Add README.Debian that explains howto enable apt integration
+ * [1f9bde4] ship README
+ * [e415fe7] Ship manpage
+ * [b3e2fef] Bump standards version to 3.9.5
+ * [38be6c5] Run tests during build
+ * New version 0.0.5 (Closes: #745133)
+
+ -- Guido Günther <agx@sigxcpu.org> Fri, 18 Apr 2014 15:16:38 +0200
+
+whatmaps (0.0.3~bpo70+1) wheezy-backports; urgency=medium
+
+ * [18158e1] Adapt so Squeeze's apache 2.2 package
+ * [3fe7094] Check for deleted binaries before trying to stat them
+ * [0fa3c86] Skip already terminated processes. Thanks to Christop Göhre for
+ pointing this out
+ * [97de504] Remove duplicate detect_distro call
+ * [c1eef79] Don't fail if lsb_release is missing
+ * [d6b284e] Remove template from copyright
+
+ -- Guido Günther <agx@sigxcpu.org> Tue, 07 Jan 2014 19:23:41 +0100
+
+whatmaps (0.0.2) unstable; urgency=low
+
+ * New upstream version:
+ * Fix regex. The current one only matched one letter/number SO names.
+ * [082b2ec] Build-depend on lsb-release so the apt configuration gets
+ included
+ * [a732594] Bump standards version
+ * [9bbccc9] Adapt so Squeeze's apache 2.2 package
+ * [47709f0] Fix grammar in description
+
+ -- Guido Günther <agx@sigxcpu.org> Sat, 21 May 2011 13:30:06 +0200
+
+whatmaps (0.0.1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Guido Günther <agx@sigxcpu.org> Sat, 21 May 2011 13:29:56 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..516e234
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: whatmaps
+Section: admin
+Priority: extra
+Maintainer: Guido Günther <agx@sigxcpu.org>
+Build-Depends: debhelper (>= 9~), lsb-release,
+ python-all (>> 2.6.6-3~),
+ python-mock,
+ python-nose,
+ python-setuptools,
+Standards-Version: 3.9.5
+Homepage: https://honk.sigxcpu.org/piki/projects/whatmaps
+Vcs-Git: git://honk.sigxcpu.org/git/whatmaps.git/
+X-Python-Version: >= 2.7
+
+Package: whatmaps
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, lsb-release,
+ 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.
+ .
+ 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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3586516
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+This work was packaged for Debian by:
+
+ Guido Günther <agx@sigxcpu.org> on Fri, 03 Sep 2010 20:38:18 +0200
+
+It was downloaded from:
+
+ https://honk.sigxcpu.org/piki/projects/whatmaps
+
+Upstream Author:
+
+ Guido Günther <agx@sigxcpu.org>
+
+Copyright:
+
+ Copyright (C) 2010 Guido Günther
+
+License:
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU General
+Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
+
+The Debian packaging is:
+
+ Copyright (C) 2010 Guido Günther <agx@sigxcpu.org>
+
+and is licensed under the GPL version 3, see above.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..3b3088d
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+/var/lib/whatmaps/
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0d61683
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+debian-branch = debian/master
+upstream-tag = v%(version)s
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?= <agx@sigxcpu.org>
+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
diff --git a/debian/pyversions b/debian/pyversions
new file mode 100644
index 0000000..b3dc41e
--- /dev/null
+++ b/debian/pyversions
@@ -0,0 +1 @@
+2.5-
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5ce9e1c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@ --with python2
+
+override_dh_installman:
+ pod2man man/whatmaps.pod man/whatmaps.8
+ dh_installman man/whatmaps.8
+
+override_dh_auto_test:
+ python setup.py nosetests
+ dh_auto_test
+
+override_dh_autoclean:
+ rm -f man/whatmaps.8
+ dh_autoclean
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)