pkgsrc/www/py-waitress/Makefile
adam fecec4839e py-waitress: update to 1.1.0
1.1.0:

Features
* Waitress now has a __main__ and thus may be called with python -mwaitress

Bugfixes
* Waitress no longer allows lowercase HTTP verbs. This change was made to fall in line with most HTTP servers.
* When receiving non-ascii bytes in the request URL, waitress will no longer abruptly close the connection, instead returning a 400 Bad Request.
2017-10-16 12:07:24 +00:00

23 lines
677 B
Makefile

# $NetBSD: Makefile,v 1.4 2017/10/16 12:07:24 adam Exp $
DISTNAME= waitress-1.1.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=w/waitress/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/Pylons/waitress
COMMENT= Production-quality pure-Python WSGI server
LICENSE= zpl-2.1
BUILD_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage
BUILD_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
USE_LANGUAGES= # none
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} waitress-serve waitress-serve${PYVERSSUFFIX} || ${TRUE}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"