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

name                py-acme
github.setup        certbot certbot 5.2.1 v
github.tarball_from archive
revision            0

categories-append   security
license             Apache-2
maintainers         {mps @Schamschula} openmaintainer
description         ACME protocol implementation in Python.
long_description    {*}${description}
homepage            https://certbot.eff.org/

distname            acme-${version}

supported_archs     noarch
platforms           {darwin any}

checksums           rmd160  d3e013d6b5ccf498d2903f88cffe0f0ef27da197 \
                    sha256  0e2e5ab5043f447563d81c47599351610a847474a6fc6d5a1f2ad44a3d18fd98 \
                    size    2329137

python.versions     310 311 312 313

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

    depends_lib-append  \
                    port:py${python.version}-cryptography \
                    port:py${python.version}-josepy \
                    port:py${python.version}-openssl \
                    port:py${python.version}-requests \
                    port:py${python.version}-pyrfc3339 \
                    port:py${python.version}-tz

    configure.dir   ${worksrcpath}/acme
    build.dir       ${configure.dir}
    
    variant docs description {Build man pages} {
        depends_lib-append \
            port:py${python.version}-repoze.sphinx.autointerface \
            port:py${python.version}-sphinx \
            port:py${python.version}-sphinx_rtd_theme

        post-build {
            set env(doc_path) ${worksrcpath}/acme/docs
            set env(python_branch) ${python.branch}
            exec sh -c {cd $doc_path && sphinx-build-$python_branch -N -b man . _build/man} >@stdout
        }

        post-destroot {
            xinstall -d ${destroot}${prefix}/share/man/man1
            xinstall -m 640 ${configure.dir}/docs/_build/man/acme-python.1 \
                ${destroot}${prefix}/share/man/man1/
            xinstall -m 640 ${configure.dir}/docs/_build/man/jws.1 \
                ${destroot}${prefix}/share/man/man1/
        }
    }
}
