1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00
freebsd-ports/devel/py-rq/Makefile
Steven Kreuzer 1b66a0ceb4 Update to version 1.3.0
* Support for infinite job timeout.
  * Added __main__ file so you can now do python -m rq.cli.
  * Fixes an issue that may cause zombie processes.
  * job_id is now passed to logger during failed jobs.
  * queue.enqueue_at() and queue.enqueue_in() now supports explicit args and
    kwargs function invocation.
2020-03-10 15:40:48 +00:00

24 lines
546 B
Makefile

# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= rq
PORTVERSION= 1.3.0
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:databases/py-redis@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}click>=5.0:devel/py-click@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>