aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Klose <doko@debian.org>2008-07-18 14:16:08 +0200
committerJeremy T. Bouse <jbouse@debian.org>2009-11-27 16:20:14 -0500
commitcf3c941b6f762ad933f88af9cd4cdd2dbbb51003 (patch)
treec7a772d362ad05c80316eaef5919907bf37f8c78
parentd04355ae59eba8a96d4341ec3db9d81470344703 (diff)
downloadpython-paramiko-cf3c941b6f762ad933f88af9cd4cdd2dbbb51003.tar
python-paramiko-cf3c941b6f762ad933f88af9cd4cdd2dbbb51003.tar.gz
Imported Debian patch 1.7.4-0.1debian/1.7.4-0.1
-rw-r--r--debian/changelog46
-rw-r--r--debian/control10
-rw-r--r--debian/python-paramiko.examples4
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/*