diff options
author | Matthias Klose <doko@debian.org> | 2008-07-18 14:16:08 +0200 |
---|---|---|
committer | Jeremy T. Bouse <jbouse@debian.org> | 2013-05-25 00:14:17 -0400 |
commit | 8acb644ff109dea38288eb19653d66eddc553988 (patch) | |
tree | b07274ca6b170487db26c11213e726173d0021a7 | |
parent | d21fea084267f351fd48e697c7ba6521af37beff (diff) | |
download | python-paramiko-8acb644ff109dea38288eb19653d66eddc553988.tar python-paramiko-8acb644ff109dea38288eb19653d66eddc553988.tar.gz |
Imported Debian patch 1.7.4-0.1
-rw-r--r-- | debian/changelog | 46 | ||||
-rw-r--r-- | debian/control | 10 | ||||
-rw-r--r-- | debian/python-paramiko.examples | 4 |
3 files changed, 51 insertions, 9 deletions
diff --git a/debian/changelog b/debian/changelog index 243a288..cf6c3dd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,49 @@ +paramiko (1.7.4-0.1) unstable; urgency=medium + + * NMU. + * New upstream version. + - Fix random number regression (stop using RandomPool). Closes: #490961. + + -- Matthias Klose <doko@debian.org> Fri, 18 Jul 2008 14:16:08 +0200 + +paramiko (1.7.3-1) unstable; urgency=low + + * New upstream version + Closes: #475505. + * Acknowledge NMU changes + * Missing examples included + Closes: #455547. + * Confirmed new upstream version corrected FutureWarning + Closes: #405552. + + -- Jeremy T. Bouse <jbouse@debian.org> Sun, 04 May 2008 11:41:27 -0400 + +paramiko (1.7.2-0.1) unstable; urgency=low + + * Non-maintainer upload to DELAYED/14-day. (¹) + * New upstream release. (Closes: #415060) + * Drop the patch introduced in 1.6.4-1.1, as it's part of 1.7.2. + + (¹) Counting since the initial 1.7.1-0.1 upload in Jan 13th. + + -- Adeodato Simó <dato@net.com.org.es> Thu, 24 Jan 2008 13:54:18 +0100 + +paramiko (1.6.4-1.1) unstable; urgency=high + + * Non-maintainer upload by security team. + * Fix insecure use of RandomPool if paramiko is used for threads or multiple + forked processes. This enables one session to predict random data of + another session using its own random data. + (CVE id pending; Closes: #460706). + + -- Nico Golde <nion@debian.org> Mon, 14 Jan 2008 19:36:40 +0100 + +paramiko (1.6.4-1) unstable; urgency=low + + * New upstream release (Closes: #344734, #382348). + + -- Jeremy T. Bouse <jbouse@debian.org> Tue, 26 Dec 2006 15:48:42 -0500 + paramiko (1.5.2-0.1) unstable; urgency=low [ Wouter van Heyst ] diff --git a/debian/control b/debian/control index d5f89aa..3b4bcbf 100644 --- a/debian/control +++ b/debian/control @@ -3,18 +3,16 @@ 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 +Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-support (>= 0.3) +Standards-Version: 3.7.3 Package: python-paramiko Architecture: all -Depends: ${misc:Depends}, ${python:Depends}, python-crypto +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 +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 connections between python scripts. All major ciphers and hash methods diff --git a/debian/python-paramiko.examples b/debian/python-paramiko.examples index a75972a..dde105a 100644 --- a/debian/python-paramiko.examples +++ b/debian/python-paramiko.examples @@ -1,3 +1 @@ -demo.py -demo_server.py -demo_simple.py +demos/* |