# -*- 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 name py-astroid version 1.0.0 revision 0 categories-append devel platforms darwin license LGPL-2.1+ supported_archs noarch python.versions 26 27 32 33 maintainers stromnov openmaintainer description Rebuild a new abstract syntax tree from Python's ast. long_description The aim of this module is to provide a common \ base representation of python source code for \ projects such as pychecker, pyreverse, pylint... \ Well, actually the development of this library is \ essentially governed by pylint's needs. homepage http://bitbucket.org/logilab/astroid/ master_sites https://pypi.python.org/packages/source/a/astroid/ distname astroid-${version} checksums rmd160 b3ded619bd2f19038f805c78d30ff742010b0623 \ sha256 57c885e17b1b10d45b0b8033f40f6a2f0f71d1d6b30a3b5ae8a10f79eb7e3eae if {$subport != $name} { depends_build-append \ port:py${python.version}-setuptools depends_lib-append port:py${python.version}-logilab-common post-destroot { xinstall -m 755 -d ${destroot}${prefix}/share/doc/${subport} xinstall -m 644 -W ${worksrcpath} ChangeLog README \ ${destroot}${prefix}/share/doc/${subport} } livecheck.type none } else { livecheck.type regex livecheck.url ${master_sites} livecheck.regex {astroid-(\d+(?:\.\d+)*)\.[tz]} }