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.

34 lines
996 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=asgiref
  3. PKG_VERSION:=3.4.1
  4. PKG_RELEASE:=$(AUTORELEASE)
  5. PYPI_NAME:=asgiref
  6. PKG_HASH:=4ef1ab46b484e3c706329cedeff284a5d40824200638503f5768edb6de7d58e9
  7. PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
  8. PKG_LICENSE:=BSD-3-Clause
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. define Package/python3-asgiref
  14. SUBMENU:=Python
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. TITLE:=Standard for Python asynchronous web apps and servers.
  18. URL:=https://asgi.readthedocs.io/en/latest/
  19. DEPENDS:=+python3-light +python3-logging +python3-asyncio
  20. endef
  21. define Package/python3-asgiref/description
  22. ASGI is a standard for Python asynchronous web apps and servers to communicate
  23. with each other, and positioned as an asynchronous successor to WSGI.
  24. endef
  25. $(eval $(call Py3Package,python3-asgiref))
  26. $(eval $(call BuildPackage,python3-asgiref))
  27. $(eval $(call BuildPackage,python3-asgiref-src))