diff -r 71d475111bd9 -r b5e3d6ae3271 www/Makefile --- a/www/Makefile Sun Jun 22 02:35:18 2014 +0200 +++ b/www/Makefile Sun Jun 22 17:56:13 2014 +0200 @@ -1528,6 +1528,7 @@ SUBDIR += py-django-pipeline12 SUBDIR += py-django-piston SUBDIR += py-django-profiles + SUBDIR += py-django-redis SUBDIR += py-django-registration SUBDIR += py-django-registration-defaults SUBDIR += py-django-reversion diff -r 71d475111bd9 -r b5e3d6ae3271 www/py-django-redis/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www/py-django-redis/Makefile Sun Jun 22 17:56:13 2014 +0200 @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= django-redis +PORTVERSION= 3.6.2 +CATEGORIES= www databases +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= melvyn@magemana.nl +COMMENT= Full featured Redis cache/session backend for Django. + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:${PORTSDIR}/www/py-django \ + ${PYTHON_PKGNAMEPREFIX}redis>=2.9.0:${PORTSDIR}/databases/py-redis + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include diff -r 71d475111bd9 -r b5e3d6ae3271 www/py-django-redis/distinfo --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www/py-django-redis/distinfo Sun Jun 22 17:56:13 2014 +0200 @@ -0,0 +1,2 @@ +SHA256 (django-redis-3.6.2.tar.gz) = 98174cde8abaa2552308eebf6b89ac45d6d174efb004418185dcba858d18feee +SIZE (django-redis-3.6.2.tar.gz) = 12246 diff -r 71d475111bd9 -r b5e3d6ae3271 www/py-django-redis/pkg-descr --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/www/py-django-redis/pkg-descr Sun Jun 22 17:56:13 2014 +0200 @@ -0,0 +1,17 @@ +Django-redis is a BSD Licensed, full featured Redis cache/session backend for Django. + +Why use django-redis? + +- In active development. +- Modular client system (pluggable clients). +- Master-Slave support in the default client. +- Complete battery of tests. +- 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. + +WWW: http://niwibe.github.io/django-redis/ --- add-3.6.2.patch ends here ---