New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 83366


Ignore:
Timestamp:
08/30/11 06:02:11 (4 years ago)
Author:
stromnov@…
Message:

py2*-zmq: unify

Location:
trunk/dports/python
Files:
1 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/dports/python/py-zmq/Portfile

    r78624 r83366  
    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 
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 
    22# $Id$ 
    33 
    4 PortSystem              1.0 
    5 PortGroup               python26 1.0 
     4PortSystem          1.0 
     5PortGroup           python 1.0 
    66 
    7 name                    py26-zmq 
    8 version                 2.1.7 
    9 maintainers             gmail.com:jrjsmrtn openmaintainer 
    10 categories              python devel net 
    11 platforms               darwin 
     7name                py-zmq 
     8version             2.1.9 
     9revision            1 
     10categories          python devel net 
     11license             LGPL 
     12platforms           darwin 
    1213 
    13 description             Python bindings for ØMQ 
    14 long_description        PyZMQ is a lightweight and super-fast messaging library \ 
    15                         built on top of the ZeroMQ library. 
     14maintainers         gmail.com:jrjsmrtn openmaintainer 
    1615 
    17 homepage                http://github.com/zeromq/pyzmq 
    18 master_sites            http://pypi.python.org/packages/source/p/pyzmq/ 
    19 distname                pyzmq-${version} 
     16description         Python bindings for ØMQ 
    2017 
    21 checksums               md5     aa4d7d81ad3c93dc1efd195153cb71ae \ 
    22                         sha1    aac337efb9e3fa33a3fdfa288925ee1bc30a92f2 \ 
    23                         rmd160  40d60bd47e7e4479b8a4d7e595d796b77edb14f2 
     18long_description    PyZMQ is a lightweight and super-fast messaging library \ 
     19                    built on top of the ZeroMQ library. 
    2420 
    25 depends_lib-append      port:zmq 
     21homepage            http://github.com/zeromq/pyzmq 
     22master_sites        http://pypi.python.org/packages/source/p/pyzmq/ 
    2623 
    27 post-patch { 
    28     set setup_cfg ${worksrcpath}/setup.cfg 
    29     file copy ${worksrcpath}/setup.cfg.template ${setup_cfg} 
    30     reinplace "s|/usr/local|${prefix}|g" ${setup_cfg} 
     24distname            pyzmq-${version} 
     25 
     26checksums           md5     44efd9e7dd041b9f779e3026d189f870 \ 
     27                    sha1    986e05a89607e2a4f55f5efd2375cf72e840e5bb \ 
     28                    rmd160  6bd0e0694a62e1ef339f1a5fb5ba073d778376fe 
     29 
     30python.default_version  27 
     31python.versions     26 27 
     32 
     33if {$subport != $name} { 
     34    depends_lib     port:zmq 
     35 
     36    post-patch { 
     37        set setup_cfg ${worksrcpath}/setup.cfg 
     38        file copy ${worksrcpath}/setup.cfg.template ${setup_cfg} 
     39        reinplace "s|/usr/local|${prefix}|g" ${setup_cfg} 
     40    } 
    3141} 
    3242 
    33 livecheck.type          regex 
    34 livecheck.url           ${master_sites} 
    35 livecheck.regex         "pyzmq-(\\d+(?:\\.\\d+)*)${extract.suffix}" 
     43livecheck.type      regex 
     44livecheck.url       ${master_sites} 
     45livecheck.regex     "pyzmq-(\\d+(?:\\.\\d+)*)${extract.suffix}" 
Note: See TracChangeset for help on using the changeset viewer.