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 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | name py-Pyro4 |
---|
8 | set real_name Pyro4 |
---|
9 | |
---|
10 | github.author irmen |
---|
11 | github.project ${real_name} |
---|
12 | #github.tarball_from downloads |
---|
13 | |
---|
14 | version 4.20 |
---|
15 | categories python |
---|
16 | |
---|
17 | platforms darwin |
---|
18 | supported_archs noarch |
---|
19 | license MIT |
---|
20 | maintainers nomaintainer |
---|
21 | description Distributed object middleware for Python (RPC) |
---|
22 | long_description \ |
---|
23 | Pyro means PYthon Remote Objects. It is a library that \ |
---|
24 | enables you to build applications in which objects can talk to each \ |
---|
25 | other over the network, with minimal programming effort. You can just \ |
---|
26 | use normal Python method calls, with almost every possible parameter and \ |
---|
27 | return value type, and Pyro takes care of locating the right object on the \ |
---|
28 | right computer to execute the method. It is designed to be very easy to \ |
---|
29 | use, and to generally stay out of your way. But it also provides a set of \ |
---|
30 | powerful features that enables you to build distributed applications \ |
---|
31 | rapidly and effortlessly. Pyro is written in 100% pure Python. |
---|
32 | |
---|
33 | checksums md5 e4247b81a87755df8c449984411d25af \ |
---|
34 | rmd160 8bcd90257692ff684577cbbeb226ffca95aef948 \ |
---|
35 | sha256 72d3fb6dc653e6ae36bd47f2667fbff3c587c72f8bfb3f0dcb1763ee86c906f8 |
---|
36 | python.versions 26 27 31 32 33 |
---|
37 | homepage http://packages.python.org/${real_name} |
---|
38 | |
---|
39 | master_sites https://pypi.python.org/packages/source/P/Pyro4/ |
---|
40 | |
---|
41 | distname ${real_name}-${version} |
---|
42 | |
---|
43 | |
---|
44 | if {$subport != $name} { |
---|
45 | depends_build-append port:py${python.version}-setuptools |
---|
46 | depends_lib-append port:py${python.version}-serpent |
---|
47 | livecheck.type none |
---|
48 | } |
---|