Date: Thu, 9 Jul 2020 13:27:13 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541749 - in head/security/gnupg: . files Message-ID: <202007091327.069DRDcB062899@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adamw Date: Thu Jul 9 13:27:13 2020 New Revision: 541749 URL: https://svnweb.freebsd.org/changeset/ports/541749 Log: gnupg: Update to 2.2.21 * gpg: Improve symmetric decryption speed by about 25%. See commit 144b95cc9d. * gpg: Support decryption of AEAD encrypted data packets. * gpg: Add option --no-include-key-block. [#4856] * gpg: Allow for extra padding in ECDH. [#4908] * gpg: Only a single pinentry is shown for symmetric encryption if the pinentry supports this. [#4971] * gpg: Print a note if no keys are given to --delete-key. [#4959] * gpg,gpgsm: The ridiculous passphrase quality bar is not anymore shown. [#2103] * gpgsm: Certificates without a CRL distribution point are now considered valid without looking up a CRL. The new option --enable-issuer-based-crl-check can be used to revert to the former behaviour. * gpgsm: Support rsaPSS signature verification. [#4538] * gpgsm: Unless CRL checking is disabled lookup a missing issuer certificate using the certificate's authorityInfoAccess. [#4898] * gpgsm: Print the certificate's serial number also in decimal notation. * gpgsm: Fix possible NULL-deref in messages of --gen-key. [#4895] * scd: Support the CardOS 5 based D-Trust Card 3.1. * dirmngr: Allow http URLs with "LOOKUP --url". * wkd: Take name of sendmail from configure. Fixes an OpenBSD specific bug. [#4886] Release-info: https://dev.gnupg.org/T4897 Added: head/security/gnupg/files/patch-doc_Makefile.in (contents, props changed) Modified: head/security/gnupg/Makefile head/security/gnupg/distinfo Modified: head/security/gnupg/Makefile ============================================================================== --- head/security/gnupg/Makefile Thu Jul 9 12:52:27 2020 (r541748) +++ head/security/gnupg/Makefile Thu Jul 9 13:27:13 2020 (r541749) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnupg -PORTVERSION= 2.2.20 +PORTVERSION= 2.2.21 CATEGORIES= security MASTER_SITES= GNUPG Modified: head/security/gnupg/distinfo ============================================================================== --- head/security/gnupg/distinfo Thu Jul 9 12:52:27 2020 (r541748) +++ head/security/gnupg/distinfo Thu Jul 9 13:27:13 2020 (r541749) @@ -1,3 +1,3 @@ -TIMESTAMP = 1584729314 -SHA256 (gnupg-2.2.20.tar.bz2) = 04a7c9d48b74c399168ee8270e548588ddbe52218c337703d7f06373d326ca30 -SIZE (gnupg-2.2.20.tar.bz2) = 6786913 +TIMESTAMP = 1594295049 +SHA256 (gnupg-2.2.21.tar.bz2) = 61e83278fb5fa7336658a8b73ab26f379d41275bb1c7c6e694dd9f9a6e8e76ec +SIZE (gnupg-2.2.21.tar.bz2) = 6813160 Added: head/security/gnupg/files/patch-doc_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gnupg/files/patch-doc_Makefile.in Thu Jul 9 13:27:13 2020 (r541749) @@ -0,0 +1,16 @@ +This works around a breakage introduced in 2.2.21. +Hopefully the patch can be removed for 2.2.22. + +--- doc/Makefile.in.orig 2020-07-09 13:22:35 UTC ++++ doc/Makefile.in +@@ -1235,8 +1235,8 @@ defsincdate: $(gnupg_TEXINFOS) + if test -e $(top_srcdir)/.git; then \ + (cd $(srcdir) && git log -1 --format='%ct' \ + -- $(gnupg_TEXINFOS) 2>/dev/null) >>defsincdate; \ +- elif test x"$SOURCE_DATE_EPOCH" != x; then \ +- echo "$SOURCE_DATE_EPOCH" >>defsincdate ; \ ++ elif test x"$$SOURCE_DATE_EPOCH" != x; then \ ++ echo "$$SOURCE_DATE_EPOCH" >>defsincdate ; \ + fi + + defs.inc : defsincdate Makefile mkdefsinc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007091327.069DRDcB062899>