From owner-svn-ports-all@freebsd.org Wed Nov 30 22:38:22 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 886E7C5E0BF; Wed, 30 Nov 2016 22:38:22 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A6C71A12; Wed, 30 Nov 2016 22:38:22 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAUMcLhL073784; Wed, 30 Nov 2016 22:38:21 GMT (envelope-from sbz@FreeBSD.org) Received: (from sbz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAUMcLrO073781; Wed, 30 Nov 2016 22:38:21 GMT (envelope-from sbz@FreeBSD.org) Message-Id: <201611302238.uAUMcLrO073781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbz set sender to sbz@FreeBSD.org using -f From: Sofian Brabez Date: Wed, 30 Nov 2016 22:38:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427465 - 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-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Nov 2016 22:38:22 -0000 Author: sbz Date: Wed Nov 30 22:38:21 2016 New Revision: 427465 URL: https://svnweb.freebsd.org/changeset/ports/427465 Log: - Update to 2.0.2 - Allow Python concurrent installation - Use do-test target instead regression-test Added: head/security/py-paramiko/files/ head/security/py-paramiko/files/patch-tests_test__packetizer.py (contents, props changed) Modified: head/security/py-paramiko/Makefile head/security/py-paramiko/distinfo Modified: head/security/py-paramiko/Makefile ============================================================================== --- head/security/py-paramiko/Makefile Wed Nov 30 22:36:18 2016 (r427464) +++ head/security/py-paramiko/Makefile Wed Nov 30 22:38:21 2016 (r427465) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= paramiko -PORTVERSION= 2.0.0 -PORTREVISION= 1 +PORTVERSION= 2.0.2 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,18 +11,19 @@ MAINTAINER= sbz@FreeBSD.org COMMENT= Python SSH2 protocol library LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography \ ${PYTHON_PKGNAMEPREFIX}ecdsa>0:security/py-ecdsa USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils CONFLICTS_INSTALL= py??-paramiko1-* OPTIONS_DEFINE= EXAMPLES -regression-test: extract +do-test: extract @(cd ${WRKSRC} && ${PYTHON_CMD} test.py) .include Modified: head/security/py-paramiko/distinfo ============================================================================== --- head/security/py-paramiko/distinfo Wed Nov 30 22:36:18 2016 (r427464) +++ head/security/py-paramiko/distinfo Wed Nov 30 22:38:21 2016 (r427465) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464139163 -SHA256 (paramiko-2.0.0.tar.gz) = 51219ecaf88aa1cea9952b3c4ddcc0c1316f015d23d77edb7aee78a3468ef0e2 -SIZE (paramiko-2.0.0.tar.gz) = 1372885 +TIMESTAMP = 1480541457 +SHA256 (paramiko-2.0.2.tar.gz) = 411bf90fa22b078a923ff19ef9772c1115a0953702db93549a2848acefd141dc +SIZE (paramiko-2.0.2.tar.gz) = 1190464 Added: head/security/py-paramiko/files/patch-tests_test__packetizer.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-paramiko/files/patch-tests_test__packetizer.py Wed Nov 30 22:38:21 2016 (r427465) @@ -0,0 +1,11 @@ +--- tests/test_packetizer.py.orig 2016-11-30 22:24:28 UTC ++++ tests/test_packetizer.py +@@ -114,7 +114,7 @@ class PacketizerTest (unittest.TestCase) + class TimeoutError(Exception): + pass + +- def timeout(seconds=1, error_message=os.strerror(errno.ETIME)): ++ def timeout(seconds=1, error_message='Timer expired'): + def decorator(func): + def _handle_timeout(signum, frame): + raise TimeoutError(error_message)