mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
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. This port serves as a transition for consumers of devel/py-rq which are not yet ready for py-rq 2.0.0. PR: 282649 Approved by: skreuzer (maintainer)
29 lines
780 B
Makefile
29 lines
780 B
Makefile
PORTNAME= rq
|
|
PORTVERSION= 1.16.2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= 1
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Simple library for creating background jobs, and processing them
|
|
WWW= https://python-rq.org
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=5.0.0:devel/py-click@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}redis>=4.0.0:databases/py-redis@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent pep517
|
|
|
|
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}-rq
|
|
|
|
NO_ARCH= yes
|
|
|
|
PORTSCOUT= limit:^1.*
|
|
|
|
.include <bsd.port.mk>
|