diff options
-rw-r--r-- | debian/clean | 1 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 7 | ||||
-rw-r--r-- | debian/doc-base | 9 | ||||
-rwxr-xr-x | debian/rules | 6 |
5 files changed, 13 insertions, 12 deletions
diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..c7ec943 --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +test.log diff --git a/debian/compat b/debian/compat index 7f8f011..45a4fb7 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -7 +8 diff --git a/debian/control b/debian/control index 9fc1afd..700195b 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Jeremy T. Bouse <jbouse@debian.org> Uploaders: Guido Guenther <agx@debian.org> Build-Depends: quilt (>= 0.46-7~), - debhelper (>> 7.0.50), + debhelper (>> 8.0.0), python-all (>= 2.6.6-3~), python-crypto (>= 2.1.0-2) Standards-Version: 3.9.2 @@ -18,11 +18,6 @@ Depends: ${misc:Depends}, ${python:Depends}, python-crypto (>= 2.1.0-2) Provides: ${python:Provides} -Replaces: python2.3-paramiko (<< 1.5-1.1), - python2.4-paramiko (<< 1.5-1.1) -Conflicts: python2.3-paramiko (<< 1.5-1.1), - python2.4-paramiko (<< 1.5-1.1), - fabric (<< 0.9.0-1) Description: Make ssh v2 connections with Python This is a library for making SSH2 connections (client or server). Emphasis is on using SSH2 as an alternative to SSL for making secure diff --git a/debian/doc-base b/debian/doc-base new file mode 100644 index 0000000..e604928 --- /dev/null +++ b/debian/doc-base @@ -0,0 +1,9 @@ +Document: python-paramiko +Title: Paramiko +Author: Robey Pointer <robeypointer@gmail.com> +Abstract: A Python interface to the paramiko SSH2 protocol library +Section: Programming/Python + +Format: html +Index: /usr/share/doc/python-paramiko/docs/index.html +Files: /usr/share/doc/python-paramiko/docs/*.html diff --git a/debian/rules b/debian/rules index 263f155..999522d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,7 @@ #!/usr/bin/make -f %: - dh --with python2,quilt $@ - -override_dh_clean: - rm -rf build test.log - dh_clean + dh $@ --with python2,quilt override_dh_auto_test: ./test.py |