Socket.IO is a transport protocol that enables real-time bidirectional event-based communication between clients (typically, though not always, web browsers) and a server. The official implementations of the client and server components are written in JavaScript. This package provides Python implementations of both, each with standard and asyncio variants.
29 lines
553 B
Makefile
29 lines
553 B
Makefile
COMMENT= client/server implementation of Socket.IO
|
|
|
|
# py-ripe.atlas.cousteau 1.5.0 needs <5.0
|
|
MODPY_EGG_VERSION= 4.6.1
|
|
DISTNAME= python-socketio-${MODPY_EGG_VERSION}
|
|
PKGNAME= ${DISTNAME:S/python-/py-/}
|
|
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= https://python-socketio.readthedocs.io/en/latest/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
MODPY_PI= Yes
|
|
NO_TEST= Yes
|
|
|
|
RUN_DEPENDS= devel/py-six${MODPY_FLAVOR} \
|
|
net/py-engineio${MODPY_FLAVOR}<4 \
|
|
sysutils/py-find${MODPY_FLAVOR}
|
|
|
|
FLAVORS= python3
|
|
FLAVOR= python3
|
|
|
|
.include <bsd.port.mk>
|