# -*- 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 # $Id$ PortSystem 1.0 PortGroup python 1.0 set _name stevedore set _n [string index ${_name} 0] name py-${_name} version 1.12.0 categories-append devel platforms darwin maintainers nomaintainer supported_archs noarch license Apache-2 description Manage dynamic plugins for Python applications long_description ${description} homepage https://pypi.python.org/pypi/${_name}/${version} master_sites pypi:${_n}/${_name}/ distname ${_name}-${version} checksums rmd160 76199a29dca21e383c717ad0ba4418a3d885458c \ sha256 1bdeb2562d8f2c1e3047c2f17134a38b37a6e53e16ca1d9f79ff2ac5d5fe2925 python.versions 27 34 35 if {${name} ne ${subport}} { # uses pkg_resources for extensions depends_lib-append port:py${python.version}-setuptools \ port:py${python.version}-pbr \ port:py${python.version}-six # Adding documentation post-destroot { set dest_doc ${destroot}${prefix}/share/doc/${subport} xinstall -d ${dest_doc} xinstall -m 755 -W ${worksrcpath} \ README.rst \ LICENSE \ announce.rst \ ChangeLog \ CONTRIBUTING.rst \ ${dest_doc} } livecheck.type none } else { livecheck.type pypi }