security/py-paramiko: 1.14.0 -> 1.15.2

- Website updated
- For other changes see
  http://www.paramiko.org/changelog.html

PR:		199896
Submitted by:	Claudius Herder <claudius.herder@ambtec.de>
Approved by:	sbz (maintainer timeout)
This commit is contained in:
Kurt Jaeger 2015-07-26 20:05:57 +00:00
parent 912df2a702
commit dd06283c71
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=392946
4 changed files with 9 additions and 8 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= paramiko
PORTVERSION= 1.14.0
PORTVERSION= 1.15.2
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,2 +1,2 @@
SHA256 (paramiko-1.14.0.tar.gz) = 6e606b4623fad4bf02c1aa5ade4c480b4514be90dbf2e096c643e56d1ead63e9
SIZE (paramiko-1.14.0.tar.gz) = 1103322
SHA256 (paramiko-1.15.2.tar.gz) = 4f56a671a3eecbb76e6143e6e4ca007d503a39aa79aa9e14ade667fa53fd6e55
SIZE (paramiko-1.15.2.tar.gz) = 1220578

View File

@ -1,6 +1,6 @@
--- ./setup.py.orig 2014-05-20 15:06:31.000000000 +0200
+++ ./setup.py 2014-05-20 15:07:11.000000000 +0200
@@ -37,17 +37,8 @@
--- setup.py.orig 2014-12-19 23:01:22 UTC
+++ setup.py
@@ -37,17 +37,9 @@ To install the `in-development version
#ez_setup.use_setuptools()
import sys
@ -9,12 +9,13 @@
- kw = {
- 'install_requires': [
- 'pycrypto >= 2.1, != 2.4',
- 'ecdsa',
- 'ecdsa >= 0.11',
- ],
- }
-except ImportError:
- from distutils.core import setup
- kw = {}
+
+from distutils.core import setup
+kw = {}

View File

@ -3,4 +3,4 @@ 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.
WWW: http://www.lag.net/paramiko/
WWW: http://www.paramiko.org/