# -*- 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 16.3.0 categories-append devel platforms darwin license MIT maintainers {larryv @larryv} supported_archs noarch description Virtual Python Environment builder long_description virtualenv is a tool to create isolated Python \ environments. homepage https://virtualenv.pypa.io master_sites pypi:v/${python.rootname} distname ${python.rootname}-${version} checksums rmd160 a8f9ef0dee86d22ab58ef03d6d6e0f0f84057973 \ sha256 729f0bcab430e4ef137646805b5b1d8efbb43fe53d4a0f33328624a84a5121f7 \ size 2014631 python.versions 27 34 35 36 37 if {${name} ne ${subport}} { depends_lib-append port:py${python.version}-setuptools depends_test-append port:py${python.version}-pytest \ port:py${python.version}-mock test.run no test.cmd py.test-${python.branch} test.target test.env PYTHONPATH=${worksrcpath}/build/lib depends_run-append port:virtualenv_select select.group virtualenv select.file virtualenv${python.version} post-destroot { set docdir ${prefix}/share/doc/${subport} xinstall -m 0755 -d ${destroot}${docdir}/docs/changelog xinstall -m 0644 -W ${worksrcpath} README.rst LICENSE.txt AUTHORS.txt \ ${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 " 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 }