fecec4839e
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.
23 lines
677 B
Makefile
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"
|