You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.5 KiB

  1. #
  2. # Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-greenlet
  9. PKG_VERSION:=1.1.2
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PYPI_NAME:=greenlet
  12. PKG_HASH:=e30f5ea4ae2346e62cedde8794a56858a67b878dd79f7df76a0767e356b1744a
  13. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
  14. PKG_LICENSE:=MIT
  15. PKG_LICENSE_FILES:=LICENSE
  16. # FIXME: remove when GCC10 is the oldest supported compiler, or the issue goes away
  17. PKG_USE_MIPS16:=0
  18. include ../pypi.mk
  19. include $(INCLUDE_DIR)/package.mk
  20. include ../python3-package.mk
  21. define Package/python3-greenlet
  22. SUBMENU:=Python
  23. SECTION:=lang
  24. CATEGORY:=Languages
  25. TITLE:=Lightweight coroutines for in-process concurrent programming
  26. URL:=https://github.com/python-greenlet/greenlet
  27. DEPENDS:= \
  28. +python3-light \
  29. +libstdcpp \
  30. @!arc
  31. endef
  32. define Package/python3-greenlet/description
  33. The greenlet package is a spin-off of Stackless
  34. a version of CPython that supports micro-threads called tasklets.
  35. endef
  36. # FIXME: remove when GCC10 is the oldest supported compiler, or the issue goes away
  37. # This is required in addition to PKG_USE_MIPS16:=0 because otherwise MIPS16
  38. # flags are inherited from the Python base package (via sysconfig module)
  39. ifdef CONFIG_USE_MIPS16
  40. TARGET_CFLAGS += -mno-mips16 -mno-interlink-mips16
  41. endif
  42. $(eval $(call Py3Package,python3-greenlet))
  43. $(eval $(call BuildPackage,python3-greenlet))
  44. $(eval $(call BuildPackage,python3-greenlet-src))