Add python-idna-ssl package

This commit is contained in:
Calin Crisan 2019-01-23 22:02:47 +02:00
parent 343db44072
commit e01e10a81b
4 changed files with 23 additions and 0 deletions

View File

@ -831,6 +831,7 @@ menu "External python modules"
source "package/python-ibmiotf/Config.in"
source "package/python-id3/Config.in"
source "package/python-idna/Config.in"
source "package/python-idna-ssl/Config.in"
source "package/python-incremental/Config.in"
source "package/python-influxdb/Config.in"
source "package/python-iniparse/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_IDNA_SSL
bool "python-idna-ssl"
help
Patch ssl.match_hostname for Unicode(idna) domains support.
https://github.com/aio-libs/idna-ssl

View File

@ -0,0 +1,2 @@
sha256 a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c idna-ssl-1.1.0.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-idna-ssl
#
################################################################################
PYTHON_IDNA_SSL_VERSION = 1.1.0
PYTHON_IDNA_SSL_SOURCE = idna-ssl-$(PYTHON_IDNA_VERSION).tar.gz
PYTHON_IDNA_SSL_SITE = https://files.pythonhosted.org/packages/46/03/07c4894aae38b0de52b52586b24bf189bb83e4ddabfe2e2c8f2419eec6f4
PYTHON_IDNA_SSL_LICENSE = BSD-3-Clause
PYTHON_IDNA_SSL_LICENSE_FILES = LICENSE.rst
PYTHON_IDNA_SSL_SETUP_TYPE = setuptools
$(eval $(python-package))