pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security



Module Name:    pkgsrc
Committed By:   adam
Date:           Sun Oct 18 18:45:03 UTC 2020

Modified Files:
        pkgsrc/security/py-acme: distinfo
        pkgsrc/security/py-certbot: Makefile Makefile.common PLIST distinfo

Log Message:
py-acme py-certbot: updated to 1.9.0

Certbot 1.9.0

Added

--preconfigured-renewal flag, for packager use only.
See the packaging guide.

Changed

certbot-auto was deprecated on all systems except for those based on Debian or RHEL.
Update the packaging instructions to promote usage of python -m pytest to test Certbot
instead of the deprecated python setup.py test setuptools approach.
Reduced CLI logging when reloading nginx, if it is not running.
Reduced CLI logging when handling some kinds of errors.

Fixed

Fixed server_name case-sensitivity in the nginx plugin.
The minimum version of the acme library required by Certbot was corrected.
In the previous release, Certbot said it required acme>=1.6.0 when it
actually required acme>=1.8.0 to properly support removing contact
information from an ACME account.
Upgraded the version of httplib2 used in our snaps and Docker images to add
support for proxy environment variables and fix the plugin for Google Cloud
DNS.


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/security/py-acme/distinfo
cvs rdiff -u -r1.27 -r1.28 pkgsrc/security/py-certbot/Makefile
cvs rdiff -u -r1.47 -r1.48 pkgsrc/security/py-certbot/Makefile.common
cvs rdiff -u -r1.26 -r1.27 pkgsrc/security/py-certbot/PLIST
cvs rdiff -u -r1.48 -r1.49 pkgsrc/security/py-certbot/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/py-acme/distinfo
diff -u pkgsrc/security/py-acme/distinfo:1.20 pkgsrc/security/py-acme/distinfo:1.21
--- pkgsrc/security/py-acme/distinfo:1.20       Wed Sep 30 09:03:45 2020
+++ pkgsrc/security/py-acme/distinfo    Sun Oct 18 18:45:03 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.20 2020/09/30 09:03:45 adam Exp $
+$NetBSD: distinfo,v 1.21 2020/10/18 18:45:03 adam Exp $
 
-SHA1 (acme-1.8.0.tar.gz) = 340e6124d248566602254c58fa39cce829b52bc5
-RMD160 (acme-1.8.0.tar.gz) = 5c4fbcf8c6f9bfa7e64f871f3d0f3283b351dfd2
-SHA512 (acme-1.8.0.tar.gz) = b6e9d8d1c5fa6a0e1cb6eb327adffe79348ca6ef3c15d869a89b20ff3330992928d1edf5dbacb2420da4ebc8148d492e345a81c1dca044c93443eb8b4700ce89
-Size (acme-1.8.0.tar.gz) = 91408 bytes
+SHA1 (acme-1.9.0.tar.gz) = 8c18d57197f729428c07fdf8092f8951205323a4
+RMD160 (acme-1.9.0.tar.gz) = 1f32218fede8b8fc5dbf474d251acac55c105418
+SHA512 (acme-1.9.0.tar.gz) = b698c264b45d61429d5af04c42abf6df7743baf1241eccb80394498e8115656867f94dd96fdbe0536e1e6774566029f69b523a947700b1da58db012c3aad6e41
+Size (acme-1.9.0.tar.gz) = 91132 bytes

Index: pkgsrc/security/py-certbot/Makefile
diff -u pkgsrc/security/py-certbot/Makefile:1.27 pkgsrc/security/py-certbot/Makefile:1.28
--- pkgsrc/security/py-certbot/Makefile:1.27    Wed Sep 30 09:03:45 2020
+++ pkgsrc/security/py-certbot/Makefile Sun Oct 18 18:45:03 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2020/09/30 09:03:45 adam Exp $
+# $NetBSD: Makefile,v 1.28 2020/10/18 18:45:03 adam Exp $
 
 .include "../../security/py-certbot/Makefile.common"
 
