Ticket #54014: Portfile

File Portfile, 1.8 KB (added by 1-61803, 7 years ago)

corrected master_sites typo

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-stem
8version             1.5.4
9
10categories-append   devel security
11platforms           darwin
12license             LGPL-3
13maintainers         nomaintainer
14
15description         Stem is a Python controller library that allows applications to \
16                    interact with Tor (https://www.torproject.org/).
17long_description    Stem is a Python controller library for Tor. With it you can \
18                    use Tor's control protocol to script against the Tor process, \
19                    or write applications with capabilities similar to arm. \
20                    From a technical standpoint, Stem is a Python implementation \
21                    of Tor's directory and control specifications.
22
23homepage            https://stem.torproject.org/
24master_sites        pypi:s/${python.rootname}
25distname            ${python.rootname}-${version}
26
27checksums           md5     e0b4371253357170cc359e1549b91183 \
28                    rmd160  3415efe0c8d00fda597258e333da195f8645323b \
29                    sha256  3649133037ee186e80115650094a2fb2f60a23f006ebddab34d9039be9b2f7c8
30
31python.versions     27 34 35 36
32
33if {${name} ne ${subport}} {
34    depends_build-append \
35                        port:py${python.version}-setuptools
36
37    depends_lib-append  port:py${python.version}-codestyle \
38                        port:py${python.version}-crypto \
39                        port:py${python.version}-mock \
40                        port:py${python.version}-pyflakes \
41                        port:py${python.version}-tox
42
43    livecheck.type      none
44} else {
45    livecheck.type      pypi
46}