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 Mar 10 15:23:51 UTC 2019
Modified Files:
pkgsrc/security/py-acme: Makefile distinfo
pkgsrc/security/py-certbot: Makefile PLIST distinfo
pkgsrc/security/py-certbot-apache: Makefile distinfo
pkgsrc/security/py-certbot-dns-luadns: Makefile distinfo
pkgsrc/security/py-certbot-dns-nsone: Makefile distinfo
pkgsrc/security/py-certbot-dns-ovh: Makefile distinfo
pkgsrc/security/py-certbot-dns-rfc2136: Makefile distinfo
pkgsrc/security/py-certbot-dns-route53: Makefile distinfo
pkgsrc/security/py-certbot-dns-sakuracloud: Makefile distinfo
pkgsrc/security/py-certbot-nginx: Makefile distinfo
Log Message:
py-certbot: updated to 0.32.0
Added
If possible, Certbot uses built-in support for OCSP from recent cryptography versions instead of the OpenSSL binary: as a consequence Certbot does not need the OpenSSL binary to be installed anymore
if cryptography>=2.5 is installed.
Changed
Certbot and its acme module now depend on josepy>=1.1.0 to avoid printing the warnings described at https://github.com/certbot/josepy/issues/13.
Apache plugin now respects CERTBOT_DOCS environment variable when adding command line defaults.
The running of manual plugin hooks is now always included in Certbot's log output.
Tests execution for certbot, certbot-apache and certbot-nginx packages now relies on pytest.
An ACME CA server may return a "Retry-After" HTTP header on authorization polling, as specified in the ACME protocol, to indicate when the next polling should occur. Certbot now reads this header if
set and respect its value.
The acme module avoids sending the keyAuthorization field in the JWS payload when responding to a challenge as the field is not included in the current ACME protocol. To ease the migration path for
ACME CA servers, Certbot and its acme module will first try the request without the keyAuthorization field but will temporarily retry the request with the field included if a malformed error is
received. This fallback will be removed in version 0.34.0.
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 pkgsrc/security/py-acme/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-acme/distinfo
cvs rdiff -u -r1.10 -r1.11 pkgsrc/security/py-certbot/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/security/py-certbot/PLIST
cvs rdiff -u -r1.29 -r1.30 pkgsrc/security/py-certbot/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-apache/Makefile \
pkgsrc/security/py-certbot-apache/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-dns-luadns/Makefile \
pkgsrc/security/py-certbot-dns-luadns/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-dns-nsone/Makefile \
pkgsrc/security/py-certbot-dns-nsone/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-certbot-dns-ovh/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-dns-ovh/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-rfc2136/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-dns-rfc2136/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-certbot-dns-route53/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-dns-route53/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-certbot-dns-sakuracloud/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-dns-sakuracloud/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-certbot-nginx/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-certbot-nginx/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/Makefile
diff -u pkgsrc/security/py-acme/Makefile:1.14 pkgsrc/security/py-acme/Makefile:1.15
--- pkgsrc/security/py-acme/Makefile:1.14 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-acme/Makefile Sun Mar 10 15:23:50 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.15 2019/03/10 15:23:50 adam Exp $
-DISTNAME= acme-0.31.0
+DISTNAME= acme-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=a/acme/}
@@ -10,10 +10,10 @@ HOMEPAGE= https://github.com/certbot/cer
COMMENT= ACME protocol implementation in Python
LICENSE= apache-2.0
+DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.15:../../security/py-OpenSSL
DEPENDS+= ${PYPKGPREFIX}-cryptography>=1.2.3:../../security/py-cryptography
-DEPENDS+= ${PYPKGPREFIX}-josepy>=1.0.0:../../security/py-josepy
+DEPENDS+= ${PYPKGPREFIX}-josepy>=1.1.0:../../security/py-josepy
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
-DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=0.15:../../security/py-OpenSSL
DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
DEPENDS+= ${PYPKGPREFIX}-requests>2.10:../../devel/py-requests
DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.3.0:../../devel/py-requests-toolbelt
Index: pkgsrc/security/py-acme/distinfo
diff -u pkgsrc/security/py-acme/distinfo:1.1 pkgsrc/security/py-acme/distinfo:1.2
--- pkgsrc/security/py-acme/distinfo:1.1 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-acme/distinfo Sun Mar 10 15:23:50 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:50 adam Exp $
-SHA1 (acme-0.31.0.tar.gz) = 4927de1b40aad8fabf409843f76b68a605548a38
-RMD160 (acme-0.31.0.tar.gz) = 61f3599a114ba4a8a8d33e7ecee20f59c45321ae
-SHA512 (acme-0.31.0.tar.gz) = e022cfd0b12b080e5ebb7b5699f0fc0f29102d10cdb399125d296b3dbe25736e3689b4c9894faa0c9c8c918f82d9ba3ef39adfcf799201dcb2dc73e071d4fa3e
-Size (acme-0.31.0.tar.gz) = 82806 bytes
+SHA1 (acme-0.32.0.tar.gz) = 567e41a30950ed19e0c825f51a1d1c7362583612
+RMD160 (acme-0.32.0.tar.gz) = 1280c615850376a2ce461e4b8f0313e7a4788149
+SHA512 (acme-0.32.0.tar.gz) = 6d2b248433c5a29370ff47218a4ac6104acc5b84620c56b553c3483955aac228e1bb763ec04d7fcdaf8304d8da2eef479bc1232cbad27121c10f86276aed7e94
+Size (acme-0.32.0.tar.gz) = 86489 bytes
Index: pkgsrc/security/py-certbot/Makefile
diff -u pkgsrc/security/py-certbot/Makefile:1.10 pkgsrc/security/py-certbot/Makefile:1.11
--- pkgsrc/security/py-certbot/Makefile:1.10 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot/Makefile Sun Mar 10 15:23:50 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.11 2019/03/10 15:23:50 adam Exp $
-DISTNAME= certbot-0.31.0
+DISTNAME= certbot-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot/}
@@ -16,7 +16,7 @@ DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:..
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
-DEPENDS+= ${PYPKGPREFIX}-josepy-[0-9]*:../../security/py-josepy
+DEPENDS+= ${PYPKGPREFIX}-josepy>=1.1.0:../../security/py-josepy
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-parsedatetime>=2.0:../../time/py-parsedatetime
DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
Index: pkgsrc/security/py-certbot/PLIST
diff -u pkgsrc/security/py-certbot/PLIST:1.15 pkgsrc/security/py-certbot/PLIST:1.16
--- pkgsrc/security/py-certbot/PLIST:1.15 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot/PLIST Sun Mar 10 15:23:51 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2019/02/12 12:56:31 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2019/03/10 15:23:51 adam Exp $
bin/certbot-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -7,275 +7,267 @@ ${PYSITELIB}/${EGG_INFODIR}/entry_points
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/certbot/__init__.py
-${PYSITELIB}/certbot/__init__.pyo
${PYSITELIB}/certbot/__init__.pyc
-${PYSITELIB}/certbot/account.pyo
-${PYSITELIB}/certbot/account.pyc
-${PYSITELIB}/certbot/achallenges.pyo
-${PYSITELIB}/certbot/achallenges.pyc
-${PYSITELIB}/certbot/auth_handler.pyo
-${PYSITELIB}/certbot/auth_handler.pyc
-${PYSITELIB}/certbot/cert_manager.pyo
-${PYSITELIB}/certbot/cert_manager.pyc
-${PYSITELIB}/certbot/cli.pyo
-${PYSITELIB}/certbot/cli.pyc
-${PYSITELIB}/certbot/client.pyo
-${PYSITELIB}/certbot/client.pyc
-${PYSITELIB}/certbot/compat.pyo
-${PYSITELIB}/certbot/compat.pyc
-${PYSITELIB}/certbot/configuration.pyo
-${PYSITELIB}/certbot/configuration.pyc
-${PYSITELIB}/certbot/constants.pyo
-${PYSITELIB}/certbot/constants.pyc
-${PYSITELIB}/certbot/crypto_util.pyo
-${PYSITELIB}/certbot/crypto_util.pyc
-${PYSITELIB}/certbot/eff.pyo
-${PYSITELIB}/certbot/eff.pyc
-${PYSITELIB}/certbot/error_handler.pyo
-${PYSITELIB}/certbot/error_handler.pyc
-${PYSITELIB}/certbot/errors.pyo
-${PYSITELIB}/certbot/errors.pyc
-${PYSITELIB}/certbot/hooks.pyo
-${PYSITELIB}/certbot/hooks.pyc
-${PYSITELIB}/certbot/interfaces.pyo
-${PYSITELIB}/certbot/interfaces.pyc
-${PYSITELIB}/certbot/lock.pyo
-${PYSITELIB}/certbot/lock.pyc
-${PYSITELIB}/certbot/log.pyo
-${PYSITELIB}/certbot/log.pyc
-${PYSITELIB}/certbot/main.pyo
-${PYSITELIB}/certbot/main.pyc
-${PYSITELIB}/certbot/notify.pyo
-${PYSITELIB}/certbot/notify.pyc
-${PYSITELIB}/certbot/ocsp.pyo
-${PYSITELIB}/certbot/ocsp.pyc
-${PYSITELIB}/certbot/renewal.pyo
-${PYSITELIB}/certbot/renewal.pyc
-${PYSITELIB}/certbot/reporter.pyo
-${PYSITELIB}/certbot/reporter.pyc
-${PYSITELIB}/certbot/reverter.pyo
-${PYSITELIB}/certbot/reverter.pyc
-${PYSITELIB}/certbot/storage.pyo
-${PYSITELIB}/certbot/storage.pyc
-${PYSITELIB}/certbot/updater.pyo
-${PYSITELIB}/certbot/updater.pyc
-${PYSITELIB}/certbot/util.pyo
-${PYSITELIB}/certbot/util.pyc
+${PYSITELIB}/certbot/__init__.pyo
${PYSITELIB}/certbot/account.py
+${PYSITELIB}/certbot/account.pyc
+${PYSITELIB}/certbot/account.pyo
${PYSITELIB}/certbot/achallenges.py
+${PYSITELIB}/certbot/achallenges.pyc
+${PYSITELIB}/certbot/achallenges.pyo
${PYSITELIB}/certbot/auth_handler.py
+${PYSITELIB}/certbot/auth_handler.pyc
+${PYSITELIB}/certbot/auth_handler.pyo
${PYSITELIB}/certbot/cert_manager.py
+${PYSITELIB}/certbot/cert_manager.pyc
+${PYSITELIB}/certbot/cert_manager.pyo
${PYSITELIB}/certbot/cli.py
+${PYSITELIB}/certbot/cli.pyc
+${PYSITELIB}/certbot/cli.pyo
${PYSITELIB}/certbot/client.py
+${PYSITELIB}/certbot/client.pyc
+${PYSITELIB}/certbot/client.pyo
${PYSITELIB}/certbot/compat.py
+${PYSITELIB}/certbot/compat.pyc
+${PYSITELIB}/certbot/compat.pyo
${PYSITELIB}/certbot/configuration.py
+${PYSITELIB}/certbot/configuration.pyc
+${PYSITELIB}/certbot/configuration.pyo
${PYSITELIB}/certbot/constants.py
+${PYSITELIB}/certbot/constants.pyc
+${PYSITELIB}/certbot/constants.pyo
${PYSITELIB}/certbot/crypto_util.py
+${PYSITELIB}/certbot/crypto_util.pyc
+${PYSITELIB}/certbot/crypto_util.pyo
${PYSITELIB}/certbot/display/__init__.py
-${PYSITELIB}/certbot/display/__init__.pyo
${PYSITELIB}/certbot/display/__init__.pyc
-${PYSITELIB}/certbot/display/completer.pyo
-${PYSITELIB}/certbot/display/completer.pyc
-${PYSITELIB}/certbot/display/dummy_readline.pyo
-${PYSITELIB}/certbot/display/dummy_readline.pyc
-${PYSITELIB}/certbot/display/enhancements.pyo
-${PYSITELIB}/certbot/display/enhancements.pyc
-${PYSITELIB}/certbot/display/ops.pyo
-${PYSITELIB}/certbot/display/ops.pyc
-${PYSITELIB}/certbot/display/util.pyo
-${PYSITELIB}/certbot/display/util.pyc
+${PYSITELIB}/certbot/display/__init__.pyo
${PYSITELIB}/certbot/display/completer.py
+${PYSITELIB}/certbot/display/completer.pyc
+${PYSITELIB}/certbot/display/completer.pyo
${PYSITELIB}/certbot/display/dummy_readline.py
+${PYSITELIB}/certbot/display/dummy_readline.pyc
+${PYSITELIB}/certbot/display/dummy_readline.pyo
${PYSITELIB}/certbot/display/enhancements.py
+${PYSITELIB}/certbot/display/enhancements.pyc
+${PYSITELIB}/certbot/display/enhancements.pyo
${PYSITELIB}/certbot/display/ops.py
+${PYSITELIB}/certbot/display/ops.pyc
+${PYSITELIB}/certbot/display/ops.pyo
${PYSITELIB}/certbot/display/util.py
+${PYSITELIB}/certbot/display/util.pyc
+${PYSITELIB}/certbot/display/util.pyo
${PYSITELIB}/certbot/eff.py
+${PYSITELIB}/certbot/eff.pyc
+${PYSITELIB}/certbot/eff.pyo
${PYSITELIB}/certbot/error_handler.py
+${PYSITELIB}/certbot/error_handler.pyc
+${PYSITELIB}/certbot/error_handler.pyo
${PYSITELIB}/certbot/errors.py
+${PYSITELIB}/certbot/errors.pyc
+${PYSITELIB}/certbot/errors.pyo
${PYSITELIB}/certbot/hooks.py
+${PYSITELIB}/certbot/hooks.pyc
+${PYSITELIB}/certbot/hooks.pyo
${PYSITELIB}/certbot/interfaces.py
+${PYSITELIB}/certbot/interfaces.pyc
+${PYSITELIB}/certbot/interfaces.pyo
${PYSITELIB}/certbot/lock.py
+${PYSITELIB}/certbot/lock.pyc
+${PYSITELIB}/certbot/lock.pyo
${PYSITELIB}/certbot/log.py
+${PYSITELIB}/certbot/log.pyc
+${PYSITELIB}/certbot/log.pyo
${PYSITELIB}/certbot/main.py
+${PYSITELIB}/certbot/main.pyc
+${PYSITELIB}/certbot/main.pyo
${PYSITELIB}/certbot/notify.py
+${PYSITELIB}/certbot/notify.pyc
+${PYSITELIB}/certbot/notify.pyo
${PYSITELIB}/certbot/ocsp.py
+${PYSITELIB}/certbot/ocsp.pyc
+${PYSITELIB}/certbot/ocsp.pyo
${PYSITELIB}/certbot/plugins/__init__.py
-${PYSITELIB}/certbot/plugins/__init__.pyo
${PYSITELIB}/certbot/plugins/__init__.pyc
-${PYSITELIB}/certbot/plugins/common.pyo
-${PYSITELIB}/certbot/plugins/common.pyc
-${PYSITELIB}/certbot/plugins/common_test.pyo
-${PYSITELIB}/certbot/plugins/common_test.pyc
-${PYSITELIB}/certbot/plugins/disco.pyo
-${PYSITELIB}/certbot/plugins/disco.pyc
-${PYSITELIB}/certbot/plugins/disco_test.pyo
-${PYSITELIB}/certbot/plugins/disco_test.pyc
-${PYSITELIB}/certbot/plugins/dns_common.pyo
-${PYSITELIB}/certbot/plugins/dns_common.pyc
-${PYSITELIB}/certbot/plugins/dns_common_lexicon.pyo
-${PYSITELIB}/certbot/plugins/dns_common_lexicon.pyc
-${PYSITELIB}/certbot/plugins/dns_common_lexicon_test.pyo
-${PYSITELIB}/certbot/plugins/dns_common_lexicon_test.pyc
-${PYSITELIB}/certbot/plugins/dns_common_test.pyo
-${PYSITELIB}/certbot/plugins/dns_common_test.pyc
-${PYSITELIB}/certbot/plugins/dns_test_common.pyo
-${PYSITELIB}/certbot/plugins/dns_test_common.pyc
-${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.pyo
-${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.pyc
-${PYSITELIB}/certbot/plugins/enhancements.pyo
-${PYSITELIB}/certbot/plugins/enhancements.pyc
-${PYSITELIB}/certbot/plugins/enhancements_test.pyo
-${PYSITELIB}/certbot/plugins/enhancements_test.pyc
-${PYSITELIB}/certbot/plugins/manual.pyo
-${PYSITELIB}/certbot/plugins/manual.pyc
-${PYSITELIB}/certbot/plugins/manual_test.pyo
-${PYSITELIB}/certbot/plugins/manual_test.pyc
-${PYSITELIB}/certbot/plugins/null.pyo
-${PYSITELIB}/certbot/plugins/null.pyc
-${PYSITELIB}/certbot/plugins/null_test.pyo
-${PYSITELIB}/certbot/plugins/null_test.pyc
-${PYSITELIB}/certbot/plugins/selection.pyo
-${PYSITELIB}/certbot/plugins/selection.pyc
-${PYSITELIB}/certbot/plugins/selection_test.pyo
-${PYSITELIB}/certbot/plugins/selection_test.pyc
-${PYSITELIB}/certbot/plugins/standalone.pyo
-${PYSITELIB}/certbot/plugins/standalone.pyc
-${PYSITELIB}/certbot/plugins/standalone_test.pyo
-${PYSITELIB}/certbot/plugins/standalone_test.pyc
-${PYSITELIB}/certbot/plugins/storage.pyo
-${PYSITELIB}/certbot/plugins/storage.pyc
-${PYSITELIB}/certbot/plugins/storage_test.pyo
-${PYSITELIB}/certbot/plugins/storage_test.pyc
-${PYSITELIB}/certbot/plugins/util.pyo
-${PYSITELIB}/certbot/plugins/util.pyc
-${PYSITELIB}/certbot/plugins/util_test.pyo
-${PYSITELIB}/certbot/plugins/util_test.pyc
-${PYSITELIB}/certbot/plugins/webroot.pyo
-${PYSITELIB}/certbot/plugins/webroot.pyc
-${PYSITELIB}/certbot/plugins/webroot_test.pyo
-${PYSITELIB}/certbot/plugins/webroot_test.pyc
+${PYSITELIB}/certbot/plugins/__init__.pyo
${PYSITELIB}/certbot/plugins/common.py
+${PYSITELIB}/certbot/plugins/common.pyc
+${PYSITELIB}/certbot/plugins/common.pyo
${PYSITELIB}/certbot/plugins/common_test.py
+${PYSITELIB}/certbot/plugins/common_test.pyc
+${PYSITELIB}/certbot/plugins/common_test.pyo
${PYSITELIB}/certbot/plugins/disco.py
+${PYSITELIB}/certbot/plugins/disco.pyc
+${PYSITELIB}/certbot/plugins/disco.pyo
${PYSITELIB}/certbot/plugins/disco_test.py
+${PYSITELIB}/certbot/plugins/disco_test.pyc
+${PYSITELIB}/certbot/plugins/disco_test.pyo
${PYSITELIB}/certbot/plugins/dns_common.py
+${PYSITELIB}/certbot/plugins/dns_common.pyc
+${PYSITELIB}/certbot/plugins/dns_common.pyo
${PYSITELIB}/certbot/plugins/dns_common_lexicon.py
+${PYSITELIB}/certbot/plugins/dns_common_lexicon.pyc
+${PYSITELIB}/certbot/plugins/dns_common_lexicon.pyo
${PYSITELIB}/certbot/plugins/dns_common_lexicon_test.py
+${PYSITELIB}/certbot/plugins/dns_common_lexicon_test.pyc
+${PYSITELIB}/certbot/plugins/dns_common_lexicon_test.pyo
${PYSITELIB}/certbot/plugins/dns_common_test.py
+${PYSITELIB}/certbot/plugins/dns_common_test.pyc
+${PYSITELIB}/certbot/plugins/dns_common_test.pyo
${PYSITELIB}/certbot/plugins/dns_test_common.py
+${PYSITELIB}/certbot/plugins/dns_test_common.pyc
+${PYSITELIB}/certbot/plugins/dns_test_common.pyo
${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.py
+${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.pyc
+${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.pyo
${PYSITELIB}/certbot/plugins/enhancements.py
+${PYSITELIB}/certbot/plugins/enhancements.pyc
+${PYSITELIB}/certbot/plugins/enhancements.pyo
${PYSITELIB}/certbot/plugins/enhancements_test.py
+${PYSITELIB}/certbot/plugins/enhancements_test.pyc
+${PYSITELIB}/certbot/plugins/enhancements_test.pyo
${PYSITELIB}/certbot/plugins/manual.py
+${PYSITELIB}/certbot/plugins/manual.pyc
+${PYSITELIB}/certbot/plugins/manual.pyo
${PYSITELIB}/certbot/plugins/manual_test.py
+${PYSITELIB}/certbot/plugins/manual_test.pyc
+${PYSITELIB}/certbot/plugins/manual_test.pyo
${PYSITELIB}/certbot/plugins/null.py
+${PYSITELIB}/certbot/plugins/null.pyc
+${PYSITELIB}/certbot/plugins/null.pyo
${PYSITELIB}/certbot/plugins/null_test.py
+${PYSITELIB}/certbot/plugins/null_test.pyc
+${PYSITELIB}/certbot/plugins/null_test.pyo
${PYSITELIB}/certbot/plugins/selection.py
+${PYSITELIB}/certbot/plugins/selection.pyc
+${PYSITELIB}/certbot/plugins/selection.pyo
${PYSITELIB}/certbot/plugins/selection_test.py
+${PYSITELIB}/certbot/plugins/selection_test.pyc
+${PYSITELIB}/certbot/plugins/selection_test.pyo
${PYSITELIB}/certbot/plugins/standalone.py
+${PYSITELIB}/certbot/plugins/standalone.pyc
+${PYSITELIB}/certbot/plugins/standalone.pyo
${PYSITELIB}/certbot/plugins/standalone_test.py
+${PYSITELIB}/certbot/plugins/standalone_test.pyc
+${PYSITELIB}/certbot/plugins/standalone_test.pyo
${PYSITELIB}/certbot/plugins/storage.py
+${PYSITELIB}/certbot/plugins/storage.pyc
+${PYSITELIB}/certbot/plugins/storage.pyo
${PYSITELIB}/certbot/plugins/storage_test.py
+${PYSITELIB}/certbot/plugins/storage_test.pyc
+${PYSITELIB}/certbot/plugins/storage_test.pyo
${PYSITELIB}/certbot/plugins/util.py
+${PYSITELIB}/certbot/plugins/util.pyc
+${PYSITELIB}/certbot/plugins/util.pyo
${PYSITELIB}/certbot/plugins/util_test.py
+${PYSITELIB}/certbot/plugins/util_test.pyc
+${PYSITELIB}/certbot/plugins/util_test.pyo
${PYSITELIB}/certbot/plugins/webroot.py
+${PYSITELIB}/certbot/plugins/webroot.pyc
+${PYSITELIB}/certbot/plugins/webroot.pyo
${PYSITELIB}/certbot/plugins/webroot_test.py
+${PYSITELIB}/certbot/plugins/webroot_test.pyc
+${PYSITELIB}/certbot/plugins/webroot_test.pyo
${PYSITELIB}/certbot/renewal.py
+${PYSITELIB}/certbot/renewal.pyc
+${PYSITELIB}/certbot/renewal.pyo
${PYSITELIB}/certbot/reporter.py
+${PYSITELIB}/certbot/reporter.pyc
+${PYSITELIB}/certbot/reporter.pyo
${PYSITELIB}/certbot/reverter.py
+${PYSITELIB}/certbot/reverter.pyc
+${PYSITELIB}/certbot/reverter.pyo
${PYSITELIB}/certbot/ssl-dhparams.pem
${PYSITELIB}/certbot/storage.py
+${PYSITELIB}/certbot/storage.pyc
+${PYSITELIB}/certbot/storage.pyo
${PYSITELIB}/certbot/tests/__init__.py
-${PYSITELIB}/certbot/tests/__init__.pyo
${PYSITELIB}/certbot/tests/__init__.pyc
-${PYSITELIB}/certbot/tests/account_test.pyo
-${PYSITELIB}/certbot/tests/account_test.pyc
-${PYSITELIB}/certbot/tests/acme_util.pyo
-${PYSITELIB}/certbot/tests/acme_util.pyc
-${PYSITELIB}/certbot/tests/auth_handler_test.pyo
-${PYSITELIB}/certbot/tests/auth_handler_test.pyc
-${PYSITELIB}/certbot/tests/cert_manager_test.pyo
-${PYSITELIB}/certbot/tests/cert_manager_test.pyc
-${PYSITELIB}/certbot/tests/cli_test.pyo
-${PYSITELIB}/certbot/tests/cli_test.pyc
-${PYSITELIB}/certbot/tests/client_test.pyo
-${PYSITELIB}/certbot/tests/client_test.pyc
-${PYSITELIB}/certbot/tests/compat_test.pyo
-${PYSITELIB}/certbot/tests/compat_test.pyc
-${PYSITELIB}/certbot/tests/configuration_test.pyo
-${PYSITELIB}/certbot/tests/configuration_test.pyc
-${PYSITELIB}/certbot/tests/crypto_util_test.pyo
-${PYSITELIB}/certbot/tests/crypto_util_test.pyc
-${PYSITELIB}/certbot/tests/eff_test.pyo
-${PYSITELIB}/certbot/tests/eff_test.pyc
-${PYSITELIB}/certbot/tests/error_handler_test.pyo
-${PYSITELIB}/certbot/tests/error_handler_test.pyc
-${PYSITELIB}/certbot/tests/errors_test.pyo
-${PYSITELIB}/certbot/tests/errors_test.pyc
-${PYSITELIB}/certbot/tests/hook_test.pyo
-${PYSITELIB}/certbot/tests/hook_test.pyc
-${PYSITELIB}/certbot/tests/lock_test.pyo
-${PYSITELIB}/certbot/tests/lock_test.pyc
-${PYSITELIB}/certbot/tests/log_test.pyo
-${PYSITELIB}/certbot/tests/log_test.pyc
-${PYSITELIB}/certbot/tests/main_test.pyo
-${PYSITELIB}/certbot/tests/main_test.pyc
-${PYSITELIB}/certbot/tests/notify_test.pyo
-${PYSITELIB}/certbot/tests/notify_test.pyc
-${PYSITELIB}/certbot/tests/ocsp_test.pyo
-${PYSITELIB}/certbot/tests/ocsp_test.pyc
-${PYSITELIB}/certbot/tests/renewal_test.pyo
-${PYSITELIB}/certbot/tests/renewal_test.pyc
-${PYSITELIB}/certbot/tests/renewupdater_test.pyo
-${PYSITELIB}/certbot/tests/renewupdater_test.pyc
-${PYSITELIB}/certbot/tests/reporter_test.pyo
-${PYSITELIB}/certbot/tests/reporter_test.pyc
-${PYSITELIB}/certbot/tests/reverter_test.pyo
-${PYSITELIB}/certbot/tests/reverter_test.pyc
-${PYSITELIB}/certbot/tests/storage_test.pyo
-${PYSITELIB}/certbot/tests/storage_test.pyc
-${PYSITELIB}/certbot/tests/util.pyo
-${PYSITELIB}/certbot/tests/util.pyc
-${PYSITELIB}/certbot/tests/util_test.pyo
-${PYSITELIB}/certbot/tests/util_test.pyc
+${PYSITELIB}/certbot/tests/__init__.pyo
${PYSITELIB}/certbot/tests/account_test.py
+${PYSITELIB}/certbot/tests/account_test.pyc
+${PYSITELIB}/certbot/tests/account_test.pyo
${PYSITELIB}/certbot/tests/acme_util.py
+${PYSITELIB}/certbot/tests/acme_util.pyc
+${PYSITELIB}/certbot/tests/acme_util.pyo
${PYSITELIB}/certbot/tests/auth_handler_test.py
+${PYSITELIB}/certbot/tests/auth_handler_test.pyc
+${PYSITELIB}/certbot/tests/auth_handler_test.pyo
${PYSITELIB}/certbot/tests/cert_manager_test.py
+${PYSITELIB}/certbot/tests/cert_manager_test.pyc
+${PYSITELIB}/certbot/tests/cert_manager_test.pyo
${PYSITELIB}/certbot/tests/cli_test.py
+${PYSITELIB}/certbot/tests/cli_test.pyc
+${PYSITELIB}/certbot/tests/cli_test.pyo
${PYSITELIB}/certbot/tests/client_test.py
+${PYSITELIB}/certbot/tests/client_test.pyc
+${PYSITELIB}/certbot/tests/client_test.pyo
${PYSITELIB}/certbot/tests/compat_test.py
+${PYSITELIB}/certbot/tests/compat_test.pyc
+${PYSITELIB}/certbot/tests/compat_test.pyo
${PYSITELIB}/certbot/tests/configuration_test.py
+${PYSITELIB}/certbot/tests/configuration_test.pyc
+${PYSITELIB}/certbot/tests/configuration_test.pyo
${PYSITELIB}/certbot/tests/crypto_util_test.py
+${PYSITELIB}/certbot/tests/crypto_util_test.pyc
+${PYSITELIB}/certbot/tests/crypto_util_test.pyo
${PYSITELIB}/certbot/tests/display/__init__.py
-${PYSITELIB}/certbot/tests/display/__init__.pyo
${PYSITELIB}/certbot/tests/display/__init__.pyc
-${PYSITELIB}/certbot/tests/display/completer_test.pyo
-${PYSITELIB}/certbot/tests/display/completer_test.pyc
-${PYSITELIB}/certbot/tests/display/enhancements_test.pyo
-${PYSITELIB}/certbot/tests/display/enhancements_test.pyc
-${PYSITELIB}/certbot/tests/display/ops_test.pyo
-${PYSITELIB}/certbot/tests/display/ops_test.pyc
-${PYSITELIB}/certbot/tests/display/util_test.pyo
-${PYSITELIB}/certbot/tests/display/util_test.pyc
+${PYSITELIB}/certbot/tests/display/__init__.pyo
${PYSITELIB}/certbot/tests/display/completer_test.py
+${PYSITELIB}/certbot/tests/display/completer_test.pyc
+${PYSITELIB}/certbot/tests/display/completer_test.pyo
${PYSITELIB}/certbot/tests/display/enhancements_test.py
+${PYSITELIB}/certbot/tests/display/enhancements_test.pyc
+${PYSITELIB}/certbot/tests/display/enhancements_test.pyo
${PYSITELIB}/certbot/tests/display/ops_test.py
+${PYSITELIB}/certbot/tests/display/ops_test.pyc
+${PYSITELIB}/certbot/tests/display/ops_test.pyo
${PYSITELIB}/certbot/tests/display/util_test.py
+${PYSITELIB}/certbot/tests/display/util_test.pyc
+${PYSITELIB}/certbot/tests/display/util_test.pyo
${PYSITELIB}/certbot/tests/eff_test.py
+${PYSITELIB}/certbot/tests/eff_test.pyc
+${PYSITELIB}/certbot/tests/eff_test.pyo
${PYSITELIB}/certbot/tests/error_handler_test.py
+${PYSITELIB}/certbot/tests/error_handler_test.pyc
+${PYSITELIB}/certbot/tests/error_handler_test.pyo
${PYSITELIB}/certbot/tests/errors_test.py
+${PYSITELIB}/certbot/tests/errors_test.pyc
+${PYSITELIB}/certbot/tests/errors_test.pyo
${PYSITELIB}/certbot/tests/hook_test.py
+${PYSITELIB}/certbot/tests/hook_test.pyc
+${PYSITELIB}/certbot/tests/hook_test.pyo
${PYSITELIB}/certbot/tests/lock_test.py
+${PYSITELIB}/certbot/tests/lock_test.pyc
+${PYSITELIB}/certbot/tests/lock_test.pyo
${PYSITELIB}/certbot/tests/log_test.py
+${PYSITELIB}/certbot/tests/log_test.pyc
+${PYSITELIB}/certbot/tests/log_test.pyo
${PYSITELIB}/certbot/tests/main_test.py
+${PYSITELIB}/certbot/tests/main_test.pyc
+${PYSITELIB}/certbot/tests/main_test.pyo
${PYSITELIB}/certbot/tests/notify_test.py
+${PYSITELIB}/certbot/tests/notify_test.pyc
+${PYSITELIB}/certbot/tests/notify_test.pyo
${PYSITELIB}/certbot/tests/ocsp_test.py
+${PYSITELIB}/certbot/tests/ocsp_test.pyc
+${PYSITELIB}/certbot/tests/ocsp_test.pyo
${PYSITELIB}/certbot/tests/renewal_test.py
+${PYSITELIB}/certbot/tests/renewal_test.pyc
+${PYSITELIB}/certbot/tests/renewal_test.pyo
${PYSITELIB}/certbot/tests/renewupdater_test.py
+${PYSITELIB}/certbot/tests/renewupdater_test.pyc
+${PYSITELIB}/certbot/tests/renewupdater_test.pyo
${PYSITELIB}/certbot/tests/reporter_test.py
+${PYSITELIB}/certbot/tests/reporter_test.pyc
+${PYSITELIB}/certbot/tests/reporter_test.pyo
${PYSITELIB}/certbot/tests/reverter_test.py
+${PYSITELIB}/certbot/tests/reverter_test.pyc
+${PYSITELIB}/certbot/tests/reverter_test.pyo
${PYSITELIB}/certbot/tests/storage_test.py
+${PYSITELIB}/certbot/tests/storage_test.pyc
+${PYSITELIB}/certbot/tests/storage_test.pyo
${PYSITELIB}/certbot/tests/testdata/README
${PYSITELIB}/certbot/tests/testdata/cert-5sans_512.pem
${PYSITELIB}/certbot/tests/testdata/cert-nosans_nistp256.pem
@@ -294,6 +286,8 @@ ${PYSITELIB}/certbot/tests/testdata/csr-
${PYSITELIB}/certbot/tests/testdata/csr-san_512.pem
${PYSITELIB}/certbot/tests/testdata/csr_512.der
${PYSITELIB}/certbot/tests/testdata/csr_512.pem
+${PYSITELIB}/certbot/tests/testdata/google_certificate.pem
+${PYSITELIB}/certbot/tests/testdata/google_issuer_certificate.pem
${PYSITELIB}/certbot/tests/testdata/nistp256_key.pem
${PYSITELIB}/certbot/tests/testdata/os-release
${PYSITELIB}/certbot/tests/testdata/rsa2048_key.pem
@@ -307,7 +301,15 @@ ${PYSITELIB}/certbot/tests/testdata/samp
${PYSITELIB}/certbot/tests/testdata/sample-renewal.conf
${PYSITELIB}/certbot/tests/testdata/webrootconftest.ini
${PYSITELIB}/certbot/tests/util.py
+${PYSITELIB}/certbot/tests/util.pyc
+${PYSITELIB}/certbot/tests/util.pyo
${PYSITELIB}/certbot/tests/util_test.py
+${PYSITELIB}/certbot/tests/util_test.pyc
+${PYSITELIB}/certbot/tests/util_test.pyo
${PYSITELIB}/certbot/updater.py
+${PYSITELIB}/certbot/updater.pyc
+${PYSITELIB}/certbot/updater.pyo
${PYSITELIB}/certbot/util.py
+${PYSITELIB}/certbot/util.pyc
+${PYSITELIB}/certbot/util.pyo
share/examples/certbot-${PYVERSSUFFIX}/cli.ini
Index: pkgsrc/security/py-certbot/distinfo
diff -u pkgsrc/security/py-certbot/distinfo:1.29 pkgsrc/security/py-certbot/distinfo:1.30
--- pkgsrc/security/py-certbot/distinfo:1.29 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.29 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.30 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-0.31.0.tar.gz) = 6569ce15dd6c89f5756d3c9016c58ff0937d3a99
-RMD160 (certbot-0.31.0.tar.gz) = c146744df32995135830bb4e8d3da0d94415cbfd
-SHA512 (certbot-0.31.0.tar.gz) = a9bc84b54a071b15acc9db2801745b0b275f60a6037140d2fb074f0fb03c66363e63fc9ebe7e2e9770c6bd7802d0994108e2c0edb07bd376f7dcfb31daac8491
-Size (certbot-0.31.0.tar.gz) = 336579 bytes
+SHA1 (certbot-0.32.0.tar.gz) = 6b3ec43bfd859e2a8b156d04e71be2b44ee47509
+RMD160 (certbot-0.32.0.tar.gz) = 57de570d38199567a0931a6251a59213d54a3978
+SHA512 (certbot-0.32.0.tar.gz) = bd5c7748c3fd801f8bd531f4545eb83cd3d75a6d93c7dc0d0975a7d2236250d4773ddfcb38e1f1a65d3bbb56333517b9f30628a92edfa4d10ba044eb0f9e1809
+Size (certbot-0.32.0.tar.gz) = 341257 bytes
Index: pkgsrc/security/py-certbot-apache/Makefile
diff -u pkgsrc/security/py-certbot-apache/Makefile:1.1 pkgsrc/security/py-certbot-apache/Makefile:1.2
--- pkgsrc/security/py-certbot-apache/Makefile:1.1 Tue Feb 12 12:57:19 2019
+++ pkgsrc/security/py-certbot-apache/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2019/02/12 12:57:19 adam Exp $
+# $NetBSD: Makefile,v 1.2 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-apache-0.31.0
+DISTNAME= certbot-apache-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-apache/}
Index: pkgsrc/security/py-certbot-apache/distinfo
diff -u pkgsrc/security/py-certbot-apache/distinfo:1.1 pkgsrc/security/py-certbot-apache/distinfo:1.2
--- pkgsrc/security/py-certbot-apache/distinfo:1.1 Tue Feb 12 12:57:19 2019
+++ pkgsrc/security/py-certbot-apache/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:57:19 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-apache-0.31.0.tar.gz) = 4a5fce9511bf30867aa72f94105ef4e84dbdf1d0
-RMD160 (certbot-apache-0.31.0.tar.gz) = fff6967a0e05f66e280632f3f086c492d321009c
-SHA512 (certbot-apache-0.31.0.tar.gz) = 6c00b3786031d967e06adbcb06ee8be52e8f5fba69ffb84ec9ca5c634d2a1c0d293211c501692928a43efd16ecce17e527c07b8832f7d90e8f0bea995df6795f
-Size (certbot-apache-0.31.0.tar.gz) = 168050 bytes
+SHA1 (certbot-apache-0.32.0.tar.gz) = ccab29ebd57516f88c14a4ac981e2516cebf9ca3
+RMD160 (certbot-apache-0.32.0.tar.gz) = 3efedc5f82313d11938030d149e07c2776b93af1
+SHA512 (certbot-apache-0.32.0.tar.gz) = 7f2f625fd44c44e4aa2df932d648886fa7f35f5a75dbe734ec25877b4b83bff86a9b0b8e137cf4f6f6e7ecc5431aa3ba9347a40163e215144bf02ebb370b32a6
+Size (certbot-apache-0.32.0.tar.gz) = 163549 bytes
Index: pkgsrc/security/py-certbot-dns-luadns/Makefile
diff -u pkgsrc/security/py-certbot-dns-luadns/Makefile:1.1 pkgsrc/security/py-certbot-dns-luadns/Makefile:1.2
--- pkgsrc/security/py-certbot-dns-luadns/Makefile:1.1 Sat Feb 23 20:33:16 2019
+++ pkgsrc/security/py-certbot-dns-luadns/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2019/02/23 20:33:16 triaxx Exp $
+# $NetBSD: Makefile,v 1.2 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-dns-luadns-0.31.0
+DISTNAME= certbot-dns-luadns-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-luadns/}
Index: pkgsrc/security/py-certbot-dns-luadns/distinfo
diff -u pkgsrc/security/py-certbot-dns-luadns/distinfo:1.1 pkgsrc/security/py-certbot-dns-luadns/distinfo:1.2
--- pkgsrc/security/py-certbot-dns-luadns/distinfo:1.1 Sat Feb 23 20:33:16 2019
+++ pkgsrc/security/py-certbot-dns-luadns/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/23 20:33:16 triaxx Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-dns-luadns-0.31.0.tar.gz) = b68ee2a62b24bdf143f3e4962fd16490067f1ead
-RMD160 (certbot-dns-luadns-0.31.0.tar.gz) = 6bf8731b2e08ed0201b04169adce13398552fa70
-SHA512 (certbot-dns-luadns-0.31.0.tar.gz) = 7dc39edf9bcdadc899f09f5eb963b84135580764e0eb416d1b719441d2b4eb93584c7617b9004d49493f6090dc96112632c31fc7979c9f5d8f3017ef6e0b4385
-Size (certbot-dns-luadns-0.31.0.tar.gz) = 11614 bytes
+SHA1 (certbot-dns-luadns-0.32.0.tar.gz) = bf4b81566d00996148b97cb01ead2981ba1a9e2b
+RMD160 (certbot-dns-luadns-0.32.0.tar.gz) = 1397aa226951dc4c4931126cbcd58fd42d104fe6
+SHA512 (certbot-dns-luadns-0.32.0.tar.gz) = 079e948e9de1bc6cb48bbd016c830273d2f5c1903469e2cff7e2876f738cc73cdd6d32ef42540bea274945a4dcd394616756b02fa01fc6839fc755f4d6c7f363
+Size (certbot-dns-luadns-0.32.0.tar.gz) = 11338 bytes
Index: pkgsrc/security/py-certbot-dns-nsone/Makefile
diff -u pkgsrc/security/py-certbot-dns-nsone/Makefile:1.1 pkgsrc/security/py-certbot-dns-nsone/Makefile:1.2
--- pkgsrc/security/py-certbot-dns-nsone/Makefile:1.1 Sat Feb 23 20:27:47 2019
+++ pkgsrc/security/py-certbot-dns-nsone/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2019/02/23 20:27:47 triaxx Exp $
+# $NetBSD: Makefile,v 1.2 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-dns-nsone-0.31.0
+DISTNAME= certbot-dns-nsone-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-nsone/}
Index: pkgsrc/security/py-certbot-dns-nsone/distinfo
diff -u pkgsrc/security/py-certbot-dns-nsone/distinfo:1.1 pkgsrc/security/py-certbot-dns-nsone/distinfo:1.2
--- pkgsrc/security/py-certbot-dns-nsone/distinfo:1.1 Sat Feb 23 20:27:47 2019
+++ pkgsrc/security/py-certbot-dns-nsone/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/23 20:27:47 triaxx Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-dns-nsone-0.31.0.tar.gz) = 34a14bd48773647e3c20e8315fa9b6861ddebf35
-RMD160 (certbot-dns-nsone-0.31.0.tar.gz) = 4f6ac6cb48d1af74e9158aa16e2f452afc1caaa6
-SHA512 (certbot-dns-nsone-0.31.0.tar.gz) = 72af47daf8380ecde3d82ec3a9e8faba0b1f7b83d1e5bb1fb64feee8c27dd18e37a58cff7799a5a10399b0fc04c548d6adb3193811387e72fb0d187e1c1fb02b
-Size (certbot-dns-nsone-0.31.0.tar.gz) = 11363 bytes
+SHA1 (certbot-dns-nsone-0.32.0.tar.gz) = ef86ba896b5288a4a96fca99225328ae76334d71
+RMD160 (certbot-dns-nsone-0.32.0.tar.gz) = e56425ab0ef60b26d44f9b8866384997f8dc3dbb
+SHA512 (certbot-dns-nsone-0.32.0.tar.gz) = 131a98b25bba69e3964347483ddcb23a4aa2d6d5620b2809e2b75f36732275a959de6659bed5db91642a228f05233b2b537c578c84f9cef286a465dd3082a62e
+Size (certbot-dns-nsone-0.32.0.tar.gz) = 11377 bytes
Index: pkgsrc/security/py-certbot-dns-ovh/Makefile
diff -u pkgsrc/security/py-certbot-dns-ovh/Makefile:1.2 pkgsrc/security/py-certbot-dns-ovh/Makefile:1.3
--- pkgsrc/security/py-certbot-dns-ovh/Makefile:1.2 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-ovh/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.3 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-dns-ovh-0.31.0
+DISTNAME= certbot-dns-ovh-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-ovh/}
Index: pkgsrc/security/py-certbot-dns-ovh/distinfo
diff -u pkgsrc/security/py-certbot-dns-ovh/distinfo:1.1 pkgsrc/security/py-certbot-dns-ovh/distinfo:1.2
--- pkgsrc/security/py-certbot-dns-ovh/distinfo:1.1 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-ovh/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-dns-ovh-0.31.0.tar.gz) = 3648b99dfa08a3e18d270073b23f493851ac9ee3
-RMD160 (certbot-dns-ovh-0.31.0.tar.gz) = 7b691aa44ee72dc25ef8ad4098bc53befb12e995
-SHA512 (certbot-dns-ovh-0.31.0.tar.gz) = c9fae4b680d5dd0b09a23e7b8b1542a8cd95ac6f1f4f902bbd8103403f0a2f3dc2cc3a3d7b3931cb04a9ae8ddea70d95b41346d568dfd4a93f08db6966ac1970
-Size (certbot-dns-ovh-0.31.0.tar.gz) = 11670 bytes
+SHA1 (certbot-dns-ovh-0.32.0.tar.gz) = 6673aa532ea22414da73eb710e249710515960f2
+RMD160 (certbot-dns-ovh-0.32.0.tar.gz) = a05fb596ce60c11a22664daf5812df110836ed98
+SHA512 (certbot-dns-ovh-0.32.0.tar.gz) = 3e94710407a76742fa31964a66875d469f1dd61205dea1c85d643d1a2acd6a30b2b1e5580a3aa1e9fe6fd704327da679ad0cfc265531738c9b50a3ff12c9616c
+Size (certbot-dns-ovh-0.32.0.tar.gz) = 11844 bytes
Index: pkgsrc/security/py-certbot-dns-rfc2136/Makefile
diff -u pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.3 pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.4
--- pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.3 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-rfc2136/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.4 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-dns-rfc2136-0.31.0
+DISTNAME= certbot-dns-rfc2136-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-rfc2136/}
Index: pkgsrc/security/py-certbot-dns-rfc2136/distinfo
diff -u pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.1 pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.2
--- pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.1 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-rfc2136/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-dns-rfc2136-0.31.0.tar.gz) = 79da48a9aee2190a3900dccd737ab4f44002b2e0
-RMD160 (certbot-dns-rfc2136-0.31.0.tar.gz) = c9e320eb26e646228ea3696b8d4f4c08013aa588
-SHA512 (certbot-dns-rfc2136-0.31.0.tar.gz) = bb76cff6c830a7d2504b4508a73fda58d225b93fd9b0cec7668a1b6ea3b84d0ab0ad314bdfa93e00df3aaeb6a8a52c868254c657a25c365669adbf2e4e5458e9
-Size (certbot-dns-rfc2136-0.31.0.tar.gz) = 13664 bytes
+SHA1 (certbot-dns-rfc2136-0.32.0.tar.gz) = a039b2413907c0285c7d6a2666da7e0dad1f5029
+RMD160 (certbot-dns-rfc2136-0.32.0.tar.gz) = dd9836229a5cfaa526cc1edfd1d7a8cdade74d0b
+SHA512 (certbot-dns-rfc2136-0.32.0.tar.gz) = 796b19dabceb4ffb00680a71ca21ac738d499d1adb2371c4dbc0bcdc3861174d80cb9d484c961ec59e8327b6027d2fc7d48817e14bc87cedc844027174070ce8
+Size (certbot-dns-rfc2136-0.32.0.tar.gz) = 13960 bytes
Index: pkgsrc/security/py-certbot-dns-route53/Makefile
diff -u pkgsrc/security/py-certbot-dns-route53/Makefile:1.2 pkgsrc/security/py-certbot-dns-route53/Makefile:1.3
--- pkgsrc/security/py-certbot-dns-route53/Makefile:1.2 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-route53/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.3 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-dns-route53-0.31.0
+DISTNAME= certbot-dns-route53-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/certbot/certbot-dns-route53/}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-route53/}
Index: pkgsrc/security/py-certbot-dns-route53/distinfo
diff -u pkgsrc/security/py-certbot-dns-route53/distinfo:1.1 pkgsrc/security/py-certbot-dns-route53/distinfo:1.2
--- pkgsrc/security/py-certbot-dns-route53/distinfo:1.1 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-route53/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-dns-route53-0.31.0.tar.gz) = 76f03b0caf08cdfa4eb137bcac0477dc2dfba2dd
-RMD160 (certbot-dns-route53-0.31.0.tar.gz) = b97204296cca9075d1a6696f9163c6c1b9ea9ff3
-SHA512 (certbot-dns-route53-0.31.0.tar.gz) = 402e08fbcc72affa787cf2f57f3984fa21b6ccbc121cb09b4f3727a80fa36e94f83c6cdc37735c7a4257ca96c1ec5d90d8f7655ae3b67b7002ca305b5bbe9e43
-Size (certbot-dns-route53-0.31.0.tar.gz) = 14498 bytes
+SHA1 (certbot-dns-route53-0.32.0.tar.gz) = b281225e11c4a5ff8a232797c928f6a08e4ea08d
+RMD160 (certbot-dns-route53-0.32.0.tar.gz) = 0909bd86a38843f35e450cc494df5cc850984b07
+SHA512 (certbot-dns-route53-0.32.0.tar.gz) = a7120a05855d6e90698154f70b9f68542df41d6a69a67a455eda5c0d67034e81f4e6b82cbbd8308d270e658ea0fb996668481227f78ce299362c0c97193c62f2
+Size (certbot-dns-route53-0.32.0.tar.gz) = 14162 bytes
Index: pkgsrc/security/py-certbot-dns-sakuracloud/Makefile
diff -u pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.2 pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.3
--- pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.2 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-sakuracloud/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.3 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-dns-sakuracloud-0.31.0
+DISTNAME= certbot-dns-sakuracloud-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-sakuracloud/}
Index: pkgsrc/security/py-certbot-dns-sakuracloud/distinfo
diff -u pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.1 pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.2
--- pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.1 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-dns-sakuracloud/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-dns-sakuracloud-0.31.0.tar.gz) = 05b09b6121c4a5abb46b6fe803a6067bacccf378
-RMD160 (certbot-dns-sakuracloud-0.31.0.tar.gz) = 9b93d5aae7c8984f2d789a8626beeeb9fff80045
-SHA512 (certbot-dns-sakuracloud-0.31.0.tar.gz) = 86b1f703e93738269bb059af43a105b1d27b4c27a659dd991defecd3d1b3c06b7219270e9655c995a5c8990b299c267dbd28bea49ece73889b93a68a259315cf
-Size (certbot-dns-sakuracloud-0.31.0.tar.gz) = 11588 bytes
+SHA1 (certbot-dns-sakuracloud-0.32.0.tar.gz) = de1e3454b47770783c50df0ec49dc86e2d31ee40
+RMD160 (certbot-dns-sakuracloud-0.32.0.tar.gz) = 434ec6008282a5d015c0e8713f31e33bbd352f65
+SHA512 (certbot-dns-sakuracloud-0.32.0.tar.gz) = f3386ec04e5be9acddeef7e84899af5e580bac2ce0a5bef87545307de813f504a31adb1661182e25cd66553d451e3443037fb640fae68db19198db8adb1bda73
+Size (certbot-dns-sakuracloud-0.32.0.tar.gz) = 11307 bytes
Index: pkgsrc/security/py-certbot-nginx/Makefile
diff -u pkgsrc/security/py-certbot-nginx/Makefile:1.2 pkgsrc/security/py-certbot-nginx/Makefile:1.3
--- pkgsrc/security/py-certbot-nginx/Makefile:1.2 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-nginx/Makefile Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2019/02/12 12:56:31 adam Exp $
+# $NetBSD: Makefile,v 1.3 2019/03/10 15:23:51 adam Exp $
-DISTNAME= certbot-nginx-0.31.0
+DISTNAME= certbot-nginx-0.32.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-nginx/}
Index: pkgsrc/security/py-certbot-nginx/distinfo
diff -u pkgsrc/security/py-certbot-nginx/distinfo:1.1 pkgsrc/security/py-certbot-nginx/distinfo:1.2
--- pkgsrc/security/py-certbot-nginx/distinfo:1.1 Tue Feb 12 12:56:31 2019
+++ pkgsrc/security/py-certbot-nginx/distinfo Sun Mar 10 15:23:51 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/02/12 12:56:31 adam Exp $
+$NetBSD: distinfo,v 1.2 2019/03/10 15:23:51 adam Exp $
-SHA1 (certbot-nginx-0.31.0.tar.gz) = dc58172d6c46ce46192b88411bbbdf56773e0f64
-RMD160 (certbot-nginx-0.31.0.tar.gz) = 892a6388a8c9cc91df5e8bcca47aa9f5c124e046
-SHA512 (certbot-nginx-0.31.0.tar.gz) = bfb8e1c39c0b40aabc08f6651100f29e2a8fff7c79906bd95c199c913bb3214f83d22684c637042093631ff0f69045099f11b33f80955f126ae356fba4807a7b
-Size (certbot-nginx-0.31.0.tar.gz) = 78396 bytes
+SHA1 (certbot-nginx-0.32.0.tar.gz) = 0627f1a5d93df97195b4ed7d5e3e062b1634508a
+RMD160 (certbot-nginx-0.32.0.tar.gz) = 9072895906709103bc96266c331c3ade64159607
+SHA512 (certbot-nginx-0.32.0.tar.gz) = 21ebd6688f3dc7100bd35ed6a46293ab57656413ef296203427e08730dd7b2d98b8131ac05f022d9f87b1fc6a736d8993191aaad4f53e8e2b24daae77d1da57b
+Size (certbot-nginx-0.32.0.tar.gz) = 79096 bytes
Home |
Main Index |
Thread Index |
Old Index