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

Collapse All | Expand All

(-)b/www/Makefile (+1 lines)
Lines 1528-1533 Link Here
1528
    SUBDIR += py-django-pipeline12
1528
    SUBDIR += py-django-pipeline12
1529
    SUBDIR += py-django-piston
1529
    SUBDIR += py-django-piston
1530
    SUBDIR += py-django-profiles
1530
    SUBDIR += py-django-profiles
1531
    SUBDIR += py-django-redis
1531
    SUBDIR += py-django-registration
1532
    SUBDIR += py-django-registration
1532
    SUBDIR += py-django-registration-defaults
1533
    SUBDIR += py-django-registration-defaults
1533
    SUBDIR += py-django-reversion
1534
    SUBDIR += py-django-reversion
(-)b/www/py-django-redis/Makefile (+21 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	django-redis
4
PORTVERSION=	3.6.2
5
CATEGORIES=	www databases
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	melvyn@magemana.nl
10
COMMENT=	Full featured Redis cache/session backend for Django
11
12
LICENSE=	BSD3CLAUSE
13
14
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django>=1.3:${PORTSDIR}/www/py-django \
15
		${PYTHON_PKGNAMEPREFIX}redis>=2.9.0:${PORTSDIR}/databases/py-redis
16
17
USE_PYTHON=		yes
18
USE_PYDISTUTILS=	yes
19
PYDISTUTILS_AUTOPLIST=	yes
20
21
.include <bsd.port.mk>
(-)b/www/py-django-redis/distinfo (+2 lines)
Added Link Here
1
SHA256 (django-redis-3.6.2.tar.gz) = 98174cde8abaa2552308eebf6b89ac45d6d174efb004418185dcba858d18feee
2
SIZE (django-redis-3.6.2.tar.gz) = 12246
(-)b/www/py-django-redis/pkg-descr (+17 lines)
Added 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: http://niwibe.github.io/django-redis/

Return to bug 191281