From 050d3b21bf30bbd6f60d4819600c7d1550e4e5fd Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 3 Sep 2010 20:42:20 +0200 Subject: Add Debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 19 +++++++++++++++++++ debian/copyright | 40 ++++++++++++++++++++++++++++++++++++++++ debian/dirs | 1 + debian/gbp.conf | 3 +++ debian/pyversions | 1 + debian/rules | 13 +++++++++++++ debian/source/format | 1 + 9 files changed, 84 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/gbp.conf create mode 100644 debian/pyversions create mode 100755 debian/rules create mode 100644 debian/source/format 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 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 +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 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 + + +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 . + +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 + +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) -- cgit v1.2.3