Date: Sat, 2 Feb 2019 21:22:58 +0000 (UTC) From: Craig Leres <leres@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491991 - in head/security/broccoli: . files Message-ID: <201902022122.x12LMwhp064060@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: leres Date: Sat Feb 2 21:22:58 2019 New Revision: 491991 URL: https://svnweb.freebsd.org/changeset/ports/491991 Log: Update to 1.101. PR: 235139 Submitted by: bofh Approved by: ler (mentor, implicit) Modified: head/security/broccoli/Makefile head/security/broccoli/distinfo head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c Modified: head/security/broccoli/Makefile ============================================================================== --- head/security/broccoli/Makefile Sat Feb 2 21:16:47 2019 (r491990) +++ head/security/broccoli/Makefile Sat Feb 2 21:22:58 2019 (r491991) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= broccoli -PORTVERSION= 1.97 -PORTREVISION= 1 +PORTVERSION= 1.101 PORTEPOCH= 1 CATEGORIES= security -MASTER_SITES= https://www.bro.org/downloads/release/ -DISTNAME= bro-2.4.1 +MASTER_SITES= https://www.zeek.org/downloads/ +DISTNAME= bro-2.6.1 MAINTAINER= leres@FreeBSD.org COMMENT= Bro Client Communications Library Modified: head/security/broccoli/distinfo ============================================================================== --- head/security/broccoli/distinfo Sat Feb 2 21:16:47 2019 (r491990) +++ head/security/broccoli/distinfo Sat Feb 2 21:22:58 2019 (r491991) @@ -1,2 +1,3 @@ -SHA256 (bro-2.4.1.tar.gz) = d8b99673a5024630f6bae820c4f8c3ca9029f1167f9e5729c914c66e1fc7c8f6 -SIZE (bro-2.4.1.tar.gz) = 15010455 +TIMESTAMP = 1548186823 +SHA256 (bro-2.6.1.tar.gz) = d9718b83fdae0c76eea5254a4b9470304c4d1d3778687de9a4fe0b5dffea521b +SIZE (bro-2.6.1.tar.gz) = 28432762 Modified: head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c ============================================================================== --- head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c Sat Feb 2 21:16:47 2019 (r491990) +++ head/security/broccoli/files/patch-aux_broccoli_src_bro__openssl.c Sat Feb 2 21:22:58 2019 (r491991) @@ -1,13 +1,14 @@ ---- aux/broccoli/src/bro_openssl.c.orig 2015-09-06 19:43:23 UTC +--- aux/broccoli/src/bro_openssl.c.orig 2018-12-19 16:36:18 UTC +++ aux/broccoli/src/bro_openssl.c @@ -302,7 +302,11 @@ __bro_openssl_init(void) * to set up an SSL connection now and abort if this fails in any way. */ +- if (! (ctx = SSL_CTX_new(SSLv23_method()))) +#ifndef OPENSSL_NO_SSL3 - if (! (ctx = SSL_CTX_new(SSLv3_method()))) ++ if (! (ctx = SSL_CTX_new(SSLv3_method()))) +#else -+ if (! (ctx = SSL_CTX_new(SSLv23_method()))) ++ if (! (ctx = SSL_CTX_new(SSLv23_method()))) +#endif D_RETURN_(FALSE);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902022122.x12LMwhp064060>