From owner-svn-ports-all@freebsd.org Wed Oct 24 05:10:45 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C69C1073D80; Wed, 24 Oct 2018 05:10:45 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EE1D9813A0; Wed, 24 Oct 2018 05:10:44 +0000 (UTC) (envelope-from egypcio@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E92721A33B; Wed, 24 Oct 2018 05:10:44 +0000 (UTC) (envelope-from egypcio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9O5AiK6013514; Wed, 24 Oct 2018 05:10:44 GMT (envelope-from egypcio@FreeBSD.org) Received: (from egypcio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9O5Aigr013513; Wed, 24 Oct 2018 05:10:44 GMT (envelope-from egypcio@FreeBSD.org) Message-Id: <201810240510.w9O5Aigr013513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: egypcio set sender to egypcio@FreeBSD.org using -f From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= Date: Wed, 24 Oct 2018 05:10:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482878 - head/net/py-sbws X-SVN-Group: ports-head X-SVN-Commit-Author: egypcio X-SVN-Commit-Paths: head/net/py-sbws X-SVN-Commit-Revision: 482878 X-SVN-Commit-Repository: ports 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.29 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, 24 Oct 2018 05:10:45 -0000 Author: egypcio Date: Wed Oct 24 05:10:44 2018 New Revision: 482878 URL: https://svnweb.freebsd.org/changeset/ports/482878 Log: this is v0.8.0; follow branch's setup.py to get port's deps and reqs done * python 3.5+ -> 3.4+; * console_scripts was used, so added concurrent to USE_PYTHON; * net/py-socks added to RUN_DEPENDS. Reported by: koobs Approved by: araujo (mentor), koobs Differential Revision: https://reviews.freebsd.org/D17623 Modified: head/net/py-sbws/Makefile Modified: head/net/py-sbws/Makefile ============================================================================== --- head/net/py-sbws/Makefile Wed Oct 24 00:55:35 2018 (r482877) +++ head/net/py-sbws/Makefile Wed Oct 24 05:10:44 2018 (r482878) @@ -3,6 +3,7 @@ PORTNAME= sbws PORTVERSION= 0.8.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,12 +13,14 @@ COMMENT= Tor network bandwidth scanner LICENSE= CC0-1.0 LICENSE_FILE= ${WRKSRC}/LICENSE.md -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}stem>=1.7.0:security/py-stem@${PY_FLAVOR} \ + # pysocks: indirect dependency via requests[socks] +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pysocks>=1.6.8:net/py-pysocks@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}stem>=1.7.0:security/py-stem@${PY_FLAVOR} \ tor:security/tor -USES= cpe python:3.5+ shebangfix +USES= cpe python:3.4+ shebangfix USE_GITHUB= yes -USE_PYTHON= autoplist distutils flavors +USE_PYTHON= autoplist distutils concurrent flavors CPE_VENDOR= torproject GH_ACCOUNT= torproject