3.3.4: Fixed a bug where rereading the configuration would not detect changes to eventlisteners. Fixed a bug where the warning Supervisord is running as root and it is searching for its config file may have been incorrectly shown by supervisorctl if its executable name was changed. Fixed a bug in the web interface where redirect URLs did not have a slash between the host and query string, which caused issues when proxying with Nginx. When supervisord successfully drops privileges during startup, it is now logged at the INFO level instead of CRIT. The HTTP server now returns a Content-Type header specifying UTF-8 encoding. This may fix display issues in some browsers.
29 lines
914 B
Makefile
29 lines
914 B
Makefile
# $NetBSD: Makefile,v 1.4 2018/02/26 09:11:47 adam Exp $
|
|
|
|
DISTNAME= supervisor-3.3.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=s/supervisor/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://supervisord.org/
|
|
COMMENT= System for controlling process state under UNIX
|
|
LICENSE= original-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-meld3>=0.6.5:../../www/py-meld3
|
|
# TEST_DEPENDS
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
|
|
# as of 3.3.1, explicitly only supports 2.x
|
|
PYTHON_VERSIONS_ACCEPTED= 27
|
|
|
|
REPLACE_PYTHON+= supervisor/scripts/*.py
|
|
SUBST_CLASSES+= python
|
|
SUBST_SED.python+= -e "s,<<PYTHON>>,${PYTHONBIN},"
|
|
SUBST_FILES.python+= supervisor/tests/fixtures/*.py
|
|
SUBST_MESSAGE.python= Fixing path to python.
|
|
SUBST_STAGE.python= pre-build
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|