pkgsrc/www/py-gunicorn/Makefile
adam 6e5a313b92 py-gunicorn: updated to 19.9.0
19.9.0:
* fix: address a regression that prevented syslog support from working
* fix: correctly set REMOTE_ADDR on versions of Python 3 affected by
  Python Issue 30205 <https://bugs.python.org/issue30205>_
* fix: show zero response length correctly in access log
* fix: prevent raising :exc:AttributeError when --reload is not passed
  in case of a :exc:SyntaxError raised from the WSGI application.
* The internal module gunicorn.workers.async was renamed to gunicorn.workers.base_async
  since async is now a reserved word in Python 3.7.
2018-07-04 03:43:12 +00:00

24 lines
682 B
Makefile

# $NetBSD: Makefile,v 1.14 2018/07/04 03:43:12 adam Exp $
DISTNAME= gunicorn-19.9.0
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=g/gunicorn/}
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
MAINTAINER= gls@NetBSD.org
HOMEPAGE= http://gunicorn.org/
COMMENT= Python WSGI HTTP server
LICENSE= mit
TEST_DEPENDS+= ${PYPKGPREFIX}-test>=3.0.5:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=2.4.0:../../devel/py-test-cov
USE_LANGUAGES= # none
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} gunicorn gunicorn-${PYVERSSUFFIX} && \
${MV} gunicorn_paster gunicorn_paster-${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"