Date: Wed, 22 Sep 2021 22:44:13 GMT From: Craig Leres <leres@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: 59d8cc103d70 - 2021Q3 - security/zeek: Update to 4.0.3 Message-ID: <202109222244.18MMiDkl085441@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch 2021Q3 has been updated by leres: URL: https://cgit.FreeBSD.org/ports/commit/?id=59d8cc103d700474955836487f3a76834f7fe7cc commit 59d8cc103d700474955836487f3a76834f7fe7cc Author: Craig Leres <leres@FreeBSD.org> AuthorDate: 2021-07-06 21:31:18 +0000 Commit: Craig Leres <leres@FreeBSD.org> CommitDate: 2021-09-22 22:39:18 +0000 security/zeek: Update to 4.0.3 https://github.com/zeek/zeek/releases/tag/v4.0.3 This release fixes the following bugs: - Zeek now accepts unset fields in the input data only when the corresponding record field is &optional. - The version field in ssh.log is now optional and will not be set if we cannot determine the version that was negotiated by the client and server. - Zeekctl could crash at startup on certain compilers and platforms due to a memory corruption issue in the Broker python bindings. - The highwayhash submodule was updated to fix a build failure on FreeBSD for PowerPC. This release deprecates the following functionality: - The stepping-stone analyzer is marked as deprecated. It was partially marked as deprecated in 2.0, and will be fully removed in v4.1. Reported by: Tim Wojtulewicz (cherry picked from commit 9ffa41537310b846c210cdbaa9217c9fd361c6ae) --- security/zeek/Makefile | 3 +-- security/zeek/distinfo | 6 +++--- .../patch-auxil_highwayhash_highwayhash_arch__specific.cc | 11 ----------- 3 files changed, 4 insertions(+), 16 deletions(-) diff --git a/security/zeek/Makefile b/security/zeek/Makefile index 451d9e504eb8..9169eaa7bd1a 100644 --- a/security/zeek/Makefile +++ b/security/zeek/Makefile @@ -1,8 +1,7 @@ # Created by: David O'Brien <obrien@FreeBSD.org> PORTNAME= zeek -PORTVERSION= 4.0.2 -PORTREVISION= 1 +PORTVERSION= 4.0.3 CATEGORIES= security MASTER_SITES= https://download.zeek.org/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} diff --git a/security/zeek/distinfo b/security/zeek/distinfo index b9a6ff91c026..3256e42c8908 100644 --- a/security/zeek/distinfo +++ b/security/zeek/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1622678290 -SHA256 (zeek-4.0.2.tar.gz) = 550713a9d3fd348783f39c959af7e569164c95b96cc3be28d7d5557bdeebfd95 -SIZE (zeek-4.0.2.tar.gz) = 29428156 +TIMESTAMP = 1625606511 +SHA256 (zeek-4.0.3.tar.gz) = 33ee6b2aa96d127b7273ce337552bc7b2abf4910aa7a431dfc9ec606a4e233db +SIZE (zeek-4.0.3.tar.gz) = 29432987 SHA256 (zeek-zeek-netmap-v2.0.0_GH0.tar.gz) = d37a69babfbb62a51a2413d6b83ae792ce1e7f1ccb1d51bd6b209a10fe5c4d75 SIZE (zeek-zeek-netmap-v2.0.0_GH0.tar.gz) = 9100 diff --git a/security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc b/security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc deleted file mode 100644 index eda7565aad24..000000000000 --- a/security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc +++ /dev/null @@ -1,11 +0,0 @@ ---- auxil/highwayhash/highwayhash/arch_specific.cc.orig 2021-03-23 17:45:40 UTC -+++ auxil/highwayhash/highwayhash/arch_specific.cc -@@ -150,7 +150,7 @@ double DetectNominalClockRate() { - } - #elif __FreeBSD__ - size_t length = sizeof(freq); -- sysctlbyname("dev.cpu.0.freq"), &freq, &length, NULL, 0); -+ sysctlbyname("dev.cpu.0.freq", &freq, &length, NULL, 0); - freq *= 1E6; - return freq; - #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109222244.18MMiDkl085441>