5dc5e1a9cc
opcua-asyncio is an asyncio-based asynchronous OPC UA client based on python-opcua, removing hacks for support of python < 3.6. Asynchronous programming allows for simpler code (e.g. less need for locks) and potentially performance gains. More information is available at : https://github.com/FreeOpcUa/opcua-asyncio. Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
567 B
Makefile
15 lines
567 B
Makefile
################################################################################
|
|
#
|
|
# python-opcua-asyncio
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_OPCUA_ASYNCIO_VERSION = 0.8.4
|
|
PYTHON_OPCUA_ASYNCIO_SOURCE = opcua-asyncio-$(PYTHON_OPCUA_ASYNCIO_VERSION).tar.gz
|
|
PYTHON_OPCUA_ASYNCIO_SITE = $(call github,FreeOpcUa,opcua-asyncio,$(PYTHON_OPCUA_ASYNCIO_VERSION))
|
|
PYTHON_OPCUA_ASYNCIO_SETUP_TYPE = setuptools
|
|
PYTHON_OPCUA_ASYNCIO_LICENSE = LGPL-3.0+
|
|
PYTHON_OPCUA_ASYNCIO_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(python-package))
|