aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Leres <leres@FreeBSD.org>2021-07-06 21:31:18 +0000
committerCraig Leres <leres@FreeBSD.org>2021-09-22 22:39:18 +0000
commit59d8cc103d700474955836487f3a76834f7fe7cc (patch)
treea387fd6723f8e28371710f09246dc45bb8048507
parent36d264034a3281d1eff08b9bc8ad756086ef4669 (diff)
downloadports-59d8cc103d700474955836487f3a76834f7fe7cc.tar.gz
ports-59d8cc103d700474955836487f3a76834f7fe7cc.zip
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)
-rw-r--r--security/zeek/Makefile3
-rw-r--r--security/zeek/distinfo6
-rw-r--r--security/zeek/files/patch-auxil_highwayhash_highwayhash_arch__specific.cc11
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