Files
operating-system/buildroot/package/python-engineio/python-engineio.mk
Stefan Agner 98ac18cbd5 Update buildroot to 2021.02.3 (#1422)
Signed-off-by: Stefan Agner <stefan@agner.ch>
(cherry picked from commit 9c8172df40)
2021-06-21 10:17:45 +02:00

25 lines
876 B
Makefile

################################################################################
#
# python-engineio
#
################################################################################
PYTHON_ENGINEIO_VERSION = 3.12.1
PYTHON_ENGINEIO_SITE = https://files.pythonhosted.org/packages/71/5d/620b75396ce993001cbccc80dd786ab09a16a8e3f6c4878ad05f051064d6
PYTHON_ENGINEIO_SETUP_TYPE = setuptools
PYTHON_ENGINEIO_LICENSE = MIT
PYTHON_ENGINEIO_LICENSE_FILES = LICENSE
PYTHON_ENGINEIO_CPE_ID_VENDOR = python-engineio_project
ifeq ($(BR2_PACKAGE_PYTHON),y)
# only needed/valid for python 3.x
define PYTHON_ENGINEIO_RM_PY3_FILES
rm -rf $(TARGET_DIR)/usr/lib/python*/site-packages/engineio/async_drivers \
$(TARGET_DIR)/usr/lib/python*/site-packages/engineio/asyncio_*.py
endef
PYTHON_ENGINEIO_POST_INSTALL_TARGET_HOOKS += PYTHON_ENGINEIO_RM_PY3_FILES
endif
$(eval $(python-package))