From deeb9c4852c699ad26a5d81cdf13176cb6c2e114 Mon Sep 17 00:00:00 2001 From: k clair Date: Tue, 9 Oct 2012 12:55:01 -0700 Subject: add previously generated debian packaging files --- ping-0.2/debian/python-ping/DEBIAN/control | 20 ++++++++++++++++++++ ping-0.2/debian/python-ping/DEBIAN/md5sums | 7 +++++++ ping-0.2/debian/python-ping/DEBIAN/postinst | 7 +++++++ ping-0.2/debian/python-ping/DEBIAN/prerm | 7 +++++++ 4 files changed, 41 insertions(+) create mode 100644 ping-0.2/debian/python-ping/DEBIAN/control create mode 100644 ping-0.2/debian/python-ping/DEBIAN/md5sums create mode 100755 ping-0.2/debian/python-ping/DEBIAN/postinst create mode 100755 ping-0.2/debian/python-ping/DEBIAN/prerm (limited to 'ping-0.2/debian/python-ping/DEBIAN') 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 +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 -- cgit v1.2.3