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

name                py-virtualenv
version             20.15.1
revision            0

categories-append   devel
supported_archs     noarch
license             MIT
maintainers         {reneeotten @reneeotten} {larryv @larryv} openmaintainer

description         Virtual Python Environment builder
long_description    virtualenv is a tool to create isolated Python \
                    environments.

homepage            https://virtualenv.pypa.io

checksums           rmd160  22ae6412f07079cc66ab083e63b234da203e99da \
                    sha256  288171134a2ff3bfb1a2f54f119e77cd1b81c29fc1265a2356f3e8d14c7d58c4 \
                    size    13523736

# keep older Python versions here, do add the EOL version to the list below
python.versions     27 34 35 36 37 38 39 310

if {${name} ne ${subport}} {
    # add EOL warnings
    if {${python.version} in "27 34 35 36"} {
        PortGroup   deprecated 1.0

        deprecated.eol_version  yes
    }

    depends_build-append    port:py${python.version}-setuptools_scm

    depends_lib-append      port:py${python.version}-backports.entry-points-selectable \
                            port:py${python.version}-distlib \
                            port:py${python.version}-filelock \
                            port:py${python.version}-platformdirs \
                            port:py${python.version}-setuptools \
                            port:py${python.version}-six

    if {${python.version} == 27} {
        depends_lib-append  port:py${python.version}-contextlib2 \
                            port:py${python.version}-pathlib2
    }

    if {${python.version} < 37} {
        depends_lib-append  port:py${python.version}-importlib-resources
    }

    if {${python.version} < 38} {
        depends_lib-append  port:py${python.version}-importlib-metadata
    }

    if {${python.version} == 34} {
        version     20.6.0
        revision    0
        checksums   rmd160  e5a870dc14efbc5b5d9d021d55b6f123c978967c \
                    sha256  51df5d8a2fad5d1b13e088ff38a433475768ff61f202356bb9812c454c20ae45 \
                    size    8700762

        depends_lib-replace \
                    port:py${python.version}-platformdirs \
                    port:py${python.version}-appdirs

        depends_lib-delete \
                    port:py${python.version}-backports.entry-points-selectable
    }

    depends_run-append  port:virtualenv_select

    select.group        virtualenv
    select.file         virtualenv${python.version}

    post-destroot {
        set docdir ${prefix}/share/doc/${subport}
        xinstall -d ${destroot}${docdir}/docs/changelog
        xinstall -m 0644 -W ${worksrcpath} README.md LICENSE \
            ${destroot}${docdir}
        xinstall -m 0644 {*}[glob -directory ${worksrcpath}/docs *.rst] \
                ${destroot}${docdir}/docs
        xinstall -m 0644 {*}[glob -directory ${worksrcpath}/docs/changelog *] \
                ${destroot}${docdir}/docs/changelog
    }

    notes-append "
    The executable is installed as\
    '${prefix}/bin/virtualenv-${python.branch}'. To symlink it to\
    '${prefix}/bin/virtualenv', run:

        sudo port select --set ${select.group} ${select.file}
    "

    livecheck.type  none
}
