package/python-aiohttp: add missing python-typing-extensions dependency
authorMarcin Niestroj <m.niestroj@grinn-global.com>
Wed, 23 Dec 2020 16:12:24 +0000 (17:12 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Tue, 29 Dec 2020 08:29:35 +0000 (09:29 +0100)
typing_extensions package is needed starting from aiohttp v3.7.1.

While at it sort all dependencies alphabetically.

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/python-aiohttp/Config.in

index d75c44022560cd440ea388e4cdeab95a4604ea68..9ffea088e4838609dc410f037b8da164ba188c31 100644 (file)
@@ -1,13 +1,14 @@
 config BR2_PACKAGE_PYTHON_AIOHTTP
        bool "python-aiohttp"
        depends on BR2_PACKAGE_PYTHON3
+       select BR2_PACKAGE_PYTHON_AIODNS # runtime
+       select BR2_PACKAGE_PYTHON_ASYNC_TIMEOUT # runtime
        select BR2_PACKAGE_PYTHON_ATTRS # runtime
        select BR2_PACKAGE_PYTHON_CCHARDET if BR2_INSTALL_LIBSTDCPP # runtime
        select BR2_PACKAGE_PYTHON_CHARDET if !BR2_INSTALL_LIBSTDCPP # runtime
        select BR2_PACKAGE_PYTHON_MULTIDICT # runtime
-       select BR2_PACKAGE_PYTHON_ASYNC_TIMEOUT # runtime
+       select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
        select BR2_PACKAGE_PYTHON_YARL # runtime
-       select BR2_PACKAGE_PYTHON_AIODNS # runtime
        select BR2_PACKAGE_PYTHON3_ZLIB # runtime
        help
          Async http client/server framework (asyncio).