summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control19
-rw-r--r--debian/copyright40
-rw-r--r--debian/dirs1
-rw-r--r--debian/gbp.conf3
-rw-r--r--debian/pyversions1
-rwxr-xr-xdebian/rules13
-rw-r--r--debian/source/format1
9 files changed, 84 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0ec2e8e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+whatmaps (0.0.1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Guido Günther <agx@sigxcpu.org> Fri, 03 Sep 2010 20:38:18 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..bc6dc90
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: whatmaps
+Section: admin
+Priority: extra
+Maintainer: Guido Günther <agx@sigxcpu.org>
+Build-Depends: debhelper (>= 7.0.50~), python-support
+Standards-Version: 3.9.1
+Homepage: https://honk.sigxcpu.org/piki/projects/whatmaps
+Vcs-Git: git://honk.sigxcpu.org/git/whatmaps.git/
+
+Package: whatmaps
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, lsb-release,
+ python-apt
+Description: Find processes mapping shared objects
+ During upgrades processes mapping 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 to restart them.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ecdad77
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,40 @@
+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>
+ <likewise for another author>
+
+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/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..955dd78
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/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 $@
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)