Ticket #40015: Portfile.2

File Portfile.2, 1.6 KB (added by smithsp (Sterling Smith), 11 years ago)

Improved Portfile to use github.setup

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