diff options
author | Robert Collins <robertc@robertcollins.net> | 2006-07-28 14:26:29 +1000 |
---|---|---|
committer | Jeremy T. Bouse <jbouse@debian.org> | 2009-11-27 16:20:11 -0500 |
commit | b30290e934385616ea48a55ecae5912f651b0bf7 (patch) | |
tree | eb5d022dc4ab777f4899cb230d5077e0c4fdb5aa | |
parent | 176c6caf4ea7918e1698438634b237fab8456471 (diff) | |
download | python-paramiko-b30290e934385616ea48a55ecae5912f651b0bf7.tar python-paramiko-b30290e934385616ea48a55ecae5912f651b0bf7.tar.gz |
Imported Debian patch 1.5.2-0.1debian/1.5.2-0.1
-rw-r--r-- | debian/changelog | 33 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 21 | ||||
-rw-r--r-- | debian/copyright | 25 | ||||
-rw-r--r-- | debian/docs | 1 | ||||
-rw-r--r-- | debian/pycompat | 1 | ||||
-rw-r--r-- | debian/python-paramiko.examples | 3 | ||||
-rwxr-xr-x | debian/rules | 11 | ||||
-rw-r--r-- | debian/watch | 2 |
9 files changed, 98 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..243a288 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,33 @@ +paramiko (1.5.2-0.1) unstable; urgency=low + + [ Wouter van Heyst ] + * Non-maintainer upload. + * New upstream release. + + Drop python_script_fix.patch and pathmangle.sh, no longer needed. + * Merge some ubuntu changes. + + Add watch file. + + Update copyright file. + + -- Robert Collins <robertc@robertcollins.net> Fri, 28 Jul 2006 14:26:29 +1000 + +paramiko (1.5-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix B-D-I/B-D glitches. + * Update package to the new python policy (Closes: #373472). + + -- Pierre Habouzit <madcoder@debian.org> Thu, 29 Jun 2006 23:00:34 +0200 + +paramiko (1.5-1) unstable; urgency=low + + * New upstream release. + * Initial package upload (Closes: #292942). + + -- Jeremy T. Bouse <jbouse@debian.org> Tue, 18 Oct 2005 14:57:46 -0700 + +paramiko (1.1-1) unstable; urgency=low + + * Initial Release. + + -- Guido Guenther <agx@debian.org> Mon, 31 Jan 2005 11:24:37 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d5f89aa --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: paramiko +Section: python +Priority: optional +Maintainer: Jeremy T. Bouse <jbouse@debian.org> +Uploaders: Guido Guenther <agx@debian.org> +Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11) +Build-Depends-Indep: python-support (>= 0.3) +Standards-Version: 3.7.2 + +Package: python-paramiko +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-crypto +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) +XB-Python-Version: ${python:Versions} +Description: make SSH2 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 + connections between python scripts. All major ciphers and hash methods + are supported. SFTP client and server mode are both supported too. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..2bdc4eb --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Guido Guenther <agx@debian.org> on +Mon, 31 Jan 2005 11:24:37 +0100. + +It was downloaded from http://www.lag.net/paramiko/download/ + +Upstream Author: Robey Pointer <robey@lag.net> + +Copyright 2003, 2004, 2005, 2006 Robey Pointer + + Paramiko is free software; you can redistribute it and/or modify it under the + terms of the GNU Lesser General Public License as published by the Free + Software Foundation; either version 2.1 of the License, or (at your option) + any later version. + + Paramiko is distrubuted 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 Lesser General Public License for more + details. + + You should have received a copy of the GNU Lesser General Public License + along with Paramiko; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian GNU/Linux systems, the complete text of the Lesser GNU General +Public License can be found in `/usr/share/common-licenses/LGPL'. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/pycompat b/debian/pycompat new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/debian/pycompat @@ -0,0 +1 @@ +2 diff --git a/debian/python-paramiko.examples b/debian/python-paramiko.examples new file mode 100644 index 0000000..a75972a --- /dev/null +++ b/debian/python-paramiko.examples @@ -0,0 +1,3 @@ +demo.py +demo_server.py +demo_simple.py diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..987e0c2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM=pysupport + +include /usr/share/cdbs/1/rules/buildcore.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +clean:: + rm -rf build diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..a7ebfef --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://www.lag.net/paramiko/download/paramiko-(.*)\.zip debian uupdate |