fwknop: init script improvements
[feed/packages.git] / lang / python / python-aiohttp / Makefile
1 #
2 # Copyright (C) 2019-2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=aiohttp
11 PKG_VERSION:=3.6.1
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=$(PKG_NAME)
15 PKG_HASH:=fc55b1fec0e4cc1134ffb09ea3970783ee2906dc5dfd7cd16917913f2cfed65b
16
17 PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
18 PKG_LICENSE:=Apache-2.0
19 PKG_LICENSE_FILES:=LICENSE
20 PKG_CPE_ID:=cpe:/a:aio-libs_project:aiohttp
21
22 include ../pypi.mk
23 include $(INCLUDE_DIR)/package.mk
24 include ../python3-package.mk
25
26 define Package/python3-aiohttp
27 SECTION:=lang
28 CATEGORY:=Languages
29 SUBMENU:=Python
30 TITLE:=Async http client/server framework (asyncio)
31 URL:=https://github.com/aio-libs/aiohttp
32 DEPENDS:= \
33 +python3-light \
34 +python3-attrs \
35 +python3-chardet \
36 +python3-multidict \
37 +python3-async-timeout \
38 +python3-yarl \
39 +python3-logging \
40 +python3-codecs \
41 +python3-cgi \
42 +python3-openssl
43 VARIANT:=python3
44 endef
45
46 define Package/python3-aiohttp/description
47 Asynchronous HTTP client/server framework for asyncio and Python3.
48 endef
49
50 $(eval $(call Py3Package,python3-aiohttp))
51 $(eval $(call BuildPackage,python3-aiohttp))
52 $(eval $(call BuildPackage,python3-aiohttp-src))