1PORTNAME= redis 2PORTVERSION= 5.0.1 3CATEGORIES= databases python 4MASTER_SITES= PYPI 5PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} 6 7MAINTAINER= ports@MidnightBSD.org 8COMMENT= Python client for Redis key-value store 9WWW= https://github.com/redis/redis-py 10 11LICENSE= mit 12LICENSE_FILE= ${WRKSRC}/LICENSE 13 14USES= python 15USE_PYTHON= autoplist concurrent distutils pytest 16 17NO_ARCH= yes 18NO_TEST= yes 19 20CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}redis[0-9] 21 22OPTIONS_DEFINE= HIREDIS 23HIREDIS_DESC= High performance response parser 24 25HIREDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hiredis>=1.0.0:databases/py-hiredis@${PY_FLAVOR} 26 27.include <bsd.port.pre.mk> 28 29.if ${PYTHON_REL} <= 31102 30RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}async_timeout>=4.0.2:devel/py-async_timeout@${PY_FLAVOR} 31.endif 32 33.include <bsd.port.post.mk> 34