diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2018-03-17 18:44:12 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2018-03-17 18:44:12 +0800 |
commit | ed26505d66703e2a0474f184cb2d0afe3d8351ec (patch) | |
tree | e73da4bb498e936b74a31e195640dc37ae0296b8 /dns | |
parent | b0801697786cea0570a07050179b5b1c450e154d (diff) | |
download | freebsd-ports-gnome-ed26505d66703e2a0474f184cb2d0afe3d8351ec.tar.gz freebsd-ports-gnome-ed26505d66703e2a0474f184cb2d0afe3d8351ec.tar.zst freebsd-ports-gnome-ed26505d66703e2a0474f184cb2d0afe3d8351ec.zip |
Add py-idna_ssl 1.0.1
idna-ssl patches ssl.match_hostname for Unicode(idna) domains support.
WWW: https://pypi.python.org/pypi/idna_ssl
WWW: https://github.com/aio-libs/idna-ssl
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/py-idna_ssl/Makefile | 27 | ||||
-rw-r--r-- | dns/py-idna_ssl/distinfo | 3 | ||||
-rw-r--r-- | dns/py-idna_ssl/pkg-descr | 4 |
4 files changed, 35 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index cd19fce20482..2383fd3c5dbc 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -181,6 +181,7 @@ SUBDIR += py-dnspython SUBDIR += py-easyzone SUBDIR += py-idna + SUBDIR += py-idna_ssl SUBDIR += py-idnkit2 SUBDIR += py-ldns SUBDIR += py-namebench diff --git a/dns/py-idna_ssl/Makefile b/dns/py-idna_ssl/Makefile new file mode 100644 index 000000000000..5e867d453783 --- /dev/null +++ b/dns/py-idna_ssl/Makefile @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= idna_ssl +PORTVERSION= 1.0.1 +CATEGORIES= dns python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= idna-ssl-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Patch ssl.match_hostname for Unicode(idna) domains support + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}idna>=2.0:dns/py-idna@${FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=2.3:www/py-aiohttp@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>=0:devel/py-pytest-asyncio@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python:3.3-3.6 + +.include <bsd.port.mk> diff --git a/dns/py-idna_ssl/distinfo b/dns/py-idna_ssl/distinfo new file mode 100644 index 000000000000..d441258dad52 --- /dev/null +++ b/dns/py-idna_ssl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1521280682 +SHA256 (idna-ssl-1.0.1.tar.gz) = 1293f030bc608e9aa9cdee72aa93c1521bbb9c7698068c61c9ada6772162b979 +SIZE (idna-ssl-1.0.1.tar.gz) = 3385 diff --git a/dns/py-idna_ssl/pkg-descr b/dns/py-idna_ssl/pkg-descr new file mode 100644 index 000000000000..f96b06db745f --- /dev/null +++ b/dns/py-idna_ssl/pkg-descr @@ -0,0 +1,4 @@ +idna-ssl patches ssl.match_hostname for Unicode(idna) domains support. + +WWW: https://pypi.python.org/pypi/idna_ssl +WWW: https://github.com/aio-libs/idna-ssl |