Autobahn|Python is a subproject of Autobahn and provides open-source implementations of the WebSocket Protocol and the Web Application Messaging Protocol (WAMP) for Python 2 and 3, and running on Twisted and asyncio. You can use Autobahn|Python to create clients and servers in Python speaking just plain WebSocket or WAMP. WebSocket allows bidirectional real-time messaging on the Web and beyond, while WAMP adds real-time application communication on top of WebSocket. WAMP provides asynchronous Remote Procedure Calls and Publish & Subscribe for applications in one protocol running over WebSocket. WAMP is a routed protocol, so you need a WAMP Router to connect your Autobahn|Python based clients. We provide Crossbar.io, but there are other options as well. needed by buildbot 0.9. A python3 flavor might be added later on.. ok sthen@
27 lines
515 B
Makefile
27 lines
515 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/12/17 18:03:21 landry Exp $
|
|
|
|
COMMENT = WebSocket client & server library, WAMP real-time framework
|
|
|
|
MODPY_EGG_VERSION = 17.10.1
|
|
DISTNAME = autobahn-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = https://github.com/crossbario/autobahn-python
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODPY_PI = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
BUILD_DEPENDS = devel/py-txaio
|
|
TEST_DEPENDS = devel/py-unittest2 \
|
|
devel/py-trollius
|
|
|
|
.include <bsd.port.mk>
|