Date: Wed, 6 Nov 2019 05:46:47 +0000 (UTC) From: Don Lewis <truckman@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516861 - head/net/nmsg Message-ID: <201911060546.xA65klPu035071@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: truckman Date: Wed Nov 6 05:46:46 2019 New Revision: 516861 URL: https://svnweb.freebsd.org/changeset/ports/516861 Log: Upgrade net/nmsg to version 0.15.0: * Added runtime-tunable environment variables NMSG_GRALIAS_FILE and NMSG_OPALIAS_FILE. * Added compile-time version info to API: NMSG_LIBRARY_VERSION and MSG_LIBRARY_VERSION_NUMBER; and runtime functions: nmsg_get_version() and nmsg_get_version_number(). * Ensure nmsg_sock_parse_sockspec() returns an error if an invalid port range is supplied. * Fixed nmsg_io filtering default policy logic. (Previously, if the final filter returned "declined", that result was returned in place of the configured default policy.) * Make nmsg_output_set_buffered() able to unbuffer nmsg_output_type_json objects. * Fixed many compiler check warnings. * Added multiple unit tests. * Fix bugs caught by static analysis (cppcheck). * For protobuf compatibility, renamed all protobuf-c generated enum names and types, although the wire format of the messages remains the same. (Thank you to Chris Morrow.) Compatibility definitions added to nmsg/compat.h to allow existing code to continue using the old names. * Miscellaneous documentation improvements. Sponsored by: Farsight Security, Inc. Modified: head/net/nmsg/Makefile head/net/nmsg/distinfo head/net/nmsg/pkg-plist Modified: head/net/nmsg/Makefile ============================================================================== --- head/net/nmsg/Makefile Wed Nov 6 05:28:32 2019 (r516860) +++ head/net/nmsg/Makefile Wed Nov 6 05:46:46 2019 (r516861) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= nmsg -PORTVERSION= 0.14.0 +PORTVERSION= 0.15.0 CATEGORIES= net MASTER_SITES= FARSIGHT LOCAL/truckman/farsight Modified: head/net/nmsg/distinfo ============================================================================== --- head/net/nmsg/distinfo Wed Nov 6 05:28:32 2019 (r516860) +++ head/net/nmsg/distinfo Wed Nov 6 05:46:46 2019 (r516861) @@ -1,3 +1,3 @@ -TIMESTAMP = 1571089597 -SHA256 (nmsg-0.14.0.tar.gz) = 3e29f631322ce1d667b9bf300847f25a0b5dc57029fe98368e624f6462bc71ce -SIZE (nmsg-0.14.0.tar.gz) = 629549 +TIMESTAMP = 1573000406 +SHA256 (nmsg-0.15.0.tar.gz) = 44ad5203b4f71969255c6871d079ef6c6955aa7b26b9705e831f54554aa82ff1 +SIZE (nmsg-0.15.0.tar.gz) = 662692 Modified: head/net/nmsg/pkg-plist ============================================================================== --- head/net/nmsg/pkg-plist Wed Nov 6 05:28:32 2019 (r516860) +++ head/net/nmsg/pkg-plist Wed Nov 6 05:46:46 2019 (r516861) @@ -40,11 +40,12 @@ include/nmsg/sock.h include/nmsg/strbuf.h include/nmsg/timespec.h include/nmsg/vendors.h +include/nmsg/version.h include/nmsg/zbuf.h lib/libnmsg.a lib/libnmsg.so lib/libnmsg.so.6 -lib/libnmsg.so.6.0.0 +lib/libnmsg.so.6.1.0 lib/nmsg/nmsg_flt1_sample.so lib/nmsg/nmsg_msg9_base.so libdata/pkgconfig/libnmsg.pc @@ -70,3 +71,4 @@ libdata/pkgconfig/libnmsg.pc %%EXAMPLES%%%%EXAMPLESDIR%%/nmsg-packet2pcap.c %%EXAMPLES%%%%EXAMPLESDIR%%/nmsg_callback.c %%EXAMPLES%%%%EXAMPLESDIR%%/print_srcip.c +%%EXAMPLES%%%%EXAMPLESDIR%%/print_version.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911060546.xA65klPu035071>