pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/py-paramiko update to 1.7.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b0f099d8aa6f
branches:  trunk
changeset: 542411:b0f099d8aa6f
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Thu May 15 18:27:43 2008 +0000

description:
update to 1.7.3
changes:
-direct-tcpip support
-bug fixes

pkgsrc change: disable use of Python setuptools
        (gives unpredictable results)

diffstat:

 security/py-paramiko/Makefile         |   7 +++++--
 security/py-paramiko/PLIST            |   5 ++++-
 security/py-paramiko/distinfo         |   9 +++++----
 security/py-paramiko/patches/patch-aa |  21 +++++++++++++++++++++
 4 files changed, 35 insertions(+), 7 deletions(-)

diffs (81 lines):

diff -r 168c44cba358 -r b0f099d8aa6f security/py-paramiko/Makefile
--- a/security/py-paramiko/Makefile     Thu May 15 18:19:27 2008 +0000
+++ b/security/py-paramiko/Makefile     Thu May 15 18:27:43 2008 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2008/04/25 20:39:12 joerg Exp $
+# $NetBSD: Makefile,v 1.5 2008/05/15 18:27:43 drochner Exp $
 #
 
-DISTNAME=              paramiko-1.7.1
+DISTNAME=              paramiko-1.7.3
 PKGNAME=               ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=            security
 MASTER_SITES=          http://www.lag.net/paramiko/download/
@@ -13,6 +13,9 @@
 
 PYDISTUTILSPKG=                yes
 
+do-test:
+       (cd ${WRKSRC} && ${PYTHONBIN} test.py)
+
 .include "../../lang/python/extension.mk"
 .include "../../security/py-amkCrypto/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 168c44cba358 -r b0f099d8aa6f security/py-paramiko/PLIST
--- a/security/py-paramiko/PLIST        Thu May 15 18:19:27 2008 +0000
+++ b/security/py-paramiko/PLIST        Thu May 15 18:27:43 2008 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2007/12/14 13:35:04 bjs Exp $
+@comment $NetBSD: PLIST,v 1.3 2008/05/15 18:27:43 drochner Exp $
 ${PYSITELIB}/paramiko/__init__.py
 ${PYSITELIB}/paramiko/__init__.pyc
 ${PYSITELIB}/paramiko/__init__.pyo
@@ -50,6 +50,9 @@
 ${PYSITELIB}/paramiko/message.py
 ${PYSITELIB}/paramiko/message.pyc
 ${PYSITELIB}/paramiko/message.pyo
+${PYSITELIB}/paramiko/osrandom.py
+${PYSITELIB}/paramiko/osrandom.pyc
+${PYSITELIB}/paramiko/osrandom.pyo
 ${PYSITELIB}/paramiko/packet.py
 ${PYSITELIB}/paramiko/packet.pyc
 ${PYSITELIB}/paramiko/packet.pyo
diff -r 168c44cba358 -r b0f099d8aa6f security/py-paramiko/distinfo
--- a/security/py-paramiko/distinfo     Thu May 15 18:19:27 2008 +0000
+++ b/security/py-paramiko/distinfo     Thu May 15 18:27:43 2008 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.2 2007/12/14 13:35:05 bjs Exp $
+$NetBSD: distinfo,v 1.3 2008/05/15 18:27:43 drochner Exp $
 
-SHA1 (paramiko-1.7.1.zip) = 5ccb94b48dc134dbaa9e95a95d65b223ae6ecfa2
-RMD160 (paramiko-1.7.1.zip) = d091c304a619c1258de3df697b092b980604a851
-Size (paramiko-1.7.1.zip) = 358992 bytes
+SHA1 (paramiko-1.7.3.zip) = e4d476008a8f5624d674e44a2ef0911cd6c1a57d
+RMD160 (paramiko-1.7.3.zip) = f0fe9bfc2f4e7b3fae1a4bc58c5a4ea3dd84743f
+Size (paramiko-1.7.3.zip) = 1078878 bytes
+SHA1 (patch-aa) = 0c31844f4a3c0d72a8c7cd72364316c30e118bb4
diff -r 168c44cba358 -r b0f099d8aa6f security/py-paramiko/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/py-paramiko/patches/patch-aa     Thu May 15 18:27:43 2008 +0000
@@ -0,0 +1,21 @@
+$NetBSD: patch-aa,v 1.1 2008/05/15 18:27:43 drochner Exp $
+
+--- setup.py.orig      2008-05-15 18:03:12.000000000 +0200
++++ setup.py
+@@ -33,14 +33,8 @@ Required packages:
+ #ez_setup.use_setuptools()
+ 
+ import sys
+-try:
+-    from setuptools import setup
+-    kw = {
+-        'install_requires': 'pycrypto >= 1.9',
+-    }
+-except ImportError:
+-    from distutils.core import setup
+-    kw = {}
++from distutils.core import setup
++kw = {}
+     
+ if sys.platform == 'darwin':
+       import setup_helper



Home | Main Index | Thread Index | Old Index