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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-stem |
---|
8 | version 1.5.4 |
---|
9 | |
---|
10 | categories-append devel security |
---|
11 | platforms darwin |
---|
12 | license LGPL-3 |
---|
13 | maintainers nomaintainer |
---|
14 | |
---|
15 | description Stem is a Python controller library that allows applications to \ |
---|
16 | interact with Tor (https://www.torproject.org/). |
---|
17 | long_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 | |
---|
23 | homepage https://stem.torproject.org/ |
---|
24 | master_sites pypi:s/${python.rootname} |
---|
25 | distname ${python.rootname}-${version} |
---|
26 | |
---|
27 | checksums md5 e0b4371253357170cc359e1549b91183 \ |
---|
28 | rmd160 3415efe0c8d00fda597258e333da195f8645323b \ |
---|
29 | sha256 3649133037ee186e80115650094a2fb2f60a23f006ebddab34d9039be9b2f7c8 |
---|
30 | |
---|
31 | python.versions 27 34 35 36 |
---|
32 | |
---|
33 | if {${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 | } |
---|