Commit e9382fb3 authored by Rene Ladan's avatar Rene Ladan
Browse files

www/py-dj52-channels-redis: Remove expired port

2026-06-30 www/py-dj52-channels-redis: Obsolete, please use www/py-channels-redis instead
parent 59456e3b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5392,3 +5392,4 @@ www/py-dj52-laces|www/py-laces|2026-06-30|Has expired: Obsolete, please use www/
www/py-dj52-django-otp|www/py-django-otp|2026-06-30|Has expired: Obsolete, please use www/py-django-otp instead
www/py-dj52-django-storages|www/py-django-storages|2026-06-30|Has expired: Obsolete, please use www/py-django-storages instead
www/py-dj52-django-redis|www/py-django-redis|2026-06-30|Has expired: Obsolete, please use www/py-django-redis instead
www/py-dj52-channels-redis|www/py-channels-redis|2026-06-30|Has expired: Obsolete, please use www/py-channels-redis instead
+0 −1
Original line number Diff line number Diff line
@@ -1565,7 +1565,6 @@
    SUBDIR += py-dj42-djangorestframework
    SUBDIR += py-dj42-djangosaml2
    SUBDIR += py-dj52-channels
    SUBDIR += py-dj52-channels-redis
    SUBDIR += py-dj52-django-allauth
    SUBDIR += py-dj52-django-auditlog
    SUBDIR += py-dj52-django-auth-ldap
+0 −28
Original line number Diff line number Diff line
PORTNAME=	channels-redis
PORTVERSION=	4.3.0
CATEGORIES=	www python
MASTER_SITES=	PYPI
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}dj52-
DISTNAME=	${PORTNAME:S/-/_/}-${PORTVERSION}

MAINTAINER=	grembo@FreeBSD.org
COMMENT=	Redis-backed asgi channel layer implementation
WWW=		http://github.com/django/channels_redis/

LICENSE=	BSD3CLAUSE
LICENSE_FILE=	${WRKSRC}/LICENSE

DEPRECATED=	Obsolete, please use www/py-channels-redis instead
EXPIRATION_DATE=2026-06-30

RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}redis>=5.0.1:databases/py-redis@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}msgpack>=1:devel/py-msgpack@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}asgiref>=3.7.2:www/py-asgiref@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}dj52-channels>=4:www/py-dj52-channels@${PY_FLAVOR}

USES=		python
USE_PYTHON=	autoplist distutils

NO_ARCH=	yes

.include <bsd.port.mk>
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1753980067
SHA256 (channels_redis-4.3.0.tar.gz) = 740ee7b54f0e28cf2264a940a24453d3f00526a96931f911fcb69228ef245dd2
SIZE (channels_redis-4.3.0.tar.gz) = 31440
+0 −12
Original line number Diff line number Diff line
Provides Django Channels channel layers that use Redis as a backing store.

There are two available implementations:

RedisChannelLayer is the original layer, and implements channel and group
handling itself.

RedisPubSubChannelLayer is newer and leverages Redis Pub/Sub for message
dispatch.  This layer is currently at Beta status, meaning it may be subject
to breaking changes whilst it matures.

Both layers support a single-server and sharded configurations.