You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
101 lines
3.5 KiB
Tcl
101 lines
3.5 KiB
Tcl
# -*- 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 21.2.0
|
|
revision 1
|
|
|
|
categories-append devel
|
|
platforms {darwin any}
|
|
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 e42f2f86895f7a9294503cb6912188c2d1454d76 \
|
|
sha256 1720dc3a62ef5b443092e3f499228599045d7fea4c79199770499df8becf9098 \
|
|
size 5840618
|
|
|
|
# keep Python version 2.7 here, other EOL Python versions can be removed
|
|
# See <https://trac.macports.org/wiki/Python#VersionPolicy>
|
|
python.versions 27 310 311 312 313 314
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_lib port:py${python.version}-distlib \
|
|
port:py${python.version}-filelock \
|
|
port:py${python.version}-platformdirs \
|
|
port:py${python.version}-python-discovery
|
|
|
|
if {${python.version} < 311} {
|
|
depends_lib-append \
|
|
port:py${python.version}-typing_extensions
|
|
}
|
|
|
|
if {${python.version} == 27} {
|
|
PortGroup deprecated 1.0
|
|
deprecated.eol_version yes
|
|
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools_scm
|
|
|
|
depends_lib-delete \
|
|
port:py${python.version}-typing_extensions \
|
|
port:py${python.version}-python-discovery
|
|
|
|
depends_lib-append \
|
|
port:py${python.version}-importlib-resources \
|
|
port:py${python.version}-importlib-metadata \
|
|
port:py${python.version}-contextlib2 \
|
|
port:py${python.version}-pathlib2 \
|
|
port:py${python.version}-six
|
|
|
|
version 20.15.1
|
|
revision 0
|
|
checksums rmd160 22ae6412f07079cc66ab083e63b234da203e99da \
|
|
sha256 288171134a2ff3bfb1a2f54f119e77cd1b81c29fc1265a2356f3e8d14c7d58c4 \
|
|
size 13523736
|
|
|
|
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
|
|
}
|
|
|
|
} else {
|
|
# latest upstream version
|
|
python.pep517 yes
|
|
python.pep517_backend hatch
|
|
|
|
depends_build-append \
|
|
port:py${python.version}-hatch-vcs
|
|
}
|
|
|
|
depends_run-append port:virtualenv_select
|
|
|
|
select.group virtualenv
|
|
select.file virtualenv${python.version}
|
|
|
|
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
|
|
}
|