View | Details | Raw Unified | Return to bug 239179 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+31 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	django-redis
4
PORTVERSION=	4.10.0
5
PORTREVISION=	1
6
CATEGORIES=	www databases
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	sunpoet@FreeBSD.org
11
COMMENT=	Full featured Redis cache/session backend for Django
12
13
LICENSE=	BSD3CLAUSE
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django22>=2.2:www/py-django22@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}redis>=2.10.0:databases/py-redis@${PY_FLAVOR}
18
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}fakeredis>=0:databases/py-fakeredis@${PY_FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}hiredis>=0:databases/py-hiredis@${PY_FLAVOR} \
20
		${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \
21
		${PYTHON_PKGNAMEPREFIX}msgpack>=0:devel/py-msgpack@${PY_FLAVOR}
22
23
USES=		python
24
USE_PYTHON=	autoplist concurrent distutils
25
26
NO_ARCH=	yes
27
28
do-test:
29
	@cd ${WRKSRC}/tests && ${PYTHON_CMD} runtests.py
30
31
.include <bsd.port.mk>
(-)distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1547928909
2
SHA256 (django-redis-4.10.0.tar.gz) = af0b393864e91228dd30d8c85b5c44d670b5524cb161b7f9e41acc98b6e5ace7
3
SIZE (django-redis-4.10.0.tar.gz) = 59208
(-)pkg-descr (+17 lines)
Line 0 Link Here
1
Django-redis is a BSD Licensed, full featured Redis cache/session
2
backend for Django.
3
4
Why use django-redis?
5
6
 * Modular client system (pluggable clients).
7
 * Master-Slave support in the default client.
8
 * Used in production in several projects as cache and session storage.
9
 * Supports infinite timeouts.
10
 * Python 3 support in same code base.
11
 * Facilities for raw access to Redis client/connection pool.
12
 * Highly configurable (can emulate memcached exception behavior, for
13
   example).
14
 * Unix sockets supported by default.
15
 * Pluggable parsers.
16
17
WWW: https://github.com/niwinz/django-redis

Return to bug 239179