Date: Sat, 12 Oct 2024 22:00:26 GMT From: Don Lewis <truckman@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: f06faad6cb80 - main - net/nmsg: Upgrade to version 1.3.0 Message-ID: <202410122200.49CM0Qip049307@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by truckman: URL: https://cgit.FreeBSD.org/ports/commit/?id=f06faad6cb80d2d2bf89e60eb0b83267af790de7 commit f06faad6cb80d2d2bf89e60eb0b83267af790de7 Author: Don Lewis <truckman@FreeBSD.org> AuthorDate: 2024-10-12 20:11:00 +0000 Commit: Don Lewis <truckman@FreeBSD.org> CommitDate: 2024-10-12 21:53:52 +0000 net/nmsg: Upgrade to version 1.3.0 nmsg (1.3.0): * Added external configuration for Kafka IO. * Stop IO when output fails. * Add support and API for statistics module. * Remove prometheus integration. * Add NMSG_STATSMOD_CONFIG environment variable. * Bug fixes. * Documentation fixes. Bump PORTREVISION of dependent ports. Sponsored by: DomainTools LLC --- dns/dnstable-convert/Makefile | 2 +- net/axa/Makefile | 2 +- net/nmsg/Makefile | 4 ++-- net/nmsg/distinfo | 6 +++--- net/nmsg/pkg-plist | 4 +++- net/p5-Net-Nmsg/Makefile | 2 +- net/py-pynmsg/Makefile | 2 +- net/sie-nmsg/Makefile | 2 +- 8 files changed, 13 insertions(+), 11 deletions(-) diff --git a/dns/dnstable-convert/Makefile b/dns/dnstable-convert/Makefile index a50187aabc8a..e158bd5ba3b6 100644 --- a/dns/dnstable-convert/Makefile +++ b/dns/dnstable-convert/Makefile @@ -1,6 +1,6 @@ PORTNAME= dnstable-convert PORTVERSION= 0.13.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/net/axa/Makefile b/net/axa/Makefile index bae3ecaad2d2..99000a594d4d 100644 --- a/net/axa/Makefile +++ b/net/axa/Makefile @@ -1,6 +1,6 @@ PORTNAME= axa PORTVERSION= 3.0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net dns MASTER_SITES= FARSIGHT LOCAL/truckman/farsight diff --git a/net/nmsg/Makefile b/net/nmsg/Makefile index 8390e320184c..d37fbac6bfb6 100644 --- a/net/nmsg/Makefile +++ b/net/nmsg/Makefile @@ -1,5 +1,5 @@ PORTNAME= nmsg -PORTVERSION= 1.2.0 +PORTVERSION= 1.3.0 PORTREVISION= 0 CATEGORIES= net MASTER_SITES= FARSIGHT LOCAL/truckman/farsight @@ -16,7 +16,7 @@ LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c \ GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share -USES= gmake libtool pathfix pkgconfig +USES= autoreconf gmake libtool pathfix pkgconfig USE_LDCONFIG= yes USE_PERL5= build CONFIGURE_ARGS= --with-pkgconfigdir='$${exec_prefix}/libdata/pkgconfig' diff --git a/net/nmsg/distinfo b/net/nmsg/distinfo index 2ed56f670115..7e5a77649228 100644 --- a/net/nmsg/distinfo +++ b/net/nmsg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1720668312 -SHA256 (nmsg-1.2.0.tar.gz) = 16d43d985f58bc816dbb57e77d86d0a293c7fa72e270219e82b73c39b46a4aa2 -SIZE (nmsg-1.2.0.tar.gz) = 744422 +TIMESTAMP = 1728705873 +SHA256 (nmsg-1.3.0.tar.gz) = b3bf2e4e8c2182b98461b177e137f53546d4b936767d2e301d2892b5ac5b4930 +SIZE (nmsg-1.3.0.tar.gz) = 435772 diff --git a/net/nmsg/pkg-plist b/net/nmsg/pkg-plist index 338882aadf03..b8b8d14c58e8 100644 --- a/net/nmsg/pkg-plist +++ b/net/nmsg/pkg-plist @@ -38,6 +38,8 @@ include/nmsg/random.h include/nmsg/rate.h include/nmsg/res.h include/nmsg/sock.h +include/nmsg/statsmod.h +include/nmsg/statsmod_plugin.h include/nmsg/strbuf.h include/nmsg/timespec.h include/nmsg/vendors.h @@ -46,7 +48,7 @@ include/nmsg/zbuf.h lib/libnmsg.a lib/libnmsg.so lib/libnmsg.so.8 -lib/libnmsg.so.8.2.0 +lib/libnmsg.so.8.3.0 lib/nmsg/nmsg_flt1_sample.so lib/nmsg/nmsg_msg9_base.so libdata/pkgconfig/libnmsg.pc diff --git a/net/p5-Net-Nmsg/Makefile b/net/p5-Net-Nmsg/Makefile index 7a19a1cd16c8..1ff28d6150ad 100644 --- a/net/p5-Net-Nmsg/Makefile +++ b/net/p5-Net-Nmsg/Makefile @@ -1,6 +1,6 @@ PORTNAME= Net-Nmsg PORTVERSION= 0.17 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net perl5 MASTER_SITES= https://tools.netsa.cert.org/confluence/download/attachments/12320770/ \ CPAN diff --git a/net/py-pynmsg/Makefile b/net/py-pynmsg/Makefile index 2c53e8065d4e..4ee8996817f1 100644 --- a/net/py-pynmsg/Makefile +++ b/net/py-pynmsg/Makefile @@ -1,6 +1,6 @@ PORTNAME= pynmsg PORTVERSION= 0.5.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/sie-nmsg/Makefile b/net/sie-nmsg/Makefile index 6278aa2d5275..39c123ae5649 100644 --- a/net/sie-nmsg/Makefile +++ b/net/sie-nmsg/Makefile @@ -1,6 +1,6 @@ PORTNAME= sie-nmsg PORTVERSION= 1.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net dns MAINTAINER= truckman@FreeBSD.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202410122200.49CM0Qip049307>