0.57.0 - wsdump: Fix --headers option - Fix getting 400 bad request with long proxy authorization string - Fix for errors that occur when closing websocket from another thread - avoid calling repr(data) if tracing is not enabled - Fixed typo - Create dummy `ssl` object - Show compressed text messages in wsdump.py - Resolve issue opening socket to intranet on Windows 10 with no proxy settings but behind proxy - Expose http connection header to user - Improve the readability of HTTP status codes. - fix the compatible issue with gevent+dnspython - v should be checked for emptry string before splitting it - _handshake: hasattr checks on six before accessing the values
24 lines
648 B
Makefile
24 lines
648 B
Makefile
# $NetBSD: Makefile,v 1.11 2020/01/08 21:05:56 adam Exp $
|
|
|
|
DISTNAME= websocket_client-0.57.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
|
|
CATEGORIES= www python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=w/websocket-client/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/websocket-client/websocket-client
|
|
COMMENT= WebSocket client module
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} wsdump.py wsdump-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|