From owner-svn-ports-head@FreeBSD.ORG Thu Feb 6 16:25:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E103738; Thu, 6 Feb 2014 16:25:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 93B76183E; Thu, 6 Feb 2014 16:25:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s16GPMmO015531; Thu, 6 Feb 2014 16:25:22 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s16GPMUT015524; Thu, 6 Feb 2014 16:25:22 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201402061625.s16GPMUT015524@svn.freebsd.org> From: Sofian Brabez Date: Thu, 6 Feb 2014 16:25:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343118 - in head/security/py-paramiko: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Feb 2014 16:25:23 -0000 Author: sbz Date: Thu Feb 6 16:25:21 2014 New Revision: 343118 URL: http://svnweb.freebsd.org/changeset/ports/343118 QAT: https://qat.redports.org/buildarchive/r343118/ Log: - Update to 1.12.1 Modified: head/security/py-paramiko/Makefile head/security/py-paramiko/distinfo head/security/py-paramiko/files/patch-setup.py Modified: head/security/py-paramiko/Makefile ============================================================================== --- head/security/py-paramiko/Makefile Thu Feb 6 16:25:15 2014 (r343117) +++ head/security/py-paramiko/Makefile Thu Feb 6 16:25:21 2014 (r343118) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= paramiko -PORTVERSION= 1.11.0 +PORTVERSION= 1.12.1 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,8 @@ COMMENT= Python SSH2 protocol library LICENSE= GPLv2 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto \ + ${PYTHON_PKGNAMEPREFIX}ecdsa>0:${PORTSDIR}/security/py-ecdsa USE_PYTHON= yes USE_PYDISTUTILS= yes @@ -20,11 +21,11 @@ PYDISTUTILS_AUTOPLIST= yes EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -.include +OPTIONS_DEFINE= EXAMPLES post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - @(cd ${WRKSRC}/demos && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}) + (cd ${WRKSRC}/demos && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) regression-test: extract @(cd ${WRKSRC} && ${PYTHON_CMD} test.py) Modified: head/security/py-paramiko/distinfo ============================================================================== --- head/security/py-paramiko/distinfo Thu Feb 6 16:25:15 2014 (r343117) +++ head/security/py-paramiko/distinfo Thu Feb 6 16:25:21 2014 (r343118) @@ -1,2 +1,2 @@ -SHA256 (paramiko-1.11.0.tar.gz) = d46fb8af4c4ffca3c55c600c17354c7c149d8c5dcd7cd6395f4fa0ce2deaca87 -SIZE (paramiko-1.11.0.tar.gz) = 842743 +SHA256 (paramiko-1.12.1.tar.gz) = 792d3735ef91c2f54c1afc8c18341c7a707bfcec19d2d29da76c2758dbd79e8c +SIZE (paramiko-1.12.1.tar.gz) = 860531 Modified: head/security/py-paramiko/files/patch-setup.py ============================================================================== --- head/security/py-paramiko/files/patch-setup.py Thu Feb 6 16:25:15 2014 (r343117) +++ head/security/py-paramiko/files/patch-setup.py Thu Feb 6 16:25:21 2014 (r343118) @@ -1,13 +1,15 @@ ---- ./setup.py.orig 2012-10-03 11:45:35.000000000 +0200 -+++ ./setup.py 2012-10-03 11:46:32.000000000 +0200 -@@ -37,14 +37,8 @@ +--- ./setup.py.orig 2014-02-06 14:49:52.000000000 +0100 ++++ ./setup.py 2014-02-06 14:51:23.000000000 +0100 +@@ -37,16 +37,8 @@ #ez_setup.use_setuptools() import sys -try: - from setuptools import setup - kw = { -- 'install_requires': 'pycrypto >= 2.1, != 2.4', +- 'install_requires': ['pycrypto >= 2.1, != 2.4', +- 'ecdsa', +- ], - } -except ImportError: - from distutils.core import setup