Date: Sun, 22 Nov 2015 23:30:35 +0000 (UTC) From: Rene Ladan <rene@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402247 - in head/devel: . py-django-rq Message-ID: <201511222330.tAMNUZxH027160@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rene Date: Sun Nov 22 23:30:35 2015 New Revision: 402247 URL: https://svnweb.freebsd.org/changeset/ports/402247 Log: Django integration with RQ, a Redis based Python queuing library. Django-RQ is a simple app that allows you to configure your queues in django's settings.py and easily use them in your project. WWW: https://github.com/ui/django-rq/ Added: head/devel/py-django-rq/ head/devel/py-django-rq/Makefile (contents, props changed) head/devel/py-django-rq/distinfo (contents, props changed) head/devel/py-django-rq/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 22 22:16:36 2015 (r402246) +++ head/devel/Makefile Sun Nov 22 23:30:35 2015 (r402247) @@ -3986,6 +3986,7 @@ SUBDIR += py-dirspec SUBDIR += py-distorm SUBDIR += py-distutils-extra + SUBDIR += py-django-rq SUBDIR += py-django-tastypie-mongoengine SUBDIR += py-django16-tastypie-mongoengine SUBDIR += py-docopt Added: head/devel/py-django-rq/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-django-rq/Makefile Sun Nov 22 23:30:35 2015 (r402247) @@ -0,0 +1,26 @@ +# Created by: René Ladan <rene@freebsd.org> +# $FreeBSD$ + +PORTNAME= django-rq +PORTVERSION= 0.8.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rene@freebsd.org +COMMENT= Provides Django integration for RQ (Redis Queue) + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=0:${PORTSDIR}/www/py-django \ + ${PYTHON_PKGNAMEPREFIX}rq>=0.5:${PORTSDIR}/devel/py-rq + +USE_GITHUB= yes +GH_ACCOUNT= ui + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/py-django-rq/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-django-rq/distinfo Sun Nov 22 23:30:35 2015 (r402247) @@ -0,0 +1,2 @@ +SHA256 (ui-django-rq-v0.8.0_GH0.tar.gz) = ebca61efeb81b3d2659dc27e994f46198bb196597b36d4cf4dcbc92d2318c3c4 +SIZE (ui-django-rq-v0.8.0_GH0.tar.gz) = 20346 Added: head/devel/py-django-rq/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-django-rq/pkg-descr Sun Nov 22 23:30:35 2015 (r402247) @@ -0,0 +1,5 @@ +Django integration with RQ, a Redis based Python queuing library. +Django-RQ is a simple app that allows you to configure your queues in +django's settings.py and easily use them in your project. + +WWW: https://github.com/ui/django-rq/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511222330.tAMNUZxH027160>