diff options
author | egypcio <egypcio@FreeBSD.org> | 2018-10-24 13:10:44 +0800 |
---|---|---|
committer | egypcio <egypcio@FreeBSD.org> | 2018-10-24 13:10:44 +0800 |
commit | c913f127ee099d5d986694c593b9dcd6a4bf3cfd (patch) | |
tree | 659d739788ebb51f0a5f6323d9ac959f06557537 /net | |
parent | 435d392bcdf17de22762dd13aedb9d34a9151b14 (diff) | |
download | freebsd-ports-gnome-c913f127ee099d5d986694c593b9dcd6a4bf3cfd.tar.gz freebsd-ports-gnome-c913f127ee099d5d986694c593b9dcd6a4bf3cfd.tar.zst freebsd-ports-gnome-c913f127ee099d5d986694c593b9dcd6a4bf3cfd.zip |
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
Diffstat (limited to 'net')
-rw-r--r-- | net/py-sbws/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/py-sbws/Makefile b/net/py-sbws/Makefile index cb8bc55449b5..eaf07ae0cd7d 100644 --- a/net/py-sbws/Makefile +++ b/net/py-sbws/Makefile @@ -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 |