blob: bb433812bbb30367972de82768e5b6efbce1b99f [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2023 Jeffery To
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-aiosignal
11PKG_VERSION:=1.3.1
12PKG_RELEASE:=1
13
14PYPI_NAME:=aiosignal
15PKG_HASH:=54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc
16
17PKG_LICENSE:=Apache-2.0
18PKG_LICENSE_FILES:=LICENSE
19PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20
21include ../pypi.mk
22include $(INCLUDE_DIR)/package.mk
23include ../python3-package.mk
24
25define Package/python3-aiosignal
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 TITLE:=List of registered asynchronous callbacks
30 URL:=https://github.com/aio-libs/aiosignal
31 DEPENDS:=+python3-light +python3-frozenlist
32endef
33
34define Package/python3-aiosignal/description
35A project to manage callbacks in asyncio projects.
36endef
37
38$(eval $(call Py3Package,python3-aiosignal))
39$(eval $(call BuildPackage,python3-aiosignal))
40$(eval $(call BuildPackage,python3-aiosignal-src))