From owner-svn-ports-all@FreeBSD.ORG Fri Jun 27 09:13:29 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49535BC2; Fri, 27 Jun 2014 09:13:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35A922567; Fri, 27 Jun 2014 09:13:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5R9DTB6063804; Fri, 27 Jun 2014 09:13:29 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5R9DS49063799; Fri, 27 Jun 2014 09:13:28 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201406270913.s5R9DS49063799@svn.freebsd.org> From: Kubilay Kocak Date: Fri, 27 Jun 2014 09:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359482 - in head/www: . py-django-redis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2014 09:13:29 -0000 Author: koobs Date: Fri Jun 27 09:13:28 2014 New Revision: 359482 URL: http://svnweb.freebsd.org/changeset/ports/359482 QAT: https://qat.redports.org/buildarchive/r359482/ Log: [NEW] www/py-django-redis: Full featured Redis cache/session backend for Django 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. WWW: http://niwibe.github.io/django-redis PR: 191281 Submitted by: melvyn at magemana dot nl (with minor changes) Added: head/www/py-django-redis/ head/www/py-django-redis/Makefile (contents, props changed) head/www/py-django-redis/distinfo (contents, props changed) head/www/py-django-redis/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 27 09:07:56 2014 (r359481) +++ head/www/Makefile Fri Jun 27 09:13:28 2014 (r359482) @@ -1522,6 +1522,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 Added: head/www/py-django-redis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-redis/Makefile Fri Jun 27 09:13:28 2014 (r359482) @@ -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_PKGNAMEPREFIX}django>=1.3:${PORTSDIR}/www/py-django \ + ${PYTHON_PKGNAMEPREFIX}redis>=2.9.0:${PORTSDIR}/databases/py-redis + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/py-django-redis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-redis/distinfo Fri Jun 27 09:13:28 2014 (r359482) @@ -0,0 +1,2 @@ +SHA256 (django-redis-3.6.2.tar.gz) = 98174cde8abaa2552308eebf6b89ac45d6d174efb004418185dcba858d18feee +SIZE (django-redis-3.6.2.tar.gz) = 12246 Added: head/www/py-django-redis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-redis/pkg-descr Fri Jun 27 09:13:28 2014 (r359482) @@ -0,0 +1,17 @@ +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. + +WWW: http://niwibe.github.io/django-redis