From owner-svn-ports-head@freebsd.org Mon Jun 25 19:00:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87902101B5B9; Mon, 25 Jun 2018 19:00:27 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3936A8984B; Mon, 25 Jun 2018 19:00:27 +0000 (UTC) (envelope-from mandree@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 F0104114A; Mon, 25 Jun 2018 19:00:26 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5PJ0QJw055322; Mon, 25 Jun 2018 19:00:26 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5PJ0QQs055318; Mon, 25 Jun 2018 19:00:26 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201806251900.w5PJ0QQs055318@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Mon, 25 Jun 2018 19:00:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473331 - head/security/easy-rsa X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/security/easy-rsa X-SVN-Commit-Revision: 473331 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.26 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: Mon, 25 Jun 2018 19:00:27 -0000 Author: mandree Date: Mon Jun 25 19:00:26 2018 New Revision: 473331 URL: https://svnweb.freebsd.org/changeset/ports/473331 Log: Upgrade Easy-RSA to v3.0.4 Upstream's ChangeLog (without Windows-/Travis related changes) since v3.0.1: * Remove use of egrep (#154) * Remove "local" from variable assignment (#165) * Assign values to variables defined previously w/local * Finally(?) fix the subjectAltName issues presented earlier (really fixes #168) * copy CSR extensions into signed certificate Modified: head/security/easy-rsa/Makefile head/security/easy-rsa/distinfo head/security/easy-rsa/pkg-plist Modified: head/security/easy-rsa/Makefile ============================================================================== --- head/security/easy-rsa/Makefile Mon Jun 25 17:44:13 2018 (r473330) +++ head/security/easy-rsa/Makefile Mon Jun 25 19:00:26 2018 (r473331) @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= easy-rsa -DISTVERSION= 3.0.1 -PORTREVISION= 1 +DISTVERSION= 3.0.4 CATEGORIES= security net-mgmt -MASTER_SITES= https://github.com/OpenVPN/easy-rsa/releases/download/${DISTVERSION}/ +MASTER_SITES= https://github.com/OpenVPN/easy-rsa/releases/download/v${DISTVERSION}/ DISTNAME= EasyRSA-${DISTVERSION} # Eric F. Crist does not require my @@ -34,7 +33,7 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/easyrsa ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_SCRIPT} ${WRKSRC}/easyrsa ${STAGEDIR}${DATADIR}/easyrsa.real ${INSTALL_DATA} ${WRKSRC}/vars.example ${STAGEDIR}${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/openssl-1.0.cnf ${STAGEDIR}${DATADIR}/openssl-1.0.cnf.example + ${INSTALL_DATA} ${WRKSRC}/openssl-easyrsa.cnf ${STAGEDIR}${DATADIR}/openssl-easyrsa.cnf.example (cd ${WRKSRC}/x509-types/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/x509-types/) do-install-DOCS-on: Modified: head/security/easy-rsa/distinfo ============================================================================== --- head/security/easy-rsa/distinfo Mon Jun 25 17:44:13 2018 (r473330) +++ head/security/easy-rsa/distinfo Mon Jun 25 19:00:26 2018 (r473331) @@ -1,2 +1,3 @@ -SHA256 (EasyRSA-3.0.1.tgz) = dbdaf5b9444b99e0c5221fd4bcf15384c62380c1b63cea23d42239414d7b2d4e -SIZE (EasyRSA-3.0.1.tgz) = 40960 +TIMESTAMP = 1529952735 +SHA256 (EasyRSA-3.0.4.tgz) = 472167f976c6cb7c860cec6150a5616e163ae20365c81f179811d6ee0779ec5a +SIZE (EasyRSA-3.0.4.tgz) = 37721 Modified: head/security/easy-rsa/pkg-plist ============================================================================== --- head/security/easy-rsa/pkg-plist Mon Jun 25 17:44:13 2018 (r473330) +++ head/security/easy-rsa/pkg-plist Mon Jun 25 19:00:26 2018 (r473331) @@ -1,4 +1,4 @@ bin/easyrsa %%DATADIR%%/easyrsa.real -@sample %%DATADIR%%/openssl-1.0.cnf.example %%DATADIR%%/openssl-1.0.cnf +@sample %%DATADIR%%/openssl-easyrsa.cnf.example %%DATADIR%%/openssl-easyrsa.cnf @sample %%DATADIR%%/vars.example %%DATADIR%%/vars