summaryrefslogtreecommitdiff
path: root/gnutls-1.1.9/debian/python-gnutls/DEBIAN
diff options
context:
space:
mode:
Diffstat (limited to 'gnutls-1.1.9/debian/python-gnutls/DEBIAN')
-rw-r--r--gnutls-1.1.9/debian/python-gnutls/DEBIAN/control23
-rw-r--r--gnutls-1.1.9/debian/python-gnutls/DEBIAN/md5sums22
-rwxr-xr-xgnutls-1.1.9/debian/python-gnutls/DEBIAN/postinst7
-rwxr-xr-xgnutls-1.1.9/debian/python-gnutls/DEBIAN/prerm7
4 files changed, 59 insertions, 0 deletions
diff --git a/gnutls-1.1.9/debian/python-gnutls/DEBIAN/control b/gnutls-1.1.9/debian/python-gnutls/DEBIAN/control
new file mode 100644
index 0000000..b682699
--- /dev/null
+++ b/gnutls-1.1.9/debian/python-gnutls/DEBIAN/control
@@ -0,0 +1,23 @@
+Package: python-gnutls
+Version: 1.1.9-1
+Architecture: amd64
+Maintainer: Kristina Clair <kclair@leap.se>
+Installed-Size: 384
+Depends: python (<< 2.7), python (>= 2.5), python-support (>= 0.90.0), libc6 (>= 2.2.5), libgcrypt11 (>= 1.4.2), libgnutls26 (>= 2.7.14-0)
+Provides: python2.5-gnutls, python2.6-gnutls
+Section: python
+Priority: optional
+Homepage: http://pypi.python.org/pypi/python-gnutls/1.1.9
+Description: Python wrapper for the GNUTLS library
+ This package provides a high level object oriented wrapper around
+ libgnutls, as well as low level bindings to the GNUTLS types and
+ functions via ctypes. The high level wrapper hides the details of
+ accessing the GNUTLS library via ctypes behind a set of classes
+ that encapsulate GNUTLS sessions, certificates and credentials and
+ expose them to Python applications using a simple API.
+ .
+ The package also includes a Twisted interface that has seamless
+ intergration with Twisted, providing connectTLS and listenTLS
+ methods on the Twisted reactor once imported (the methods are
+ automatically attached to the reactor by simply importing the
+ GNUTLS Twisted interface module).
diff --git a/gnutls-1.1.9/debian/python-gnutls/DEBIAN/md5sums b/gnutls-1.1.9/debian/python-gnutls/DEBIAN/md5sums
new file mode 100644
index 0000000..2382143
--- /dev/null
+++ b/gnutls-1.1.9/debian/python-gnutls/DEBIAN/md5sums
@@ -0,0 +1,22 @@
+e2fda9ac98c37b6ee3bcde708158ec5f usr/lib/pyshared/python2.5/gnutls/library/_gnutls_init.so
+4df141ee145ba70bcff331c30e684970 usr/lib/pyshared/python2.6/gnutls/library/_gnutls_init.so
+d9394eb9362a7142eba88799f798040e usr/share/doc/python-gnutls/README
+6697fe77b6f7274495d2b1bc8203c3ca usr/share/doc/python-gnutls/README.Debian
+950c66db7ec6a47faf3391a6a85ba7b8 usr/share/doc/python-gnutls/changelog.Debian.gz
+646bad4dab8ebd62f5b4e94444dba184 usr/share/doc/python-gnutls/changelog.gz
+193feaea73d0afef725c19e7cfb6b0f2 usr/share/doc/python-gnutls/copyright
+5381f2a59419a8b6f446e1b5278f1c0a usr/share/pyshared/gnutls/__init__.py
+2788c637b67d61652b34e99a742c071c usr/share/pyshared/gnutls/connection.py
+0623f736a384003c2b968aa33bd7bfce usr/share/pyshared/gnutls/constants.py
+399209afd686dbde597cda5fc8d85b5e usr/share/pyshared/gnutls/crypto.py
+783bdf857659a208094eab4fca90702b usr/share/pyshared/gnutls/errors.py
+75ae33a6542527f186a27e43bcb1f3d0 usr/share/pyshared/gnutls/interfaces/__init__.py
+e001e00896dcc0be201deb3e5df946b4 usr/share/pyshared/gnutls/interfaces/twisted/__init__.py
+a1c2591684c72bc0007f1f286e0ed441 usr/share/pyshared/gnutls/library/__init__.py
+c8296954f1e2c7ca000304278fb12086 usr/share/pyshared/gnutls/library/constants.py
+44ad85247067f96a66703b9d3e193db2 usr/share/pyshared/gnutls/library/errors.py
+7e42329b298a4cc7fdd9923da9bc5102 usr/share/pyshared/gnutls/library/functions.py
+a2c13c22a95e264f9f8962c0cd941a8a usr/share/pyshared/gnutls/library/types.py
+b3748b63be993c6b85ecac409026620c usr/share/pyshared/gnutls/validators.py
+6022acbfb8337f4308b7a57fdd8c74ef usr/share/pyshared/python_gnutls-1.1.9.egg-info
+05cc8ee1313d573768910bec62c9311e usr/share/python-support/python-gnutls.public
diff --git a/gnutls-1.1.9/debian/python-gnutls/DEBIAN/postinst b/gnutls-1.1.9/debian/python-gnutls/DEBIAN/postinst
new file mode 100755
index 0000000..1b965f9
--- /dev/null
+++ b/gnutls-1.1.9/debian/python-gnutls/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-gnutls.public
+fi
+# End automatically added section
diff --git a/gnutls-1.1.9/debian/python-gnutls/DEBIAN/prerm b/gnutls-1.1.9/debian/python-gnutls/DEBIAN/prerm
new file mode 100755
index 0000000..b79f34e
--- /dev/null
+++ b/gnutls-1.1.9/debian/python-gnutls/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-gnutls.public
+fi
+# End automatically added section