From owner-dev-commits-ports-all@freebsd.org Tue Jul 6 21:36:33 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 66DB9648B6F; Tue, 6 Jul 2021 21:36:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GKG8d2B2qz3HNW; Tue, 6 Jul 2021 21:36:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 346ED212AE; Tue, 6 Jul 2021 21:36:33 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 166LaXqv050259; Tue, 6 Jul 2021 21:36:33 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 166LaXeb050258; Tue, 6 Jul 2021 21:36:33 GMT (envelope-from git) Date: Tue, 6 Jul 2021 21:36:33 GMT Message-Id: <202107062136.166LaXeb050258@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Craig Leres Subject: git: 9ffa41537310 - main - security/zeek: Update to 4.0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: leres X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9ffa41537310b846c210cdbaa9217c9fd361c6ae Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jul 2021 21:36:33 -0000 The branch main has been updated by leres: URL: https://cgit.FreeBSD.org/ports/commit/?id=9ffa41537310b846c210cdbaa9217c9fd361c6ae commit 9ffa41537310b846c210cdbaa9217c9fd361c6ae Author: Craig Leres AuthorDate: 2021-07-06 21:31:18 +0000 Commit: Craig Leres CommitDate: 2021-07-06 21:31: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 --- 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 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