# -*- 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

set _name           hpack
set _n              [string index ${_name} 0]

name                py-${_name}
version             3.0.0
categories-append   net
platforms           darwin
supported_archs     noarch
license             MIT

maintainers         {gmail.com:yan12125 @yan12125} {petr @petrrr} openmaintainer

description         Pure-Python HPACK header compression
long_description    \
    This module contains a pure-Python HTTP/2 header encoding (HPACK) \
    logic for use in Python programs that implement HTTP/2. It also \
    contains a compatibility layer that automatically enables the use \
    of nghttp2 if it is available.

homepage            https://pypi.python.org/pypi/${_name}/${version}

distname            ${_name}-${version}
master_sites        pypi:${_n}/${_name}/

checksums           md5     556b0ae66180f54c2ce8029a0952088b \
                    rmd160  3aa077f29a21fb1cd06a3fccd7b05709591f57f9 \
                    sha256  8eec9c1f4bfae3408a3f30500261f7e6a65912dc138526ea054f9ad98892e9d2

python.versions     27 34 35 36

if {${name} ne ${subport}} {
    depends_build-append    port:py${python.version}-setuptools

    livecheck.type  none
} else {
    livecheck.type  regex
    livecheck.url   https://pypi.python.org/pypi/${_name}/json
    livecheck.regex "\"${_name}-(\[.\\d\]+)\\${extract.suffix}\""
}