Received: by mail.netbsd.org (Postfix, from userid 605) id AE38884F16; Wed, 31 Aug 2022 09:42:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E7E9A84EAC for ; Wed, 31 Aug 2022 09:42:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YWsHiCCXXzj4 for ; Wed, 31 Aug 2022 09:42:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3A2A584C13 for ; Wed, 31 Aug 2022 09:42:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2DD62FA8A; Wed, 31 Aug 2022 09:42:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166193893393670" MIME-Version: 1.0 Date: Wed, 31 Aug 2022 09:42:13 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/security/gnupg2 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220831094213.2DD62FA8A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166193893393670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Aug 31 09:42:13 UTC 2022 Modified Files: pkgsrc/security/gnupg2: Makefile PLIST distinfo Log Message: gnupg2: updated to 2.2.37 Noteworthy changes in version 2.2.37 (2022-08-24) ------------------------------------------------- * gpg: In de-vs mode use SHA-256 instead of SHA-1 as implicit preference. [T6043] * gpg: Actually show symmetric+pubkey encrypted data as de-vs compliant. Add extra compliance checks for symkey_enc packets. [T6119] * gpg: Request keygrip of key to be added via command-fd interface. [T5771] * gpg: Look up user ID to revoke by UID hash. [T5936] * gpg: Fix wrong error message for "keytocard". [T6122] * gpg: --card-status shows the application type for non-openpgp cards again. [rG8e393e2592] * gpg: The options --auto-key-import and --include-key-block are again listed by gpgconf. [T6138] * gpgsm: New option --compatibility-flags. [rG77b6896f7a] * agent: New options --no-user-trustlist and --sys-trustlist-name. [T5990] * agent: Track and update the Display-S/N of cards so that the "please insert card" prompt may now show more information. Use "gpg --card-status" to update stored card meta data. [T6135] * scd:openpgp: Fix problem with ECC algorithm attributes on Yubikeys. [rG225c66f13b87] * scd:openpgp: Fix problem with Yubikey 5.4 firmware. [T6070] * dirmngr: Ask keyservers to provide the key fingerprints. [T5741] * ssh: Allow authentication as used by OpenSSH's PQ crypto support. [T5935] * wkd: Fix path traversal attack in gpg-wks-server. Add the mail address to the pending request data. [rGc1489ca0e1, T6098] * gpgconf: Improve registry dumping. [rG6bc9592318] * Silence warnings from AllowSetForegroundWindow. [rG6583abedf3] To generate a diff of this commit: cvs rdiff -u -r1.136 -r1.137 pkgsrc/security/gnupg2/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/security/gnupg2/PLIST cvs rdiff -u -r1.75 -r1.76 pkgsrc/security/gnupg2/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166193893393670 Content-Disposition: inline Content-Length: 2381 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/gnupg2/Makefile diff -u pkgsrc/security/gnupg2/Makefile:1.136 pkgsrc/security/gnupg2/Makefile:1.137 --- pkgsrc/security/gnupg2/Makefile:1.136 Tue Aug 9 12:08:29 2022 +++ pkgsrc/security/gnupg2/Makefile Wed Aug 31 09:42:12 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.136 2022/08/09 12:08:29 jperkin Exp $ +# $NetBSD: Makefile,v 1.137 2022/08/31 09:42:12 adam Exp $ -DISTNAME= gnupg-2.2.36 +DISTNAME= gnupg-2.2.37 PKGNAME= ${DISTNAME:S/gnupg-/gnupg2-/} CATEGORIES= security MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/gnupg/ Index: pkgsrc/security/gnupg2/PLIST diff -u pkgsrc/security/gnupg2/PLIST:1.12 pkgsrc/security/gnupg2/PLIST:1.13 --- pkgsrc/security/gnupg2/PLIST:1.12 Tue Oct 5 12:14:28 2021 +++ pkgsrc/security/gnupg2/PLIST Wed Aug 31 09:42:12 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2021/10/05 12:14:28 adam Exp $ +@comment $NetBSD: PLIST,v 1.13 2022/08/31 09:42:12 adam Exp $ bin/dirmngr bin/dirmngr-client bin/g13 @@ -57,6 +57,7 @@ share/doc/gnupg/examples/README share/doc/gnupg/examples/VS-NfD.prf share/doc/gnupg/examples/debug.prf share/doc/gnupg/examples/gpgconf.conf +share/doc/gnupg/examples/gpgconf.rnames share/doc/gnupg/examples/pwpattern.list share/doc/gnupg/examples/scd-event share/doc/gnupg/examples/systemd-user/README Index: pkgsrc/security/gnupg2/distinfo diff -u pkgsrc/security/gnupg2/distinfo:1.75 pkgsrc/security/gnupg2/distinfo:1.76 --- pkgsrc/security/gnupg2/distinfo:1.75 Tue Jul 12 05:46:00 2022 +++ pkgsrc/security/gnupg2/distinfo Wed Aug 31 09:42:12 2022 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.75 2022/07/12 05:46:00 adam Exp $ +$NetBSD: distinfo,v 1.76 2022/08/31 09:42:12 adam Exp $ -BLAKE2s (gnupg-2.2.36.tar.bz2) = a5a5505ea8620649b5a2e7dfe8f4b12ebc06bd206d3502fad79cac6f8170245b -SHA512 (gnupg-2.2.36.tar.bz2) = 2d14000a0e8b36688d5e89372a1ef5f8a526b2724715377323d1f9abd23122aa9d0ab2c0988063c397f969afefbf205aedb7205915fd751c539336e680d8462a -Size (gnupg-2.2.36.tar.bz2) = 7273805 bytes +BLAKE2s (gnupg-2.2.37.tar.bz2) = 66d5738a47606090cf5adfe9616cdcf30b5d3e2924e80feb0dc8d9c84e0e7464 +SHA512 (gnupg-2.2.37.tar.bz2) = b56c47002948fd28fc9d5c23b46f5522e4210ed61c17f491c3b3fab5fab8893da33b1f8ff55a3bbef6367ff92b10c141c1f24d8350c37a0e756d2bdfbe86d7be +Size (gnupg-2.2.37.tar.bz2) = 7285172 bytes SHA1 (patch-common_sysutils.c) = 569c12e21172c1521284922244b2f4f361c945d6 --_----------=_166193893393670--