diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-06-01 23:48:56 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-06-02 00:23:09 +0800 |
commit | dbd60c098b7f4528d40aa67d139f039269d0756d (patch) | |
tree | 733865ec9b32c2b24da87634e186b4f759c8ee4c /databases/py-redis5/Makefile | |
parent | sysutils/screen49: Remove expired port (diff) |
databases/py-redis5: Add py-redis5 5.3.0 (copied from py-redis)
- Update WWW
- Add PORTSCOUT
Diffstat (limited to 'databases/py-redis5/Makefile')
-rw-r--r-- | databases/py-redis5/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/databases/py-redis5/Makefile b/databases/py-redis5/Makefile new file mode 100644 index 000000000000..88256b039057 --- /dev/null +++ b/databases/py-redis5/Makefile @@ -0,0 +1,43 @@ +PORTNAME= redis +PORTVERSION= 5.3.0 +CATEGORIES= databases python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= 5 + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python client for Redis key-value store +WWW= https://redis.readthedocs.io/en/latest/ \ + https://github.com/redis/redis-py + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyjwt>=2.9.0:www/py-pyjwt@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \ + redis-server:databases/redis + +USES= python +USE_PYTHON= autoplist concurrent pep517 pytest + +NO_ARCH= yes + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}redis \ + ${PYTHON_PKGNAMEPREFIX}redis[0-9] + +PORTSCOUT= limit:^5\. + +OPTIONS_DEFINE= HIREDIS +HIREDIS_DESC= High performance response parser + +HIREDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hiredis>=3.0.0:databases/py-hiredis@${PY_FLAVOR} + +.include <bsd.port.pre.mk> + +.if ${PYTHON_REL} < 31103 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}async_timeout>=4.0.3:devel/py-async_timeout@${PY_FLAVOR} +.endif + +.include <bsd.port.post.mk> |