2016-07-01 12:06:19 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# python-socketio
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2019-10-18 20:26:14 +02:00
|
|
|
PYTHON_SOCKETIO_VERSION = 4.3.1
|
|
|
|
PYTHON_SOCKETIO_SITE = https://files.pythonhosted.org/packages/36/87/e9128a4da04df991fbdb01f44dc4d6dd8f6c03bfd4d1f42dcd6779fd975a
|
2016-07-01 12:06:19 +02:00
|
|
|
PYTHON_SOCKETIO_SETUP_TYPE = setuptools
|
|
|
|
PYTHON_SOCKETIO_LICENSE = MIT
|
|
|
|
PYTHON_SOCKETIO_LICENSE_FILES = LICENSE
|
|
|
|
|
package/python-socketio: drop asgi/asyncio files for python 2.x to fix pycompile issue
socketio has conditional logic to load asgi/asyncio files when running under
Python 3.x:
if sys.version_info >= (3, 5): # pragma: no cover
from .asyncio_client import AsyncClient
from .asyncio_server import AsyncServer
from .asyncio_manager import AsyncManager
from .asyncio_namespace import AsyncNamespace, AsyncClientNamespace
from .asyncio_redis_manager import AsyncRedisManager
from .asyncio_aiopika_manager import AsyncAioPikaManager
from .asgi import ASGIApp
else: # pragma: no cover
AsyncClient = None
AsyncServer = None
AsyncManager = None
AsyncNamespace = None
AsyncRedisManager = None
AsyncAioPikaManager = None
pycompile unfortunately errors out on these files when running under Python
2.x:
../scripts/pycompile.py ..
error: File "/usr/lib/python2.7/site-packages/socketio/asyncio_server.py", line 84
async def emit(self, event, data=None, to=None, room=None, skip_sid=None,
^
SyntaxError: invalid syntax
As a workaround, simply drop the unusable file from TARGET_DIR if building
for python 2.x.
Fixes:
http://autobuild.buildroot.net/results/455f3e09a590f7a6724ab8cd1b86bdf2bba8071a/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-10-04 23:49:01 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
|
|
# only needed/valid for python 3.x
|
|
|
|
define PYTHON_SOCKETIO_RM_PY3_FILES
|
|
|
|
rm -f $(TARGET_DIR)/usr/lib/python*/site-packages/socketio/asgi.py \
|
|
|
|
$(TARGET_DIR)/usr/lib/python*/site-packages/socketio/asyncio_*.py
|
|
|
|
endef
|
|
|
|
|
|
|
|
PYTHON_SOCKETIO_POST_INSTALL_TARGET_HOOKS += PYTHON_SOCKETIO_RM_PY3_FILES
|
|
|
|
endif
|
|
|
|
|
2016-07-01 12:06:19 +02:00
|
|
|
$(eval $(python-package))
|