Commit 59456e3b authored by Rene Ladan's avatar Rene Ladan
Browse files

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

2026-06-30 www/py-dj52-django-redis: Obsolete, please use www/py-django-redis instead
parent 2fa6358c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5391,3 +5391,4 @@ www/py-dj52-django-htmx|www/py-django-htmx|2026-06-30|Has expired: Obsolete, ple
www/py-dj52-laces|www/py-laces|2026-06-30|Has expired: Obsolete, please use www/py-laces instead
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
+0 −1
Original line number Diff line number Diff line
@@ -1582,7 +1582,6 @@
    SUBDIR += py-dj52-django-netfields
    SUBDIR += py-dj52-django-permissionedforms
    SUBDIR += py-dj52-django-prometheus
    SUBDIR += py-dj52-django-redis
    SUBDIR += py-dj52-django-stubs-ext
    SUBDIR += py-dj52-django-tables2
    SUBDIR += py-dj52-django-taggit

www/py-dj52-django-redis/Makefile

deleted100644 → 0
+0 −40
Original line number Diff line number Diff line
PORTNAME=	django-redis
PORTVERSION=	6.0.0
CATEGORIES=	www databases python
MASTER_SITES=	PYPI
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}dj52-
DISTNAME=	django_redis-${PORTVERSION}

MAINTAINER=	sunpoet@FreeBSD.org
COMMENT=	Full featured redis cache backend for Django
WWW=		https://github.com/jazzband/django-redis

LICENSE=	BSD3CLAUSE
LICENSE_FILE=	${WRKSRC}/LICENSE

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

BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django52>=4.2:www/py-django52@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}redis>=4.0.2:databases/py-redis@${PY_FLAVOR}
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msgpack>=0:devel/py-msgpack@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}pytest-django>=0:devel/py-pytest-django@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}pytest-mock>=0:devel/py-pytest-mock@${PY_FLAVOR} \
		redis-server:databases/redis

USES=		python
USE_PYTHON=	autoplist concurrent pep517 pytest

# Required for Python 3.11+ as the cgi module is deprecated and slated for removal in Python 3.13
TEST_ARGS=	-W ignore::DeprecationWarning
TEST_ENV=	DJANGO_SETTINGS_MODULE=settings.sqlite \
		PYTHONPATH=${STAGEDIR}${PYTHON_SITELIBDIR}
TEST_WRKSRC=	${WRKSRC}/tests

NO_ARCH=	yes

CONFLICTS_INSTALL=	${PYTHON_PKGNAMEPREFIX}*django-redis

.include <bsd.port.mk>

www/py-dj52-django-redis/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1751208160
SHA256 (django_redis-6.0.0.tar.gz) = 2d9cb12a20424a4c4dde082c6122f486628bae2d9c2bee4c0126a4de7fda00dd
SIZE (django_redis-6.0.0.tar.gz) = 56904
+0 −15
Original line number Diff line number Diff line
Django-redis is a BSD Licensed, full featured Redis cache/session
backend for Django.

Why use django-redis?

 * Modular client system (pluggable clients).
 * Master-Slave support in the default client.
 * Used in production in several projects as cache and session storage.
 * Supports infinite timeouts.
 * Python 3 support in same code base.
 * Facilities for raw access to Redis client/connection pool.
 * Highly configurable (can emulate memcached exception behavior, for
   example).
 * Unix sockets supported by default.
 * Pluggable parsers.