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
983 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=asgiref
  3. PKG_VERSION:=3.3.1
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=asgiref
  6. PKG_HASH:=7162a3cb30ab0609f1a4c95938fd73e8604f63bdba516a7f7d64b83ff09478f0
  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))