Ticket #47014: Portfile

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