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.

50 lines
1.2 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-eventlet
  9. PKG_VERSION:=0.30.2
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=eventlet
  12. PKG_HASH:=1811b122d9a45eb5bafba092d36911bca825f835cb648a862bbf984030acff9d
  13. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
  14. PKG_LICENSE:=MIT
  15. PKG_LICENSE_FILES:=LICENSE
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python3-package.mk
  19. define Package/python3-eventlet
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Python concurrent networking library
  24. URL:=https://eventlet.net/
  25. DEPENDS:= \
  26. +python3-light \
  27. +python3-six \
  28. +python3-dns \
  29. +python3-greenlet \
  30. +python3-distutils \
  31. +python3-email \
  32. +python3-logging \
  33. +python3-openssl \
  34. +python3-urllib
  35. endef
  36. define Package/python3-eventlet/description
  37. Eventlet is a concurrent networking library for Python that
  38. allows you to change how you run your code, not how you write it.
  39. endef
  40. $(eval $(call Py3Package,python3-eventlet))
  41. $(eval $(call BuildPackage,python3-eventlet))
  42. $(eval $(call BuildPackage,python3-eventlet-src))