Ticket #36576: zmq-macports.patch

File zmq-macports.patch, 10.5 KB (added by merijn (Merijn Verstraaten), 12 years ago)

Unified diff against the root of the ports tree

  • databases/groonga/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/databases/groonga/Portfile ports-new/databases/groonga/Portfile
    old new  
    2828depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2 \
    2929                    port:mecab-utf8 \
    3030                    port:libevent \
    31                     port:zmq \
     31                    port:zmq22 \
    3232                    port:msgpack
    3333
    3434configure.args      --without-cutter
  • devel/czmq/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/devel/czmq/Portfile ports-new/devel/czmq/Portfile
    old new  
    2323
    2424universal_variant   yes
    2525
    26 depends_lib         port:zmq
     26depends_lib         port:zmq22
    2727
    2828livecheck.type      regex
    2929livecheck.url       ${master_sites}
  • devel/zeromq/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/devel/zeromq/Portfile ports-new/devel/zeromq/Portfile
    old new  
    1 # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
    2 # $Id: Portfile 85136 2011-10-10 07:43:08Z jmr@macports.org $
    3 
    4 PortSystem          1.0
    5 
    6 name                zeromq
    7 version             2.1.4
    8 revision            1
    9 platforms           darwin
    10 categories          devel
    11 maintainers         nomaintainer
    12 replaced_by         zmq
    13 
    14 description         duplicate port -- please install zmq instead
    15 long_description    ${description}
    16 
    17 homepage            http://www.zeromq.org/
    18 master_sites        http://download.zeromq.org/
    19 distfiles
    20 
    21 livecheck.type      none
    22 
    23 pre-configure {
    24     ui_error "This port unintentionally duplicated zmq. Please install zmq instead."
    25     return -code error
    26 }
  • devel/zmq/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/devel/zmq/Portfile ports-new/devel/zmq/Portfile
    old new  
     1# $Id$
     2
     3PortSystem          1.0
     4
     5name                zmq
     6version             3.2.0
     7revision            0
     8categories          net devel
     9license             LGPL-3+
     10platforms           darwin
     11maintainers         inconsistent.nl:merijn
     12
     13description         ØMQ (ZeroMQ) lightweight messaging kernel
     14
     15long_description    The ØMQ lightweight messaging kernel is a library which \
     16                    extends the standard socket interfaces with features \
     17                    traditionally provided by specialised messaging middleware \
     18                    products. ØMQ sockets provide an abstraction of asynchronous \
     19                    message queues, multiple messaging patterns, message \
     20                    filtering (subscriptions), seamless access to multiple \
     21                    transport protocols and more.
     22
     23homepage            http://www.zeromq.org/
     24master_sites        http://download.zeromq.org/
     25
     26distname            zeromq-${version}
     27distfiles           zeromq-${version}-rc1.tar.gz
     28
     29checksums           rmd160  b434bd5c3baee1764c456e9c5c0f8ff83c9d7eea \
     30                    sha256  6418523f281f618b9da677b8b640c158049a4f7e6f9f391909101b242e4cc991
     31
     32conflicts           zmq22
     33
     34universal_variant   yes
     35
     36variant pgm description {build with PGM extension} {
     37    configure.args-append   --with-pgm
     38}
     39
     40livecheck.type      regex
     41livecheck.url       ${homepage}area:download
     42livecheck.regex     zeromq-(\[0-9.\]+)${extract.suffix}
  • devel/zmq22/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/devel/zmq22/Portfile ports-new/devel/zmq22/Portfile
    old new  
     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
     4PortSystem          1.0
     5
     6name                zmq22
     7version             2.2.0
     8revision            0
     9categories          devel net
     10license             LGPL-3+
     11platforms           darwin
     12maintainers         inconsistent.nl:merijn
     13
     14description         ØMQ (ZeroMQ) lightweight messaging kernel, 2.2.x branch
     15
     16long_description    The ØMQ lightweight messaging kernel is a library which \
     17                    extends the standard socket interfaces with features \
     18                    traditionally provided by specialised messaging middleware \
     19                    products. ØMQ sockets provide an abstraction of asynchronous \
     20                    message queues, multiple messaging patterns, message \
     21                    filtering (subscriptions), seamless access to multiple \
     22                    transport protocols and more.
     23
     24homepage            http://www.zeromq.org/
     25master_sites        http://download.zeromq.org/
     26
     27distname            zeromq-${version}
     28
     29checksums           rmd160  63c6ca84c292a72ffb0e18f1a97a6fa744a6be7c \
     30                    sha256  43904aeb9ea6844f72ca02e4e53bf1d481a1a0264e64979da761464e88604637
     31
     32conflicts           zmq
     33
     34universal_variant   yes
     35
     36variant pgm description {build with PGM extension} {
     37    configure.args-append   --with-pgm
     38}
     39
     40livecheck.type      regex
     41livecheck.url       ${homepage}area:download
     42livecheck.regex     zeromq-(\[0-9.\]+)${extract.suffix}
  • perl/p5-zeromq/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/perl/p5-zeromq/Portfile ports-new/perl/p5-zeromq/Portfile
    old new  
    2727#                    port:p${perl5.major}-test-requires \
    2828#                    port:p${perl5.major}-test-tcp
    2929
    30 depends_lib-append  port:zmq
     30depends_lib-append  port:zmq22
    3131
    3232livecheck.type      none
    3333}
  • python/py-zmq/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/python/py-zmq/Portfile ports-new/python/py-zmq/Portfile
    old new  
    3030python.versions     26 27 31 32
    3131
    3232if {$subport != $name} {
    33     depends_lib-append     port:zmq
     33    depends_lib-append     port:zmq22
    3434
    3535    post-patch {
    3636        set setup_cfg ${worksrcpath}/setup.cfg
  • sysutils/zmq/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/sysutils/zmq/Portfile ports-new/sysutils/zmq/Portfile
    old new  
    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: Portfile 94572 2012-06-22 23:50:47Z ryandesign@macports.org $
    3 
    4 PortSystem          1.0
    5 
    6 name                zmq
    7 version             2.2.0
    8 revision            0
    9 categories          sysutils devel net
    10 license             LGPL-3+
    11 platforms           darwin
    12 maintainers         nomaintainer
    13 
    14 description         ØMQ lightweight messaging kernel
    15 
    16 long_description    The ØMQ lightweight messaging kernel is a library which \
    17                     extends the standard socket interfaces with features \
    18                     traditionally provided by specialised messaging middleware \
    19                     products. ØMQ sockets provide an abstraction of asynchronous \
    20                     message queues, multiple messaging patterns, message \
    21                     filtering (subscriptions), seamless access to multiple \
    22                     transport protocols and more.
    23 
    24 homepage            http://www.zeromq.org/
    25 master_sites        http://download.zeromq.org/
    26 
    27 distname            zeromq-${version}
    28 
    29 checksums           rmd160  63c6ca84c292a72ffb0e18f1a97a6fa744a6be7c \
    30                     sha256  43904aeb9ea6844f72ca02e4e53bf1d481a1a0264e64979da761464e88604637
    31 
    32 conflicts           zmq20
    33 
    34 universal_variant   yes
    35 
    36 variant pgm description {build with PGM extension} {
    37     configure.args-append   --with-pgm
    38 }
    39 
    40 livecheck.type      regex
    41 livecheck.url       ${homepage}area:download
    42 livecheck.regex     zeromq-(\[0-9.\]+)${extract.suffix}
  • sysutils/zmq20/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/sysutils/zmq20/Portfile ports-new/sysutils/zmq20/Portfile
    old new  
    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: Portfile 77282 2011-03-25 18:35:19Z and.damore@macports.org $
    3 
    4 PortSystem          1.0
    5 name                zmq20
    6 version             2.0.11
    7 categories          sysutils net
    8 platforms           darwin
    9 maintainers         and.damore openmaintainer
    10 description         ØMQ lightweight messaging kernel, 2.0.x branch
    11 long_description    \
    12     The ØMQ lightweight messaging kernel is a library which extends the \
    13     standard socket interfaces with features traditionally provided by \
    14     specialised messaging middleware products. ØMQ sockets provide an \
    15     abstraction of asynchronous message queues, multiple messaging patterns, \
    16     message filtering (subscriptions), seamless access to multiple transport \
    17     protocols and more.
    18 
    19 conflicts           zmq
    20 homepage            http://www.zeromq.org/
    21 master_sites        http://download.zeromq.org/
    22 distname            zeromq-${version}
    23 checksums           md5     72cdd7141cc3a002c3acadd4dadbfd75 \
    24                     sha1    45f1de83eb41cf7b6f074b874ef9b9718446f43a \
    25                     rmd160  09ab5d4d67010671fc52acb190cbdae5f1f4abf7
    26 
    27 universal_variant   no
    28 variant pgm description {build with PGM extension} {
    29     configure.args-append   --with-pgm
    30 }
    31 livecheck.type      regex
    32 livecheck.url       ${homepage}area:download
    33 livecheck.regex     zeromq-(\[0-9.\]+)${extract.suffix}
  • www/mongrel2/Portfile

    diff --unidirectional-new-file -N'urxPortIndex*' ports/www/mongrel2/Portfile ports-new/www/mongrel2/Portfile
    old new  
    2626
    2727use_configure       no
    2828depends_lib         port:gmake \
    29                     path:lib/libzmq.dylib:zmq \
     29                    path:lib/libzmq.dylib:zmq22 \
    3030                    port:sqlite3
    3131
    3232patch {