diff options
| author | k clair <kclair@riseup.net> | 2012-10-09 12:55:01 -0700 |
|---|---|---|
| committer | k clair <kclair@riseup.net> | 2012-10-09 12:55:01 -0700 |
| commit | deeb9c4852c699ad26a5d81cdf13176cb6c2e114 (patch) | |
| tree | e77c87015b276f80f9d727ffeb7e9904adc74dbd /ping-0.2/debian/python-ping/DEBIAN | |
| parent | e7f841ebffe2a1631a3bd8056b2aa2182184fc8a (diff) | |
add previously generated debian packaging files
Diffstat (limited to 'ping-0.2/debian/python-ping/DEBIAN')
| -rw-r--r-- | ping-0.2/debian/python-ping/DEBIAN/control | 20 | ||||
| -rw-r--r-- | ping-0.2/debian/python-ping/DEBIAN/md5sums | 7 | ||||
| -rwxr-xr-x | ping-0.2/debian/python-ping/DEBIAN/postinst | 7 | ||||
| -rwxr-xr-x | ping-0.2/debian/python-ping/DEBIAN/prerm | 7 |
4 files changed, 41 insertions, 0 deletions
diff --git a/ping-0.2/debian/python-ping/DEBIAN/control b/ping-0.2/debian/python-ping/DEBIAN/control new file mode 100644 index 0000000..b97ec21 --- /dev/null +++ b/ping-0.2/debian/python-ping/DEBIAN/control @@ -0,0 +1,20 @@ +Package: python-ping +Version: 0.2-1 +Architecture: all +Maintainer: Kristina Clair <kclair@leap.se> +Installed-Size: 76 +Depends: python, python-support (>= 0.90.0) +Provides: python2.5-ping, python2.6-ping +Section: python +Priority: optional +Description: An implementation of ICMP ping in Python + This library is a fork of George Notaras' python-ping library, which is + an implementation of the standard ICMP ping in pure Python. + . + As it uses raw ICMP sockets, you need to be root to use the functions + exported by the ping module. + . + This fork by Pierre Bourdon adds a setup.py file in order to permit an + easier distribution of the package. The license of the library remains + unchanged (GPLv2), see COPYING. +Python-Version: 2.5, 2.6 diff --git a/ping-0.2/debian/python-ping/DEBIAN/md5sums b/ping-0.2/debian/python-ping/DEBIAN/md5sums new file mode 100644 index 0000000..21aca8b --- /dev/null +++ b/ping-0.2/debian/python-ping/DEBIAN/md5sums @@ -0,0 +1,7 @@ +0851268cfa5f0ed91ecddae6d42e10c4 usr/share/doc/python-ping/README +218257068617a420552b25445a495b01 usr/share/doc/python-ping/README.Debian +9de4874a2f489523a5128c8255aa2457 usr/share/doc/python-ping/changelog.Debian.gz +27543d7b5ce6a9f6319cff1d1d5a7a0b usr/share/doc/python-ping/copyright +b246e4f2dcf66e20c6353b89c3df912a usr/share/pyshared/ping-0.2.egg-info +b9da1875bfb3013c16f66ed22edaa46f usr/share/pyshared/ping.py +4f51c996bcf5086cb0de223b62a146eb usr/share/python-support/python-ping.public diff --git a/ping-0.2/debian/python-ping/DEBIAN/postinst b/ping-0.2/debian/python-ping/DEBIAN/postinst new file mode 100755 index 0000000..6aa6c16 --- /dev/null +++ b/ping-0.2/debian/python-ping/DEBIAN/postinst @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +# Automatically added by dh_pysupport +if which update-python-modules >/dev/null 2>&1; then + update-python-modules python-ping.public +fi +# End automatically added section diff --git a/ping-0.2/debian/python-ping/DEBIAN/prerm b/ping-0.2/debian/python-ping/DEBIAN/prerm new file mode 100755 index 0000000..99c6b3b --- /dev/null +++ b/ping-0.2/debian/python-ping/DEBIAN/prerm @@ -0,0 +1,7 @@ +#!/bin/sh +set -e +# Automatically added by dh_pysupport +if which update-python-modules >/dev/null 2>&1; then + update-python-modules -c python-ping.public +fi +# End automatically added section |