@@ -7,7 +7,7 @@ MASTER_SITES=   ${MASTER_SITE_PYPI:=c/cert
 
 COMMENT=       Client for the Let's Encrypt CA
 
-DEPENDS+=      ${PYPKGPREFIX}-acme>=1.6.0:../../security/py-acme
+DEPENDS+=      ${PYPKGPREFIX}-acme>=1.8.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-configargparse>=0.9.3:../../devel/py-configargparse
 DEPENDS+=      ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj
 DEPENDS+=      ${PYPKGPREFIX}-cryptography>=1.2.3:../../security/py-cryptography

Index: pkgsrc/security/py-certbot/Makefile.common
diff -u pkgsrc/security/py-certbot/Makefile.common:1.47 pkgsrc/security/py-certbot/Makefile.common:1.48
--- pkgsrc/security/py-certbot/Makefile.common:1.47     Wed Sep 30 09:03:45 2020
+++ pkgsrc/security/py-certbot/Makefile.common  Sun Oct 18 18:45:03 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.47 2020/09/30 09:03:45 adam Exp $
+# $NetBSD: Makefile.common,v 1.48 2020/10/18 18:45:03 adam Exp $
 # used by security/py-acme/Makefile
 # used by security/py-certbot/Makefile
 # used by security/py-certbot-apache/Makefile
@@ -16,7 +16,7 @@
 # used by security/py-certbot-dns-sakuracloud/Makefile
 # used by security/py-certbot-nginx/Makefile
 
-CERTBOT_VERSION=       1.8.0
+CERTBOT_VERSION=       1.9.0
 
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES?=   security python

Index: pkgsrc/security/py-certbot/PLIST
diff -u pkgsrc/security/py-certbot/PLIST:1.26 pkgsrc/security/py-certbot/PLIST:1.27
--- pkgsrc/security/py-certbot/PLIST:1.26       Fri Jul 10 10:24:21 2020
+++ pkgsrc/security/py-certbot/PLIST    Sun Oct 18 18:45:03 2020
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.26 2020/07/10 10:24:21 adam Exp $
+@comment $NetBSD: PLIST,v 1.27 2020/10/18 18:45:03 adam Exp $
 bin/certbot-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -114,6 +114,9 @@ ${PYSITELIB}/certbot/_internal/renewal.p
 ${PYSITELIB}/certbot/_internal/reporter.py
 ${PYSITELIB}/certbot/_internal/reporter.pyc
 ${PYSITELIB}/certbot/_internal/reporter.pyo
+${PYSITELIB}/certbot/_internal/snap_config.py
+${PYSITELIB}/certbot/_internal/snap_config.pyc
+${PYSITELIB}/certbot/_internal/snap_config.pyo
 ${PYSITELIB}/certbot/_internal/storage.py
 ${PYSITELIB}/certbot/_internal/storage.pyc
 ${PYSITELIB}/certbot/_internal/storage.pyo

Index: pkgsrc/security/py-certbot/distinfo
diff -u pkgsrc/security/py-certbot/distinfo:1.48 pkgsrc/security/py-certbot/distinfo:1.49
--- pkgsrc/security/py-certbot/distinfo:1.48    Wed Sep 30 09:03:45 2020
+++ pkgsrc/security/py-certbot/distinfo Sun Oct 18 18:45:03 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.48 2020/09/30 09:03:45 adam Exp $
+$NetBSD: distinfo,v 1.49 2020/10/18 18:45:03 adam Exp $
 
-SHA1 (certbot-1.8.0.tar.gz) = 9a335977efd4d21ed22c90bf8871d175d9dc1e39
-RMD160 (certbot-1.8.0.tar.gz) = ee520bb3544894fffef66ab9942a10bba7dfbb7e
-SHA512 (certbot-1.8.0.tar.gz) = 9eea08cb0ade7c29e566a2495659f57d013f677baf7f8b057160cb73871d99970933e7da54aab97865833e24bffc9b76d1af2c654dd5117f81eac239bce7b4c7
-Size (certbot-1.8.0.tar.gz) = 380607 bytes
+SHA1 (certbot-1.9.0.tar.gz) = 63f68daf7f7402c53d83d58f2a2fd4b3394fc178
+RMD160 (certbot-1.9.0.tar.gz) = 4953f5ceb17a03891cb8d70e659ed957d7e3a634
+SHA512 (certbot-1.9.0.tar.gz) = cc241db9877fa53ab658def2fd9b869a2e3deba2b65f4ba0c4eb7695d7daee32360c5f850c387557b81273956f886ff259db330d31af4913170ddb89e0a82f2e
+Size (certbot-1.9.0.tar.gz) = 382379 bytes



Home | Main Index | Thread Index | Old Index