| 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 terminado 0.5 |
|---|
| 9 | name py-terminado |
|---|
| 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 Tornado websocket backend for the term.js Javascript terminal emulator library |
|---|
| 20 | long_description ${description} |
|---|
| 21 | |
|---|
| 22 | checksums rmd160 bcf02690f59b1ad39693aab93c1bee301441b97a \ |
|---|
| 23 | sha256 0c899ed7b41754cb3269a32de3c88b70e1b0407b01f4fb98b131e229c823d9d7 |
|---|
| 24 | |
|---|
| 25 | if {${name} ne ${subport}} { |
|---|
| 26 | depends_build-append \ |
|---|
| 27 | port:py${python.version}-setuptools \ |
|---|
| 28 | |
|---|
| 29 | depends_lib-append \ |
|---|
| 30 | port:py${python.version}-ptyprocess \ |
|---|
| 31 | port:py${python.version}-tornado |
|---|
| 32 | |
|---|
| 33 | livecheck.type none |
|---|
| 34 | } |
|---|