From owner-svn-ports-head@freebsd.org Fri Oct 2 15:11:38 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C661A0D175; Fri, 2 Oct 2015 15:11:38 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org (repo.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 5078E1B8B; Fri, 2 Oct 2015 15:11:38 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t92FBcAm048474; Fri, 2 Oct 2015 15:11:38 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t92FBbYE048469; Fri, 2 Oct 2015 15:11:37 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201510021511.t92FBbYE048469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Fri, 2 Oct 2015 15:11:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398436 - in head/devel: . py-rq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 15:11:38 -0000 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 +# $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 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