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 github 1.0 |
---|
6 | PortGroup python 1.0 |
---|
7 | |
---|
8 | github.setup takluyver ptyprocess 0.4 |
---|
9 | name py-ptyprocess |
---|
10 | categories-append devel |
---|
11 | platforms darwin |
---|
12 | license BSD |
---|
13 | supported_archs noarch |
---|
14 | |
---|
15 | python.versions 27 34 |
---|
16 | |
---|
17 | maintainers nomaintainer |
---|
18 | |
---|
19 | description Launch a subprocess in a pseudo terminal (pty), and interact with both the process and its pty. |
---|
20 | long_description ${description} |
---|
21 | |
---|
22 | checksums rmd160 bc4b68a211dbfca3818c1e99a925d5db9a5ab438 \ |
---|
23 | sha256 deef9405b8d7b2e5c514a4235733f928f6f1a6ee4cc0203a8a48740f4c44c964 |
---|
24 | |
---|
25 | if {${name} ne ${subport}} { |
---|
26 | depends_build-append \ |
---|
27 | port:py${python.version}-setuptools |
---|
28 | |
---|
29 | livecheck.type none |
---|
30 | } |
---|