From owner-svn-ports-all@freebsd.org Thu Aug 27 19:58:02 2020 Return-Path: Delivered-To: svn-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 838573C2117; Thu, 27 Aug 2020 19:58:02 +0000 (UTC) (envelope-from adamw@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BctnQ2xXRz4hrl; Thu, 27 Aug 2020 19:58:02 +0000 (UTC) (envelope-from adamw@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 48989936F; Thu, 27 Aug 2020 19:58:02 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07RJw2GG093863; Thu, 27 Aug 2020 19:58:02 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07RJw1kQ093858; Thu, 27 Aug 2020 19:58:01 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <202008271958.07RJw1kQ093858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Thu, 27 Aug 2020 19:58:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r546681 - head/security/gnupg X-SVN-Group: ports-head X-SVN-Commit-Author: adamw X-SVN-Commit-Paths: head/security/gnupg X-SVN-Commit-Revision: 546681 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Aug 2020 19:58:02 -0000 Author: adamw Date: Thu Aug 27 19:58:01 2020 New Revision: 546681 URL: https://svnweb.freebsd.org/changeset/ports/546681 Log: security/gnupg: Update to 2.2.22 Also, sort plist. The new gpgsplit binary is getting installed as gpgsplit2 to avoid a conflict with security/gnupg1. Noteworthy changes in version 2.2.22 ==================================== * gpg: Change the default key algorithm to rsa3072. * gpg: Add regular expression support for Trust Signatures on all platforms. [#4843] * gpg: Fix regression in 2.2.21 with non-default --passphrase-repeat option. [#4991] * gpg: Ignore --personal-digest-prefs for ECDSA keys. [#5021] * gpgsm: Make rsaPSS a de-vs compliant scheme. * gpgsm: Show also the SHA256 fingerprint in key listings. * gpgsm: Do not require a default keyring for --gpgconf-list. [#4867] * gpg-agent: Default to extended key format and record the creation time of keys. Add new option --disable-extended-key-format. * gpg-agent: Support the WAYLAND_DISPLAY envvar. [#5016] * gpg-agent: Allow using --gpgconf-list even if HOME does not exist. [#4866] * gpg-agent: Make the Pinentry work even if the envvar TERM is set to the empty string. [#4137] * scdaemon: Add a workaround for Gnuk tokens <= 2.15 which wrongly incremented the error counter when using the "verify" command of "gpg --edit-key" with only the signature key being present. * dirmngr: Better handle systems with disabled IPv6. [#4977] * gpgpslit: Install tool. It was not installed in the past to avoid conflicts with the version installed by GnuPG 1.4. [#5023] (We're installing it as gpgsplit2 to avoid conflict with security/gnupg1) * gpgtar: Handle Unicode file names on Windows correctly (requires libgpg-error 1.39). [#4083] * gpgtar: Make --files-from and --null work as documented. [#5027] * Build the Windows installer with the new Ntbtls 0.2.0 so that TLS connections succeed for servers demanding GCM. Release-info: https://dev.gnupg.org/T5030 Modified: head/security/gnupg/Makefile head/security/gnupg/distinfo head/security/gnupg/pkg-plist Modified: head/security/gnupg/Makefile ============================================================================== --- head/security/gnupg/Makefile Thu Aug 27 19:56:15 2020 (r546680) +++ head/security/gnupg/Makefile Thu Aug 27 19:58:01 2020 (r546681) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnupg -PORTVERSION= 2.2.21 +PORTVERSION= 2.2.22 CATEGORIES= security MASTER_SITES= GNUPG @@ -66,6 +66,7 @@ pre-build: ${TOUCH} ${WRKSRC}/doc/*.texi post-install: + ${MV} ${STAGEDIR}${PREFIX}/bin/gpgsplit ${STAGEDIR}${PREFIX}/bin/gpgsplit2 ${MV} ${STAGEDIR}${DATADIR}/help*.txt ${STAGEDIR}${DOCSDIR} .include Modified: head/security/gnupg/distinfo ============================================================================== --- head/security/gnupg/distinfo Thu Aug 27 19:56:15 2020 (r546680) +++ head/security/gnupg/distinfo Thu Aug 27 19:58:01 2020 (r546681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1594295049 -SHA256 (gnupg-2.2.21.tar.bz2) = 61e83278fb5fa7336658a8b73ab26f379d41275bb1c7c6e694dd9f9a6e8e76ec -SIZE (gnupg-2.2.21.tar.bz2) = 6813160 +TIMESTAMP = 1598556721 +SHA256 (gnupg-2.2.22.tar.bz2) = 7c1370565e1910b9d8c4e0fb57b9de34aa062ec7bb91abad5803d791f38d855b +SIZE (gnupg-2.2.22.tar.bz2) = 7098444 Modified: head/security/gnupg/pkg-plist ============================================================================== --- head/security/gnupg/pkg-plist Thu Aug 27 19:56:15 2020 (r546680) +++ head/security/gnupg/pkg-plist Thu Aug 27 19:58:01 2020 (r546681) @@ -1,17 +1,18 @@ bin/dirmngr bin/dirmngr-client -bin/gpg-connect-agent bin/gpg-agent -bin/gpgscm -bin/gpgsm -bin/gpgtar +bin/gpg-connect-agent %%WKS_SERVER%%bin/gpg-wks-server -bin/kbxutil %%SUID_GPG%%@(,,4555) bin/gpg2 %%NO_SUID_GPG%%bin/gpg2 bin/gpgconf bin/gpgparsemail +bin/gpgscm +bin/gpgsm +bin/gpgsplit2 +bin/gpgtar bin/gpgv2 +bin/kbxutil bin/symcryptrun bin/watchgnupg %%LDAP%%libexec/dirmngr_ldap