pkgsrc/sysutils/py-supervisor/Makefile
adam 5e0fd5fdbe py-supervisor: updated to 3.3.5
3.3.5:
Fixed a race condition where supervisord would cancel a shutdown already in progress if it received SIGHUP. Now, supervisord will ignore SIGHUP if shutdown is already in progress.
Fixed a bug where searching for a relative command ignored changes to PATH made in environment=.
childutils.ProcessCommunicationsProtocol now does an explit flush() after writing to stdout.
A more descriptive error message is now emitted if a name in the config file contains a disallowed character.
2019-01-08 09:42:26 +00:00

29 lines
899 B
Makefile

# $NetBSD: Makefile,v 1.5 2019/01/08 09:42:26 adam Exp $
DISTNAME= supervisor-3.3.5
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+= ${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"