You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
33 lines
1019 B
Tcl
33 lines
1019 B
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-promise
|
|
version 2.3
|
|
revision 0
|
|
platforms {darwin any}
|
|
supported_archs noarch
|
|
license MIT
|
|
maintainers nomaintainer
|
|
|
|
description Promises/A implementation for Python
|
|
long_description {*}${description}
|
|
|
|
homepage https://github.com/syrusakbary/promise
|
|
|
|
checksums rmd160 7aeeda9a13ce5414c56a95b397c7b58c78bb7068 \
|
|
sha256 dfd18337c523ba4b6a58801c164c1904a9d4d1b1747c7d5dbf45b693a49d93d0 \
|
|
size 19534
|
|
|
|
python.versions 310 311 312
|
|
|
|
if {${name} ne ${subport}} {
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${subport}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} LICENSE README.rst \
|
|
${destroot}${docdir}
|
|
}
|
|
}
|