You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
fc88ff9132
- add py-packaging dependency Closes: https://trac.macports.org/ticket/61100
44 lines
1.6 KiB
Tcl
44 lines
1.6 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 github 1.0
|
|
|
|
github.setup pipxproject pipx 0.15.5.1
|
|
categories python sysutils
|
|
license MIT
|
|
maintainers {lbschenkel @lbschenkel} openmaintainer
|
|
supported_archs noarch
|
|
platforms darwin
|
|
|
|
description Execute binaries from Python packages in isolated environments
|
|
long_description ${description}
|
|
|
|
checksums rmd160 c786be7c7375055d69d89cbdb7e36672917bf00c \
|
|
sha256 8163804cbcd4f09b400e8c6f0d4ba85d368573bc8eb65535d90b9988959842a2 \
|
|
size 357524
|
|
|
|
github.livecheck.regex {([\d.]+)}
|
|
|
|
if {![variant_isset python36] && ![variant_isset python37] && ![variant_isset python38]} {
|
|
default_variants +python38
|
|
}
|
|
|
|
variant python36 conflicts python37 python38 description {Use Python 3.6} {}
|
|
variant python37 conflicts python36 python38 description {Use Python 3.7} {}
|
|
variant python38 conflicts python36 python37 description {Use Python 3.8} {}
|
|
|
|
if {[variant_isset python38]} {
|
|
python.default_version 38
|
|
} elseif {[variant_isset python37]} {
|
|
python.default_version 37
|
|
} elseif {[variant_isset python36]} {
|
|
python.default_version 36
|
|
}
|
|
|
|
depends_lib-append \
|
|
port:py${python.version}-argcomplete \
|
|
port:py${python.version}-setuptools \
|
|
port:py${python.version}-packaging \
|
|
port:py${python.version}-userpath
|