# -*- 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
PortGroup           github 1.0


github.setup        mitmproxy mitmproxy 3.0.4 v

name                py-${github.project}

categories-append   net www
platforms           darwin
supported_archs     noarch
license             {GPL-3+ OpenSSLException}
maintainers         {gmail.com:yan12125 @yan12125} petr openmaintainer

description         SSL-capable man-in-the-middle proxy for HTTP
long_description    \
    mitmproxy is an SSL-capable man-in-the-middle proxy for HTTP. It provides \
    a console interface that allows traffic flows to be inspected and edited \
    on the fly. mitmdump is the command-line version of mitmproxy, with the \
    same functionality but without the user interface. Think tcpdump for HTTP.

homepage            http://mitmproxy.org/

checksums           md5     68f0f26d94d91a55ac97167f1b1cbdd3 \
                    rmd160  8d80373b525fe6e3e23484945c7cdcd53a6b1f15 \
                    sha256  9d13eb829024957c74cb262b06d9a2ecfa3bbc53383812166ba77a0b3eb2c6a1 \
                    size    27147580

python.versions     36

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

    depends_lib-append      port:py${python.version}-asn1 \
                            port:py${python.version}-blinker \
                            port:py${python.version}-brotlipy \
                            port:py${python.version}-click \
                            port:py${python.version}-certifi \
                            port:py${python.version}-cryptography \
                            port:py${python.version}-h11 \
                            port:py${python.version}-h2 \
                            port:py${python.version}-hyperframe \
                            port:py${python.version}-kaitaistruct \
                            port:py${python.version}-ldap3 \
                            port:py${python.version}-openssl \
                            port:py${python.version}-parsing \
                            port:py${python.version}-passlib \
                            port:py${python.version}-pyperclip \
                            port:py${python.version}-requests \
                            port:py${python.version}-ruamel-yaml \
                            port:py${python.version}-sortedcontainers \
                            port:py${python.version}-tornado \
                            port:py${python.version}-urwid \
                            port:py${python.version}-wsproto

    # Testing dependencies
    depends_build-append    port:py${python.version}-pytest \
                            port:py${python.version}-beautifulsoup4 \
                            port:py${python.version}-flask \
                            port:py${python.version}-tz

    post-patch {
        # Remove all upper bounds - potential breakings are detected by test
        reinplace "s/, *<\[0-9=.\]*//" ${worksrcpath}/setup.py
    }

    test.run yes
    test.cmd py.test-${python.branch}

    livecheck.type  none
} else {
    livecheck.type  pypi
}