b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | include $(TOPDIR)/rules.mk |
| 2 | |
| 3 | PKG_NAME:=python-asgiref |
| 4 | PKG_VERSION:=3.7.2 |
| 5 | PKG_RELEASE:=1 |
| 6 | |
| 7 | PYPI_NAME:=asgiref |
| 8 | PKG_HASH:=9e0ce3aa93a819ba5b45120216b23878cf6e8525eb3848653452b4192b92afed |
| 9 | |
| 10 | PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at> |
| 11 | PKG_LICENSE:=BSD-3-Clause |
| 12 | PKG_LICENSE_FILES:=LICENSE |
| 13 | |
| 14 | include ../pypi.mk |
| 15 | include $(INCLUDE_DIR)/package.mk |
| 16 | include ../python3-package.mk |
| 17 | |
| 18 | define Package/python3-asgiref |
| 19 | SUBMENU:=Python |
| 20 | SECTION:=lang |
| 21 | CATEGORY:=Languages |
| 22 | TITLE:=ASGI specs, helper code, and adapters |
| 23 | URL:=https://github.com/django/asgiref/ |
| 24 | DEPENDS:=+python3-light +python3-logging +python3-asyncio |
| 25 | endef |
| 26 | |
| 27 | define Package/python3-asgiref/description |
| 28 | ASGI is a standard for Python asynchronous web apps and servers to communicate |
| 29 | with each other, and positioned as an asynchronous successor to WSGI. |
| 30 | endef |
| 31 | |
| 32 | $(eval $(call Py3Package,python3-asgiref)) |
| 33 | $(eval $(call BuildPackage,python3-asgiref)) |
| 34 | $(eval $(call BuildPackage,python3-asgiref-src)) |