65b2c79b2f
Flower is a web based tool for monitoring and administrating Celery clusters. Features * Real-time monitoring using Celery Events - Task progress and history - Ability to show task details (arguments, start time, runtime, and more) - Graphs and statistics * Remote Control - View worker status and statistics - Shutdown and restart worker instances - Control worker pool size and autoscale settings - View and modify the queues a worker instance consumes from - View currently running tasks - View scheduled tasks (ETA/countdown) - View reserved and revoked tasks - Apply time and rate limits - Configuration viewer - Revoke or terminate tasks * Broker monitoring - View statistics for all Celery queues - Queue length graphs * HTTP API * Basic Auth and Google OpenID authentication
31 lines
974 B
Makefile
31 lines
974 B
Makefile
# $NetBSD: Makefile,v 1.1 2018/10/08 14:48:46 adam Exp $
|
|
|
|
DISTNAME= flower-0.9.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=f/flower/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/mher/flower
|
|
COMMENT= Real-time monitor and web admin for Celery task queue
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-babel>=1.0:../../devel/py-babel
|
|
DEPENDS+= ${PYPKGPREFIX}-celery>=3.1.0:../../net/py-celery
|
|
DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
|
|
DEPENDS+= ${PYPKGPREFIX}-tornado>=4.2.0:../../www/py-tornado
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${_PYTHON_VERSION} == 27
|
|
DEPENDS+= ${PYPKGPREFIX}-futures-[0-9]*:../../devel/py-futures
|
|
.endif
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} flower flower-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|