Received: by mail.netbsd.org (Postfix, from userid 605) id A568184DFD; Sat, 9 Dec 2017 16:39:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0590F84D8D for ; Sat, 9 Dec 2017 16:39:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id wy3JUgt_4OEg for ; Sat, 9 Dec 2017 16:39:04 +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 22CEC84CDF for ; Sat, 9 Dec 2017 16:39:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1942AFB40; Sat, 9 Dec 2017 16:39:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1512837544140110" MIME-Version: 1.0 Date: Sat, 9 Dec 2017 16:39:04 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/security To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20171209163904.1942AFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1512837544140110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Sat Dec 9 16:39:04 UTC 2017 Modified Files: pkgsrc/security/py-acme: Makefile pkgsrc/security/py-certbot: Makefile Makefile.common distinfo Log Message: Update security/py-{acme,certbot} to 0.20.0. 0.20.0 - 2017-12-06 - Certbot's ACME library now recognizes URL fields in challenge objects in preparation for Let's Encrypt's new ACME endpoint. - The Apache plugin now parses some distro specific Apache configuration files on non-Debian systems allowing it to get a clearer picture on the running configuration. - Certbot better reports network failures by removing information about connection retries from the error output. - An unnecessary question when using Certbot's webroot plugin interactively has been removed. - Certbot's NGINX plugin no longer sometimes incorrectly reports that it was unable to deploy a HTTP->HTTPS redirect when requesting Certbot to enable a redirect for multiple domains. - Problems where the Apache plugin was failing to find directives and duplicating existing directives on openSUSE have been resolved. - An issue running the test shipped with Certbot and some our DNS plugins with older versions of mock have been resolved. - On some systems, users reported strangely interleaved output depending on when stdout and stderr were flushed. 0.19.0 - 2017-10-04 - Certbot now has renewal hook directories where executable files can be placed for Certbot to run with the renew subcommand. - After revoking a certificate with the revoke subcommand, Certbot will offer to delete the lineage associated with the certificate. - When using Certbot's Google Cloud DNS plugin on Google Compute Engine, you no longer have to provide a credential file to Certbot if you have configured sufficient permissions for the instance which Certbot can automatically obtain using Google's metadata service. - When deleting certificates interactively using the delete subcommand, Certbot will now allow you to select multiple lineages to be deleted at once. - Certbot's Apache plugin no longer always parses Apache's sites-available on Debian based systems and instead only parses virtual hosts included in your Apache configuration. - The plugins subcommand can now be run without root access. - certbot-auto now includes a timeout when updating itself so it no longer hangs indefinitely when it is unable to connect to the external server. - An issue where Certbot's Apache plugin would sometimes fail to deploy a certificate on Debian based systems if mod_ssl wasn't already enabled has been resolved. - A bug in our Docker image where the certificates subcommand could not report if certificates maintained by Certbot had been revoked has been fixed. - Certbot's RFC 2136 DNS plugin (for use with software like BIND) now properly performs DNS challenges when the domain being verified contains a CNAME record. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/py-acme/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/security/py-certbot/Makefile.common \ pkgsrc/security/py-certbot/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1512837544140110 Content-Disposition: inline Content-Length: 3746 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-acme/Makefile diff -u pkgsrc/security/py-acme/Makefile:1.7 pkgsrc/security/py-acme/Makefile:1.8 --- pkgsrc/security/py-acme/Makefile:1.7 Thu May 11 08:23:35 2017 +++ pkgsrc/security/py-acme/Makefile Sat Dec 9 16:39:03 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2017/05/11 08:23:35 fhajny Exp $ +# $NetBSD: Makefile,v 1.8 2017/12/09 16:39:03 fhajny Exp $ PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/certbot/acme/} CATEGORIES= security @@ -15,7 +15,7 @@ DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../ DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz DEPENDS+= ${PYPKGPREFIX}-requests>2.10:../../devel/py-requests DEPENDS+= ${PYPKGPREFIX}-rfc3339-[0-9]*:../../time/py-rfc3339 -DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six +DEPENDS+= ${PYPKGPREFIX}-six>1.9.0:../../lang/py-six EGG_NAME= ${DISTNAME:S/certbot/acme/} Index: pkgsrc/security/py-certbot/Makefile diff -u pkgsrc/security/py-certbot/Makefile:1.5 pkgsrc/security/py-certbot/Makefile:1.6 --- pkgsrc/security/py-certbot/Makefile:1.5 Thu May 11 08:23:35 2017 +++ pkgsrc/security/py-certbot/Makefile Sat Dec 9 16:39:03 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2017/05/11 08:23:35 fhajny Exp $ +# $NetBSD: Makefile,v 1.6 2017/12/09 16:39:03 fhajny Exp $ PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= security @@ -14,7 +14,7 @@ EGG_NAME= ${DISTNAME} DEPENDS+= ${PYPKGPREFIX}-acme-${PKGVERSION_NOREV}{nb*,}:../../security/py-acme DEPENDS+= ${PYPKGPREFIX}-configargparse>=0.9.3:../../devel/py-configargparse DEPENDS+= ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj -DEPENDS+= ${PYPKGPREFIX}-cryptography>=0.7:../../security/py-cryptography +DEPENDS+= ${PYPKGPREFIX}-cryptography>=1.2:../../security/py-cryptography DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock DEPENDS+= ${PYPKGPREFIX}-OpenSSL-[0-9]*:../../security/py-OpenSSL DEPENDS+= ${PYPKGPREFIX}-parsedatetime>=2.0:../../time/py-parsedatetime Index: pkgsrc/security/py-certbot/Makefile.common diff -u pkgsrc/security/py-certbot/Makefile.common:1.17 pkgsrc/security/py-certbot/Makefile.common:1.18 --- pkgsrc/security/py-certbot/Makefile.common:1.17 Wed Sep 27 12:44:39 2017 +++ pkgsrc/security/py-certbot/Makefile.common Sat Dec 9 16:39:03 2017 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.17 2017/09/27 12:44:39 fhajny Exp $ +# $NetBSD: Makefile.common,v 1.18 2017/12/09 16:39:03 fhajny Exp $ # # used by security/py-acme/Makefile # used by security/py-certbot/Makefile -DISTNAME= certbot-0.18.2 +DISTNAME= certbot-0.20.0 MASTER_SITES= ${MASTER_SITE_GITHUB:=certbot/} HOMEPAGE= https://letsencrypt.org/ Index: pkgsrc/security/py-certbot/distinfo diff -u pkgsrc/security/py-certbot/distinfo:1.17 pkgsrc/security/py-certbot/distinfo:1.18 --- pkgsrc/security/py-certbot/distinfo:1.17 Wed Sep 27 12:44:39 2017 +++ pkgsrc/security/py-certbot/distinfo Sat Dec 9 16:39:03 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2017/09/27 12:44:39 fhajny Exp $ +$NetBSD: distinfo,v 1.18 2017/12/09 16:39:03 fhajny Exp $ -SHA1 (certbot-0.18.2.tar.gz) = 6e332c4387ede6efaae4a6c0b71e8c6be23224d8 -RMD160 (certbot-0.18.2.tar.gz) = fd789656aee08b435b99ddf1046fc250b1c19f77 -SHA512 (certbot-0.18.2.tar.gz) = 30dea063cf8d4bd714a40c1a82a7f4aab51e3a7d4de0d5f9a923f95badb2881562562c4a198da6a4c3cd1db7f9e2d124c2def70f3a245faca0040438586bf6a4 -Size (certbot-0.18.2.tar.gz) = 1044019 bytes +SHA1 (certbot-0.20.0.tar.gz) = dc61e4acdf47941997f8904e0288a219136fac6c +RMD160 (certbot-0.20.0.tar.gz) = b4b776d559c6ac0d36fbed606d1d52c829462b39 +SHA512 (certbot-0.20.0.tar.gz) = 92c128bc955a576a1eb568d39b3a5568f9bd841acefaa455d716ce5036312d0ad67b3dcfcf960b15abdd39c1f34f82ffe2ebca0722628c5c804fc5472a6c0546 +Size (certbot-0.20.0.tar.gz) = 1108139 bytes --_----------=_1512837544140110--