Ticket #36576: zmq-macports.patch
File zmq-macports.patch, 10.5 KB (added by merijn (Merijn Verstraaten), 12 years ago) |
---|
-
databases/groonga/Portfile
diff --unidirectional-new-file -N'urxPortIndex*' ports/databases/groonga/Portfile ports-new/databases/groonga/Portfile
old new 28 28 depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 \ 29 29 port:mecab-utf8 \ 30 30 port:libevent \ 31 port:zmq \31 port:zmq22 \ 32 32 port:msgpack 33 33 34 34 configure.args --without-cutter -
devel/czmq/Portfile
diff --unidirectional-new-file -N'urxPortIndex*' ports/devel/czmq/Portfile ports-new/devel/czmq/Portfile
old new 23 23 24 24 universal_variant yes 25 25 26 depends_lib port:zmq 26 depends_lib port:zmq22 27 27 28 28 livecheck.type regex 29 29 livecheck.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=42 # $Id: Portfile 85136 2011-10-10 07:43:08Z jmr@macports.org $3 4 PortSystem 1.05 6 name zeromq7 version 2.1.48 revision 19 platforms darwin10 categories devel11 maintainers nomaintainer12 replaced_by zmq13 14 description duplicate port -- please install zmq instead15 long_description ${description}16 17 homepage http://www.zeromq.org/18 master_sites http://download.zeromq.org/19 distfiles20 21 livecheck.type none22 23 pre-configure {24 ui_error "This port unintentionally duplicated zmq. Please install zmq instead."25 return -code error26 } -
devel/zmq/Portfile
diff --unidirectional-new-file -N'urxPortIndex*' ports/devel/zmq/Portfile ports-new/devel/zmq/Portfile
old new 1 # $Id$ 2 3 PortSystem 1.0 4 5 name zmq 6 version 3.2.0 7 revision 0 8 categories net devel 9 license LGPL-3+ 10 platforms darwin 11 maintainers inconsistent.nl:merijn 12 13 description ØMQ (ZeroMQ) lightweight messaging kernel 14 15 long_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 23 homepage http://www.zeromq.org/ 24 master_sites http://download.zeromq.org/ 25 26 distname zeromq-${version} 27 distfiles zeromq-${version}-rc1.tar.gz 28 29 checksums rmd160 b434bd5c3baee1764c456e9c5c0f8ff83c9d7eea \ 30 sha256 6418523f281f618b9da677b8b640c158049a4f7e6f9f391909101b242e4cc991 31 32 conflicts zmq22 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} -
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 4 PortSystem 1.0 5 6 name zmq22 7 version 2.2.0 8 revision 0 9 categories devel net 10 license LGPL-3+ 11 platforms darwin 12 maintainers inconsistent.nl:merijn 13 14 description ØMQ (ZeroMQ) lightweight messaging kernel, 2.2.x branch 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 zmq 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} -
perl/p5-zeromq/Portfile
diff --unidirectional-new-file -N'urxPortIndex*' ports/perl/p5-zeromq/Portfile ports-new/perl/p5-zeromq/Portfile
old new 27 27 # port:p${perl5.major}-test-requires \ 28 28 # port:p${perl5.major}-test-tcp 29 29 30 depends_lib-append port:zmq 30 depends_lib-append port:zmq22 31 31 32 32 livecheck.type none 33 33 } -
python/py-zmq/Portfile
diff --unidirectional-new-file -N'urxPortIndex*' ports/python/py-zmq/Portfile ports-new/python/py-zmq/Portfile
old new 30 30 python.versions 26 27 31 32 31 31 32 32 if {$subport != $name} { 33 depends_lib-append port:zmq 33 depends_lib-append port:zmq22 34 34 35 35 post-patch { 36 36 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=42 # $Id: Portfile 94572 2012-06-22 23:50:47Z ryandesign@macports.org $3 4 PortSystem 1.05 6 name zmq7 version 2.2.08 revision 09 categories sysutils devel net10 license LGPL-3+11 platforms darwin12 maintainers nomaintainer13 14 description ØMQ lightweight messaging kernel15 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 43904aeb9ea6844f72ca02e4e53bf1d481a1a0264e64979da761464e8860463731 32 conflicts zmq2033 34 universal_variant yes35 36 variant pgm description {build with PGM extension} {37 configure.args-append --with-pgm38 }39 40 livecheck.type regex41 livecheck.url ${homepage}area:download42 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=42 # $Id: Portfile 77282 2011-03-25 18:35:19Z and.damore@macports.org $3 4 PortSystem 1.05 name zmq206 version 2.0.117 categories sysutils net8 platforms darwin9 maintainers and.damore openmaintainer10 description ØMQ lightweight messaging kernel, 2.0.x branch11 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 zmq20 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 09ab5d4d67010671fc52acb190cbdae5f1f4abf726 27 universal_variant no28 variant pgm description {build with PGM extension} {29 configure.args-append --with-pgm30 }31 livecheck.type regex32 livecheck.url ${homepage}area:download33 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 26 26 27 27 use_configure no 28 28 depends_lib port:gmake \ 29 path:lib/libzmq.dylib:zmq \29 path:lib/libzmq.dylib:zmq22 \ 30 30 port:sqlite3 31 31 32 32 patch {