From ba14bd6509cb7c64bbe79349199d5c5aed6a2123 Mon Sep 17 00:00:00 2001 From: Miguel Herranz Date: Mon, 11 Jun 2018 19:24:46 +0200 Subject: [PATCH] py-idna-ssl: new port, version 1.0.1 --- python/py-idna-ssl/Portfile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 python/py-idna-ssl/Portfile diff --git a/python/py-idna-ssl/Portfile b/python/py-idna-ssl/Portfile new file mode 100644 index 0000000000000..e15c694cde749 --- /dev/null +++ b/python/py-idna-ssl/Portfile @@ -0,0 +1,35 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 + +PortSystem 1.0 +PortGroup python 1.0 + +name py-idna-ssl +version 1.0.1 +categories-append devel +platforms darwin +license MIT + +python.versions 34 35 36 + +maintainers {ipglider.org:miguel @ipglider} openmaintainer + +description Monkey patch py-idna to make it work with SSL. +long_description py-idna does not work as expected when used with SSL under \ + some versions of Python. py-idna-ssl allows to monkey \ + patch py-idna to solve this issue. + +homepage https://github.com/aio-libs/idna-ssl/ +master_sites pypi:i/idna-ssl + +distname idna-ssl-${version} + +checksums rmd160 8b2d95d0a09cc4066414c3d62adf36c8d81e6087 \ + sha256 1293f030bc608e9aa9cdee72aa93c1521bbb9c7698068c61c9ada6772162b979 \ + size 3385 + +if {${name} ne ${subport}} { + depends_build port:py${python.version}-setuptools + depends_lib port:py${python.version}-idna +} else { + livecheck.type pypi +}