Ticket #46909: Portfile

File Portfile, 982 bytes (added by jfcaron3, 9 years ago)
Line 
1# -*- 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
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-doit
8version             0.27.0
9platforms           darwin
10license             MIT
11maintainers         nomaintainer
12
13description         doit Automation Tool
14long_description    ${description}
15
16homepage            http://pydoit.org
17master_sites        https://pypi.python.org/packages/source/d/doit
18distname            doit-0.27.0
19
20checksums           rmd160  7617cd74f871268c6e940483a2fd96506595790d \
21                    sha256  06662c8677fb3e925c262559b7d3c5d8e08a10320be3386a7d348702e8e3ed8a
22
23python.versions     25 26 27 32 33 34
24
25if {${name} ne ${subport}} {
26    depends_build-append \
27                        port:py${python.version}-setuptools
28
29    livecheck.type      none
30} else {
31    livecheck.type      regex
32    livecheck.url       ${master_sites}
33}