# -*- 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        pypa pipx 1.7.1
revision            1
checksums           rmd160  ca10741d99a51760aa7f18bdf7cb5e2fe4e4767c \
                    sha256  28354a7085e0e0e4e2ef0930f8fb77eeb2e0851d00f089bb382d63e0be77c97f \
                    size    391902

categories          python sysutils
license             MIT
maintainers         {@mndavidoff alluvialsw.com:md14-macports} openmaintainer
supported_archs     noarch
platforms           {darwin any}

description         Execute binaries from Python packages in isolated environments
long_description    ${description}

github.tarball_from archive
github.livecheck.regex  {([\d.]+)}

if {
    ![variant_isset python39] &&
    ![variant_isset python310] &&
    ![variant_isset python311] &&
    ![variant_isset python312] &&
    ![variant_isset python313]
} {
    default_variants +python313
}

variant python39 conflicts python310 python311 python312 python313 description {Use Python 3.9} {}
variant python310 conflicts python39 python311 python312 python313 description {Use Python 3.10} {}
variant python311 conflicts python39 python310 python312 python313 description {Use Python 3.11} {}
variant python312 conflicts python39 python310 python311 python313 description {Use Python 3.12} {}
variant python313 conflicts python39 python310 python311 python312 description {Use Python 3.13} {}

if {[variant_isset python313]} {
    python.default_version 313
} elseif {[variant_isset python312]} {
    python.default_version 312
} elseif {[variant_isset python311]} {
    python.default_version 311
} elseif {[variant_isset python310]} {
    python.default_version 310
} elseif {[variant_isset python39]} {
    python.default_version 39
}

python.pep517       yes
python.pep517_backend hatch

build.env-append    SETUPTOOLS_SCM_PRETEND_VERSION=${version}

depends_build-append \
                    port:py${python.version}-hatch-vcs \
                    port:py${python.version}-wheel

depends_lib-append  port:py${python.version}-argcomplete \
                    port:py${python.version}-packaging \
                    port:py${python.version}-pip \
                    port:py${python.version}-platformdirs \
                    port:py${python.version}-userpath

if {${python.version} < 311} {
    depends_run-append \
                    port:py${python.version}-tomli
}
