summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/README.Debian6
-rw-r--r--debian/changelog41
-rw-r--r--debian/compat1
-rw-r--r--debian/control27
-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/pyversions1
-rwxr-xr-xdebian/rules25
-rw-r--r--debian/source/format1
11 files changed, 146 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..6bdeb52
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,6 @@
+To enable apt integration set
+
+ Whatmaps::Enable-Restart "1";
+
+in /etc/apt/apt.conf.d/20services.
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6681952
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,41 @@
+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..343fd35
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,27 @@
+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-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
+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).
+ .
+ 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.
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/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..89ae9db
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (native)