Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Oct 2015 15:11:37 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398436 - in head/devel: . py-rq
Message-ID:  <201510021511.t92FBbYE048469@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Fri Oct  2 15:11:36 2015
New Revision: 398436
URL: https://svnweb.freebsd.org/changeset/ports/398436

Log:
  RQ (Redis Queue) is a simple Python library for queueing jobs and processing
  them in the background with workers. It is backed by Redis and it is designed
  to have a low barrier to entry. It can be integrated in your web stack easily.
  
  WWW: http://python-rq.org

Added:
  head/devel/py-rq/
  head/devel/py-rq/Makefile   (contents, props changed)
  head/devel/py-rq/distinfo   (contents, props changed)
  head/devel/py-rq/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Oct  2 15:04:38 2015	(r398435)
+++ head/devel/Makefile	Fri Oct  2 15:11:36 2015	(r398436)
@@ -4237,6 +4237,7 @@
     SUBDIR += py-rope
     SUBDIR += py-rose
     SUBDIR += py-roxlib
+    SUBDIR += py-rq
     SUBDIR += py-rtree
     SUBDIR += py-ruledispatch
     SUBDIR += py-sanetime

Added: head/devel/py-rq/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-rq/Makefile	Fri Oct  2 15:11:36 2015	(r398436)
@@ -0,0 +1,21 @@
+# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	rq
+PORTVERSION=	0.5.5
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	skreuzer@FreeBSD.org
+COMMENT=	Simple library for creating background jobs, and processing them
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}redis>=2.7:${PORTSDIR}/databases/py-redis \
+		${PYTHON_PKGNAMEPREFIX}click>=4.1:${PORTSDIR}/devel/py-click
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-rq/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-rq/distinfo	Fri Oct  2 15:11:36 2015	(r398436)
@@ -0,0 +1,2 @@
+SHA256 (rq-0.5.5.tar.gz) = c6cf848a722a99ab2d3be9dbcf69cb9bedbec05930ca96cc2b844fc51f9cfb4c
+SIZE (rq-0.5.5.tar.gz) = 46171

Added: head/devel/py-rq/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-rq/pkg-descr	Fri Oct  2 15:11:36 2015	(r398436)
@@ -0,0 +1,5 @@
+RQ (Redis Queue) is a simple Python library for queueing jobs and processing
+them in the background with workers. It is backed by Redis and it is designed
+to have a low barrier to entry. It can be integrated in your web stack easily.
+
+WWW: http://python-rq.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201510021511.t92FBbYE048469>