git: fba5049cd2d1 - main - www/py-dj51-channels-redis: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Wed, 31 Dec 2025 11:06:36 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=fba5049cd2d15a9f24e43d4503fa40279fd38699

commit fba5049cd2d15a9f24e43d4503fa40279fd38699
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-12-31 11:06:28 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-12-31 11:06:28 +0000

    www/py-dj51-channels-redis: Remove expired port
    
    2025-12-31 www/py-dj51-channels-redis: Extended support of Django 5.1 ends December 2025, upgrade to the Django 5.2+ version of this port. See https://www.djangoproject.com/download/
---
 MOVED                                |  1 +
 www/Makefile                         |  1 -
 www/py-dj51-channels-redis/Makefile  | 28 ----------------------------
 www/py-dj51-channels-redis/distinfo  |  3 ---
 www/py-dj51-channels-redis/pkg-descr | 12 ------------
 5 files changed, 1 insertion(+), 44 deletions(-)

diff --git a/MOVED b/MOVED
index 8867de88f5f1..907b8edb4f0e 100644
--- a/MOVED
+++ b/MOVED
@@ -4916,3 +4916,4 @@ www/py-dj51-django-taggit||2025-12-31|Has expired: Extended support of Django 5.
 www/py-dj51-django-filter||2025-12-31|Has expired: Extended support of Django 5.1 ends December 2025, upgrade to the Django 5.2+ version of this port. See https://www.djangoproject.com/download/
 www/py-dj51-django-celery-results||2025-12-31|Has expired: Extended support of Django 5.1 ends December 2025, upgrade to the Django 5.2+ version of this port. See https://www.djangoproject.com/download/
 www/py-dj51-django-extensions||2025-12-31|Has expired: Extended support of Django 5.1 ends December 2025, upgrade to the Django 5.2+ version of this port. See https://www.djangoproject.com/download/
+www/py-dj51-channels-redis||2025-12-31|Has expired: Extended support of Django 5.1 ends December 2025, upgrade to the Django 5.2+ version of this port. See https://www.djangoproject.com/download/
diff --git a/www/Makefile b/www/Makefile
index 5ddf8a9c486e..9894c6d0ad63 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1544,7 +1544,6 @@
     SUBDIR += py-ddgs
     SUBDIR += py-dj-database-url
     SUBDIR += py-dj51-channels
-    SUBDIR += py-dj51-channels-redis
     SUBDIR += py-dj51-django-allauth
     SUBDIR += py-dj51-django-auditlog
     SUBDIR += py-dj51-django-auth-ldap
diff --git a/www/py-dj51-channels-redis/Makefile b/www/py-dj51-channels-redis/Makefile
deleted file mode 100644
index f4e5b2f5bb80..000000000000
--- a/www/py-dj51-channels-redis/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-PORTNAME=	channels-redis
-PORTVERSION=	4.3.0
-CATEGORIES=	www python
-MASTER_SITES=	PYPI
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}dj51-
-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=	Extended support of Django 5.1 ends December 2025, upgrade to the Django 5.2+ version of this port. See https://www.djangoproject.com/download/
-EXPIRATION_DATE=2025-12-31
-
-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}dj51-channels>=4:www/py-dj51-channels@${PY_FLAVOR}
-
-USES=		python
-USE_PYTHON=	autoplist distutils
-
-NO_ARCH=	yes
-
-.include <bsd.port.mk>
diff --git a/www/py-dj51-channels-redis/distinfo b/www/py-dj51-channels-redis/distinfo
deleted file mode 100644
index 28730dadc6da..000000000000
--- a/www/py-dj51-channels-redis/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1753980067
-SHA256 (channels_redis-4.3.0.tar.gz) = 740ee7b54f0e28cf2264a940a24453d3f00526a96931f911fcb69228ef245dd2
-SIZE (channels_redis-4.3.0.tar.gz) = 31440
diff --git a/www/py-dj51-channels-redis/pkg-descr b/www/py-dj51-channels-redis/pkg-descr
deleted file mode 100644
index 8cd2d32f3a39..000000000000
--- a/www/py-dj51-channels-redis/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-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.