Commits
Renee Otten authored 4eed1d17810
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | PortGroup github 1.0 |
6 6 | |
7 7 | github.setup tkf python-epc 0.0.5 v |
8 8 | name py-epc |
9 + | |
9 10 | platforms darwin |
10 11 | supported_archs noarch |
11 12 | license GPL-3+ |
12 13 | maintainers nomaintainer |
13 14 | |
14 15 | description EPC (RPC stack for Emacs Lisp) for Python |
15 16 | long_description \ |
16 17 | EPC is an RPC stack for Emacs Lisp and Python-EPC is its server side and \ |
17 18 | client side implementation in Python. Using Python-EPC, you can easily \ |
18 19 | call Emacs Lisp functions from Python and Python functions from Emacs. \ |
19 20 | For example, you can use Python GUI module to build widgets for Emacs \ |
20 21 | (see examples/gtk/server.py for example). |
21 22 | |
22 23 | checksums rmd160 d25f8c858c86493589843c65db40813f25c5feb1 \ |
23 - | sha256 76ef4061e5ff94fb87879188d6a85e958e2a32363124a1ce6027b5c1cc5c4f46 |
24 + | sha256 76ef4061e5ff94fb87879188d6a85e958e2a32363124a1ce6027b5c1cc5c4f46 \ |
25 + | size 36828 |
24 26 | |
25 - | python.versions 27 34 35 36 |
27 + | python.versions 27 35 36 |
26 28 | |
27 29 | if {${name} ne ${subport}} { |
28 - | depends_lib-append port:py${python.version}-sexpdata |
29 - | livecheck.type none |
30 + | depends_lib-append \ |
31 + | port:py${python.version}-sexpdata |
32 + | |
33 + | livecheck.type none |
30 34 | } |