MFH: r518596

net/py-wsproto: Fix runtime dependencies and Python version restriction

* Update the RUN_DEPENDS and limit the port to Python 3.6 or newer as the
  support for Python 2.7 and 3.5 was dropped with the 0.15.0 release.

  Python 3.6 needs also the devel/py-dataclasses package as an additional
  dependency to work properly.

* Add a "do-test" target while I'm here to make future QA easier.

* Bump PORTREVISION for package change.

PR:		242025 (related)
Approved by:	portmgr blanket (runtime fix)

Approved by:	ports-secteam bugfix blanket
This commit is contained in:
Kai Knoblich 2019-11-28 18:01:19 +00:00
parent 8ec1201f7b
commit 08f521843d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2019Q4/; revision=518597
1 changed files with 14 additions and 4 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= wsproto
PORTVERSION= 0.15.0
PORTREVISION= 1
CATEGORIES= net python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,12 +13,21 @@ COMMENT= Sans-IO WebSocket protocol implementation
LICENSE= MIT
RUN_DEPENDS= ${PY_ENUM34} \
${PYTHON_PKGNAMEPREFIX}h11>=0.8.1:net/py-h11@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}h11>=0.8.1:net/py-h11@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
USES= python
USES= python:3.6+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} < 3700
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dataclasses>0:devel/py-dataclasses@${PY_FLAVOR}
.endif
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs
.include <bsd.port.post.mk>