Revision
108547
Author
sean@macports.org
Date
2013-07-25 17:21:04 -0700 (Thu, 25 Jul 2013)

Log Message

py-epc: add new port for python-epc

Added Paths

Diff

Added: trunk/dports/python/py-epc/Portfile (0 => 108547)


--- trunk/dports/python/py-epc/Portfile	                        (rev 0)
+++ trunk/dports/python/py-epc/Portfile	2013-07-26 00:21:04 UTC (rev 108547)
@@ -0,0 +1,29 @@
+# -*- 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
+# $Id$
+
+PortSystem          1.0
+PortGroup           python 1.0
+PortGroup           github 1.0
+
+github.setup        tkf python-epc 0.0.5 v
+name                py-epc
+platforms           darwin
+supported_archs     noarch
+license             GPL-3+
+maintainers         nomaintainer
+description         EPC (RPC stack for Emacs Lisp) for Python
+long_description    EPC is an RPC stack for Emacs Lisp and Python-EPC is \
+its server side and client side implementation in Python. Using Python-EPC, \
+you can easily call Emacs Lisp functions from Python and Python functions \
+from Emacs. For example, you can use Python GUI module to build widgets \
+for Emacs (see examples/gtk/server.py for example).
+
+checksums           rmd160  d25f8c858c86493589843c65db40813f25c5feb1 \
+                    sha256  76ef4061e5ff94fb87879188d6a85e958e2a32363124a1ce6027b5c1cc5c4f46
+
+python.versions     26 27 32 33
+
+if {$subport != $name} {
+    depends_lib-append   port:py${python.version}-sexpdata
+    livecheck.type       none
+}