Files
packages/lang/python/python-asgiref/Makefile
Alexandru Ardelean 5a7fbc8303 python-asgiref: bump to 3.11.1
Changelog: https://github.com/django/asgiref/blob/main/CHANGELOG.txt

Multiple minor/patch releases since 3.7.2 with bug fixes and
Python 3.13+ compatibility improvements. Resets PKG_RELEASE to 1.
Add test.sh to verify async_to_sync and sync_to_async adapters.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-04-09 08:00:48 +03:00

37 lines
1013 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=python-asgiref
PKG_VERSION:=3.11.1
PKG_RELEASE:=1
PYPI_NAME:=asgiref
PKG_HASH:=5f184dc43b7e763efe848065441eac62229c9f7b0475f41f80e207a114eda4ce
PKG_BUILD_DEPENDS:=python-setuptools/host
PKG_MAINTAINER:=Peter Stadler <peter.stadler@student.uibk.ac.at>
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-asgiref
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=ASGI specs, helper code, and adapters
URL:=https://github.com/django/asgiref/
DEPENDS:=+python3-light +python3-logging +python3-asyncio
endef
define Package/python3-asgiref/description
ASGI is a standard for Python asynchronous web apps and servers to communicate
with each other, and positioned as an asynchronous successor to WSGI.
endef
$(eval $(call Py3Package,python3-asgiref))
$(eval $(call BuildPackage,python3-asgiref))
$(eval $(call BuildPackage,python3-asgiref-src))