Port details |
- czmq High-level C Binding for ZeroMQ
- 4.1.1_1 net =2 4.1.1_1Version of this port present on the latest quarterly branch.
- Maintainer: bofh@FreeBSD.org
- Port Added: 2013-11-29 13:48:18
- Last Update: 2024-05-20 10:33:03
- Commit Hash: b66e494
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- License: MPL20
- WWW:
- http://czmq.zeromq.org
- Description:
- High-level C bindings for ZeroMQ.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/net/czmq/ && make install clean
- To add the package, run one of these commands:
- pkg install net/czmq
- pkg install czmq
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: czmq
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1532993817
SHA256 (czmq-4.1.1.tar.gz) = f00ff419881dc2a05d0686c8467cd89b4882677fc56f31c0e2cc81c134cbb0c0
SIZE (czmq-4.1.1.tar.gz) = 1370719
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- pkgconf>=1.3.0_1 : devel/pkgconf
- autoconf>=2.72 : devel/autoconf
- automake>=1.16.5 : devel/automake
- libtoolize : devel/libtool
- Library dependencies:
-
- libzmq.so : net/libzmq4
- This port is required by:
- for Libraries
-
- net/zyre
Configuration Options:
- No options to configure
- Options name:
- net_czmq
- USES:
- autoreconf libtool pkgconfig
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
4.1.1_1 20 May 2024 10:33:03 |
Vsevolod Stakhov (vsevolod) |
security/libsodium: update to 1.0.19, bump dependent ports
PR: 278259
Reported by: Andrey Korobkov <alster-vinterdalen.se> |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
4.1.1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
4.1.1 20 Jul 2022 14:22:37 |
Tobias C. Berner (tcberner) |
net: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Straup Cope <ascope@cpan.org>
* Aaron Zauner <az_mail@gmx.at>
* Adam Jette <jettea46@yahoo.com>
* Adam Weinberger <adamw@FreeBSD.org>
* Alan Eldridge <alane@geeksrus.net>
* Alex Bakhtin <Alex.Bakhtin@gmail.com>
* Alex Deiter <Alex.Deiter@Gmail.COM>
* Alex Dupre <ale@FreeBSD.org>
* Alex Dupre <sysadmin@alexdupre.com> (Only the first 15 lines of the commit message are shown above ) |
4.1.1 08 Mar 2022 02:09:57 |
Muhammad Moinur Rahman (bofh) |
*/*: Take maintainership |
4.1.1 07 Mar 2022 19:07:39 |
Rene Ladan (rene) |
all: return koobs' ports to the pool after safekeeping his commit bit. |
4.1.1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
4.1.1 31 Jul 2018 01:00:40 |
koobs |
net/czmq: Update to 4.1.1
- Explicitly disable docs: it requires xmlto/asciidoc (which is fine), but
then fails to build using a packaged mkman (perl) script. Isolate the issue
separately from this update.
- Remove MAKE_ENV override to build verbosely, the build is verbose now by
default
- Remove all patches (upstreamed)
Changelog:
https://github.com/zeromq/czmq/blob/v4.1.1/NEWS
PR: 229687
Requested by: yuri |
3.0.2_1 21 Aug 2017 10:35:43 |
koobs |
net/czmq: Squash -Werror flag
zmq_utils.h functionality was moved to zmq.h since 4.2.0, with a deprecation
warning added. ports r448376 updated libzm4 to 4.2.2, which caused a build error
in net/cmzq due to the -Werror flag (set by default):
/usr/local/include/zmq_utils.h:41:32: error: unknown warning group '-Werror',
ignored [-Werror,-Wunknown-warning-option]
#pragma GCC diagnostic ignored "-Werror"
^
/usr/local/include/zmq_utils.h:44:9: warning: Warning: zmq_utils.h is
deprecated. All its functionality is provided by zmq.h. [-W#pragma-messages]
#pragma message("Warning: zmq_utils.h is deprecated. All its functionality is
provided by zmq.h.")
^
Squash the -Werror flag (as done in net/libzmq4) accordingly.
While I'm here:
- Modernize test target
- Group build related entries (MAKE_ENV/CPPFLAGS)
PR: 221688
Reported by: olgeni, Jan Bramkamp <crest_maintainer rlwinm de>
MFH: 2017Q3 |
3.0.2_1 28 Jul 2017 01:17:24 |
dbaio |
net/czmq: Update license
Approved by: portmgr (blanket) |
3.0.2_1 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
3.0.2_1 23 Mar 2016 09:20:35 |
vsevolod |
- Update libsodium to 1.0.8
- Bump revisions of all dependant ports
PR: 206482
Submitted by: lev, w.schwarzenfeld@aon.at |
3.0.2 25 Jun 2015 05:42:03 |
koobs |
net/czmq: Backport fix for build failure on 8.x
pkg-fallout reported the following build failure on 8.4 (GCC)
src/zactor.c:1: error: stray '\357' in program
src/zactor.c:1: error: stray '\273' in program
src/zactor.c:1: error: stray '\277' in program
Back port the fix [1] removing BOM headers after creating an issue [2]
upstream.
[1] https://github.com/zeromq/czmq/pull/1031
[2] https://github.com/zeromq/czmq/issues/1029
Reported by: pkg-fallout |
3.0.2 16 Jun 2015 10:42:49 |
koobs |
net/czmq: Remove pathfix (no longer necessary)
Deprecate USES=pathfix since we're now setting (overriding) the pkg-config
path via configure (pkgconfigdir) |
3.0.2 16 Jun 2015 10:40:32 |
koobs |
net/czmq: Update to 3.0.2, fix build
czmq 2.2.x is no longer compatible with libzmq4 (4.1.x)
- Update to 3.0.2
- Update pkg-plist
- Update LICENSE (MPL)
- Add LICENSE_FILE
- Add pkg-config to USES
- Override pkgconfig install path via configure
- Backport fix not building MAN pages when BUILD_DOCS is off [1]
- Use autoreconf to regenerate Makefiles until next release
[1] https://github.com/zeromq/czmq/pull/1027
Reported by: olgeni |
2.2.0_2 15 Jun 2015 11:06:49 |
koobs |
net/libzmq4: Update to 4.1.2, Fixes CVE-2014-9721
- Update to 4.1.2
- Update pkg-plist
- USES: pkg-config is now a global dependency
- OPTIONS: with-sytem-pgm is now with-pgm, update helpers
- OPTIONS: with-libsodium no longer takes args, update helpers
- Override pkgconfigdir via configure, deprecate USES: pathfix
- Bump PORTREVISION for dependent ports for shared library version
change
While I'm here:
- Whitespace align Makefile
Based on:
PR: 200502
Reported by: Sevan Janiyan <venture37 geeklan co uk>
Submitted by: Jason Unovitch <jason.unovitch gmail com>
MFH: 2015Q2
Security: 10a6d0aa-0b1c-11e5-bb90-002590263bf5
Security: CVE-2014-9721 |
2.2.0_1 09 Feb 2015 03:23:50 |
koobs |
net/libzmq4: Update to 4.0.5
- Update to 4.0.5
- Add LICENSE_FILE
- Sort Makefile sections
- Verbose'ify build
- Reduce diffs between net/libzmq3 [1]
[1] NOTE: OpenPGM is now a DEFAULT option in net/libzmq3
Changes:
* https://github.com/zeromq/zeromq4-x/blob/v4.0.5/NEWS
While I'm here:
- Bump PORTREVISIONS to chase shared library version change
- czmq: Verbose'ify czmq build
- czmq: Use install-strip to strip shared library
PR: 197407 |
2.2.0 19 Jun 2014 15:34:46 |
koobs |
net/czmq: Update to 2.2.0
- Update to 2.2.0
- Update pkg-plist
- Tweak pkg-descr
- Strip trailing slash from WWW: URL
Fixes zbeacon: (UDP) error: "Can't assign requested address"
on FreeBSD [1].
[1] https://github.com/zeromq/czmq/issues/407
PR: 189922
Submitted by: bartek |
2.0.3_1 06 Jun 2014 20:27:57 |
naddy |
Switch ZeroMQ 4 ports to USES=libtool and bump revision of affected ports.
Approved by: koobs |
2.0.3 29 Nov 2013 13:48:04 |
koobs |
devel/czmq: Move to net/czmq, Update to 2.0.3
- Update to 2.0.3
- Update pkg-plist
- Switch primary category to net/
- Update COMMENT to match other ZeroMQ ports and Google Juice
- Point LIB_DEPENDS to the latest libzmq4 port
- Remove gmake from USES (make works fine)
- Group USE/USES entries together and sort
- Add regression-test target
- pkg-descr: Tab->space in WWW:
- Whitespace alignment
- Move devel/czmq to net/czmq
- Update Makefile entries in devel/ and net/
- Add a MOVED entry |