You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
51 lines
1.6 KiB
Tcl
51 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
|
|
|
|
name py-fs
|
|
version 2.4.12
|
|
revision 0
|
|
|
|
platforms darwin
|
|
license MIT
|
|
maintainers nomaintainer
|
|
|
|
description Python's filesystem abstraction layer
|
|
long_description ${description}
|
|
|
|
homepage https://github.com/PyFilesystem/pyfilesystem2
|
|
|
|
checksums rmd160 39eaa94c2f4073d548333a671b5d1c9a5b2dc3e3 \
|
|
sha256 c10ba188b14d6213a1ca950efd004931abbfa64b294c80bbf1045753831bf42f \
|
|
size 163505
|
|
|
|
python.versions 27 36 37 38 39
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
|
|
depends_lib-append \
|
|
port:py${python.version}-appdirs \
|
|
port:py${python.version}-six \
|
|
port:py${python.version}-tz
|
|
|
|
if {${python.version} eq 27} {
|
|
depends_lib-append \
|
|
port:py${python.version}-backports.os \
|
|
port:py${python.version}-enum34 \
|
|
port:py${python.version}-scandir \
|
|
port:py${python.version}-typing
|
|
}
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} README.md LICENSE \
|
|
${destroot}${docdir}
|
|
}
|
|
|
|
livecheck.type none
|
|
}
|