From owner-svn-ports-head@freebsd.org Sun Jan 26 05:27:10 2020 Return-Path: Delivered-To: svn-ports-head@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 0BE6B22FFED; Sun, 26 Jan 2020 05:27:10 +0000 (UTC) (envelope-from fox@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4851bK6YSkz4Yvs; Sun, 26 Jan 2020 05:27:09 +0000 (UTC) (envelope-from fox@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DC0321C299; Sun, 26 Jan 2020 05:27:09 +0000 (UTC) (envelope-from fox@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00Q5R9nO072665; Sun, 26 Jan 2020 05:27:09 GMT (envelope-from fox@FreeBSD.org) Received: (from fox@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00Q5R90w072663; Sun, 26 Jan 2020 05:27:09 GMT (envelope-from fox@FreeBSD.org) Message-Id: <202001260527.00Q5R90w072663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fox set sender to fox@FreeBSD.org using -f From: Santhosh Raju Date: Sun, 26 Jan 2020 05:27:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524152 - head/security/wolfssl X-SVN-Group: ports-head X-SVN-Commit-Author: fox X-SVN-Commit-Paths: head/security/wolfssl X-SVN-Commit-Revision: 524152 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2020 05:27:10 -0000 Author: fox Date: Sun Jan 26 05:27:09 2020 New Revision: 524152 URL: https://svnweb.freebsd.org/changeset/ports/524152 Log: security/wolfssl: Updates to 4.3.0 - Minor portlint / portfmt fixes. - Take ownership of the port. Changes: https://www.wolfssl.com/docs/wolfssl-changelog/ PR: 242853 Submitted by: takefu@airport.fm Reviewed by: philip Modified: head/security/wolfssl/Makefile head/security/wolfssl/distinfo head/security/wolfssl/pkg-plist Modified: head/security/wolfssl/Makefile ============================================================================== --- head/security/wolfssl/Makefile Sun Jan 26 04:57:44 2020 (r524151) +++ head/security/wolfssl/Makefile Sun Jan 26 05:27:09 2020 (r524152) @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= wolfssl -PORTVERSION= 4.2.0 +PORTVERSION= 4.3.0 CATEGORIES= security devel MASTER_SITES= https://www.wolfssl.com/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= fox@FreeBSD.org COMMENT= Embedded SSL C-Library LICENSE= GPLv2+ @@ -19,14 +19,25 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-dependency-tracking \ - --enable-shared --enable-static \ - --enable-dtls --enable-opensslextra --enable-ipv6 \ - --enable-dsa --enable-dh --enable-ecc --enable-sni \ - --enable-ripemd --enable-sha512 --enable-opensslcoexist\ - --enable-tls13 --enable-tls13-draft18\ - --enable-tls13-draft22 --enable-tls13-draft23\ - --enable-tls13-draft26 --enable-tls13-draft28\ - --enable-ssh --enable-keygen + --enable-dh \ + --enable-dsa \ + --enable-dtls \ + --enable-ecc \ + --enable-ipv6 \ + --enable-keygen \ + --enable-opensslextra \ + --enable-ripemd \ + --enable-sha512 \ + --enable-shared \ + --enable-sni \ + --enable-ssh \ + --enable-static \ + --enable-tls13 \ + --enable-tls13-draft18 \ + --enable-tls13-draft22 \ + --enable-tls13-draft23 \ + --enable-tls13-draft26 \ + --enable-tls13-draft28 TEST_TARGET= check PORTDOCS= * OPTIONS_DEFINE= DOCS Modified: head/security/wolfssl/distinfo ============================================================================== --- head/security/wolfssl/distinfo Sun Jan 26 04:57:44 2020 (r524151) +++ head/security/wolfssl/distinfo Sun Jan 26 05:27:09 2020 (r524152) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575422350 -SHA256 (wolfssl-4.2.0.zip) = 7aa4c8b9ac7eed76f0275abb13b4bd59a2e749211242cc6e364c3cdc9f3d959d -SIZE (wolfssl-4.2.0.zip) = 7181171 +TIMESTAMP = 1580001699 +SHA256 (wolfssl-4.3.0.zip) = 894e6fab5a3038fcfb04fd23016dadcbd979c0e88d5b084d37f19a1daa387e59 +SIZE (wolfssl-4.3.0.zip) = 7428521 Modified: head/security/wolfssl/pkg-plist ============================================================================== --- head/security/wolfssl/pkg-plist Sun Jan 26 04:57:44 2020 (r524151) +++ head/security/wolfssl/pkg-plist Sun Jan 26 05:27:09 2020 (r524152) @@ -123,8 +123,8 @@ include/wolfssl/openssl/opensslconf.h include/wolfssl/openssl/opensslv.h include/wolfssl/openssl/ossl_typ.h include/wolfssl/openssl/pem.h -include/wolfssl/openssl/pkcs7.h include/wolfssl/openssl/pkcs12.h +include/wolfssl/openssl/pkcs7.h include/wolfssl/openssl/rand.h include/wolfssl/openssl/rc4.h include/wolfssl/openssl/ripemd.h @@ -133,9 +133,10 @@ include/wolfssl/openssl/sha.h include/wolfssl/openssl/ssl.h include/wolfssl/openssl/ssl23.h include/wolfssl/openssl/stack.h +include/wolfssl/openssl/tls1.h include/wolfssl/openssl/ui.h -include/wolfssl/openssl/x509_vfy.h include/wolfssl/openssl/x509.h +include/wolfssl/openssl/x509_vfy.h include/wolfssl/openssl/x509v3.h include/wolfssl/options.h include/wolfssl/sniffer.h @@ -192,8 +193,8 @@ include/wolfssl/wolfcrypt/ripemd.h include/wolfssl/wolfcrypt/rsa.h include/wolfssl/wolfcrypt/settings.h include/wolfssl/wolfcrypt/sha.h -include/wolfssl/wolfcrypt/sha3.h include/wolfssl/wolfcrypt/sha256.h +include/wolfssl/wolfcrypt/sha3.h include/wolfssl/wolfcrypt/sha512.h include/wolfssl/wolfcrypt/signature.h include/wolfssl/wolfcrypt/srp.h @@ -207,6 +208,17 @@ include/wolfssl/wolfcrypt/wolfmath.h include/wolfssl/wolfio.h lib/libwolfssl.a lib/libwolfssl.so -lib/libwolfssl.so.23 -lib/libwolfssl.so.23.0.0 +lib/libwolfssl.so.24 +lib/libwolfssl.so.24.0.0 libdata/pkgconfig/wolfssl.pc +%%PORTDOCS%%%%DOCSDIR%%/README.txt +%%PORTDOCS%%%%DOCSDIR%%/example/client.c +%%PORTDOCS%%%%DOCSDIR%%/example/echoclient.c +%%PORTDOCS%%%%DOCSDIR%%/example/echoserver.c +%%PORTDOCS%%%%DOCSDIR%%/example/sctp-client-dtls.c +%%PORTDOCS%%%%DOCSDIR%%/example/sctp-client.c +%%PORTDOCS%%%%DOCSDIR%%/example/sctp-server-dtls.c +%%PORTDOCS%%%%DOCSDIR%%/example/sctp-server.c +%%PORTDOCS%%%%DOCSDIR%%/example/server.c +%%PORTDOCS%%%%DOCSDIR%%/example/tls_bench.c +%%PORTDOCS%%%%DOCSDIR%%/taoCert.txt