aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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