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:   triaxx
Date:           Tue Jun 11 14:22:03 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
Added Files:
        pkgsrc/security/py-certbot: Makefile.common

Log Message:
py-acme: update to 0.35.0
py-certbot: update to 0.35.0
py-certbot-apache: update to 0.35.0
py-certbot-dns-luadns: update to 0.35.0
py-certbot-dns-nsone: update to 0.35.0
py-certbot-dns-ovh: update to 0.35.0
py-certbot-dns-rfc2136: update to 0.35.0
py-certbot-dns-route53: update to 0.35.0
py-certbot-dns-sakuracloud: update to 0.35.0
py-certbot-nginx: update to 0.35.0

pkgsrc changes:
---------------
* Add py-certbot/Makefile.common to make version number coherent

upstream changes:
-----------------
- Added
    o dns_rfc2136 plugin now supports explicitly specifing an authorative base domain for cases when the automatic method does not work (e.g. Split horizon DNS)

- Fixed
    o Renewal parameter webroot_path is always saved, avoiding some regressions when webroot authenticator plugin is invoked with no challenge to perform.
    o Certbot now accepts OCSP responses when an explicit authorized responder, different from the issuer, is used to sign OCSP responses.
    o Scripts in Certbot hook directories are no longer executed when their filenames end in a tilde.

- Despite us having broken lockstep, we are continuing to release new versions of all Certbot components during releases for the time being, however, the only package with changes other than its 
version number was:
    o certbot
    o certbot-dns-rfc2136


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/py-acme/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-acme/distinfo
cvs rdiff -u -r1.14 -r1.15 pkgsrc/security/py-certbot/Makefile
cvs rdiff -u -r0 -r1.32 pkgsrc/security/py-certbot/Makefile.common
cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/py-certbot/PLIST
cvs rdiff -u -r1.33 -r1.34 pkgsrc/security/py-certbot/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-apache/Makefile \
    pkgsrc/security/py-certbot-apache/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-luadns/Makefile \
    pkgsrc/security/py-certbot-dns-luadns/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-nsone/Makefile \
    pkgsrc/security/py-certbot-dns-nsone/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/py-certbot-dns-ovh/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-ovh/distinfo
cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/py-certbot-dns-rfc2136/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-rfc2136/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/py-certbot-dns-route53/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-route53/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/py-certbot-dns-sakuracloud/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-sakuracloud/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/py-certbot-nginx/Makefile
cvs rdiff -u -r1.5 -r1.6 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.18 pkgsrc/security/py-acme/Makefile:1.19
--- pkgsrc/security/py-acme/Makefile:1.18       Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-acme/Makefile    Tue Jun 11 14:22:01 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.18 2019/05/17 06:46:30 adam Exp $
+# $NetBSD: Makefile,v 1.19 2019/06/11 14:22:01 triaxx Exp $
 
-DISTNAME=      acme-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      acme-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/acme/}
 
 MAINTAINER=    fhajny%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
 COMMENT=       ACME protocol implementation in Python
-LICENSE=       apache-2.0
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-OpenSSL>=0.15:../../security/py-OpenSSL
 DEPENDS+=      ${PYPKGPREFIX}-cryptography>=1.2.3:../../security/py-cryptography
@@ -23,7 +21,5 @@ DEPENDS+=     ${PYPKGPREFIX}-six>=1.9.0:../.
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/py-acme/distinfo
diff -u pkgsrc/security/py-acme/distinfo:1.5 pkgsrc/security/py-acme/distinfo:1.6
--- pkgsrc/security/py-acme/distinfo:1.5        Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-acme/distinfo    Tue Jun 11 14:22:01 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:30 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:01 triaxx Exp $
 
-SHA1 (acme-0.34.2.tar.gz) = 6045562cf2014d1c9a7347e3fb6b93c4117ac28b
-RMD160 (acme-0.34.2.tar.gz) = 8d1af62ab1892bcac075e6e1a9dde904967af6e0
-SHA512 (acme-0.34.2.tar.gz) = 388ed12413eee1f8a25a85174b367c9177b4e7466bd8334bbc83d4d033621d6027a3d3dffad7c8d8ad85f741440d4400ef19aecca53e3649e468b8c5d0f95e54
-Size (acme-0.34.2.tar.gz) = 85971 bytes
+SHA1 (acme-0.35.0.tar.gz) = 4a568429ed036f80e4fc6be04c205b2abff8753f
+RMD160 (acme-0.35.0.tar.gz) = 0185f8a8c002988d18e2c3d94c39c3007391fee5
+SHA512 (acme-0.35.0.tar.gz) = 55a6b330ba698f13af0510e59fb5748ffada9c6bb10115fe53d7acb81c4504be0eedb787ca4fc34d3929f90933f7d0ec93e015f786f002364c7455134f041467
+Size (acme-0.35.0.tar.gz) = 85960 bytes

Index: pkgsrc/security/py-certbot/Makefile
diff -u pkgsrc/security/py-certbot/Makefile:1.14 pkgsrc/security/py-certbot/Makefile:1.15
--- pkgsrc/security/py-certbot/Makefile:1.14    Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot/Makefile Tue Jun 11 14:22:01 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.14 2019/05/17 06:46:30 adam Exp $
+# $NetBSD: Makefile,v 1.15 2019/06/11 14:22:01 triaxx Exp $
 
-DISTNAME=      certbot-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot/}
 
 MAINTAINER=    fhajny%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
 COMMENT=       Client for the Let's Encrypt CA
-LICENSE=       apache-2.0
+
+.include "../../security/py-certbot/Makefile.common"
 
 EGG_NAME=      ${DISTNAME}
 
@@ -31,8 +29,6 @@ TEST_DEPENDS+=        ${PYPKGPREFIX}-test-[0-9]
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
 
-USE_LANGUAGES= # none
-
 BUILD_DEFS+=           VARBASE
 
 PKG_SYSCONFSUBDIR=     letsencrypt

Index: pkgsrc/security/py-certbot/PLIST
diff -u pkgsrc/security/py-certbot/PLIST:1.18 pkgsrc/security/py-certbot/PLIST:1.19
--- pkgsrc/security/py-certbot/PLIST:1.18       Tue May  7 08:50:36 2019
+++ pkgsrc/security/py-certbot/PLIST    Tue Jun 11 14:22:01 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2019/05/07 08:50:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.19 2019/06/11 14:22:01 triaxx Exp $
 bin/certbot-${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -7,276 +7,284 @@ ${PYSITELIB}/${EGG_INFODIR}/entry_points
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/certbot/__init__.py
-${PYSITELIB}/certbot/__init__.pyc
 ${PYSITELIB}/certbot/__init__.pyo
-${PYSITELIB}/certbot/account.py
-${PYSITELIB}/certbot/account.pyc
+${PYSITELIB}/certbot/__init__.pyc
 ${PYSITELIB}/certbot/account.pyo
-${PYSITELIB}/certbot/achallenges.py
-${PYSITELIB}/certbot/achallenges.pyc
+${PYSITELIB}/certbot/account.pyc
 ${PYSITELIB}/certbot/achallenges.pyo
-${PYSITELIB}/certbot/auth_handler.py
-${PYSITELIB}/certbot/auth_handler.pyc
+${PYSITELIB}/certbot/achallenges.pyc
 ${PYSITELIB}/certbot/auth_handler.pyo
-${PYSITELIB}/certbot/cert_manager.py
-${PYSITELIB}/certbot/cert_manager.pyc
+${PYSITELIB}/certbot/auth_handler.pyc
 ${PYSITELIB}/certbot/cert_manager.pyo
-${PYSITELIB}/certbot/cli.py
-${PYSITELIB}/certbot/cli.pyc
+${PYSITELIB}/certbot/cert_manager.pyc
 ${PYSITELIB}/certbot/cli.pyo
-${PYSITELIB}/certbot/client.py
-${PYSITELIB}/certbot/client.pyc
+${PYSITELIB}/certbot/cli.pyc
 ${PYSITELIB}/certbot/client.pyo
+${PYSITELIB}/certbot/client.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/account.py
+${PYSITELIB}/certbot/achallenges.py
+${PYSITELIB}/certbot/auth_handler.py
+${PYSITELIB}/certbot/cert_manager.py
+${PYSITELIB}/certbot/cli.py
+${PYSITELIB}/certbot/client.py
 ${PYSITELIB}/certbot/compat/__init__.py
-${PYSITELIB}/certbot/compat/__init__.pyc
 ${PYSITELIB}/certbot/compat/__init__.pyo
-${PYSITELIB}/certbot/compat/misc.py
-${PYSITELIB}/certbot/compat/misc.pyc
+${PYSITELIB}/certbot/compat/__init__.pyc
 ${PYSITELIB}/certbot/compat/misc.pyo
-${PYSITELIB}/certbot/compat/os.py
-${PYSITELIB}/certbot/compat/os.pyc
+${PYSITELIB}/certbot/compat/misc.pyc
 ${PYSITELIB}/certbot/compat/os.pyo
+${PYSITELIB}/certbot/compat/os.pyc
+${PYSITELIB}/certbot/compat/misc.py
+${PYSITELIB}/certbot/compat/os.py
 ${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__.pyc
 ${PYSITELIB}/certbot/display/__init__.pyo
-${PYSITELIB}/certbot/display/completer.py
-${PYSITELIB}/certbot/display/completer.pyc
+${PYSITELIB}/certbot/display/__init__.pyc
 ${PYSITELIB}/certbot/display/completer.pyo
-${PYSITELIB}/certbot/display/dummy_readline.py
-${PYSITELIB}/certbot/display/dummy_readline.pyc
+${PYSITELIB}/certbot/display/completer.pyc
 ${PYSITELIB}/certbot/display/dummy_readline.pyo
-${PYSITELIB}/certbot/display/enhancements.py
-${PYSITELIB}/certbot/display/enhancements.pyc
+${PYSITELIB}/certbot/display/dummy_readline.pyc
 ${PYSITELIB}/certbot/display/enhancements.pyo
-${PYSITELIB}/certbot/display/ops.py
-${PYSITELIB}/certbot/display/ops.pyc
+${PYSITELIB}/certbot/display/enhancements.pyc
 ${PYSITELIB}/certbot/display/ops.pyo
-${PYSITELIB}/certbot/display/util.py
-${PYSITELIB}/certbot/display/util.pyc
+${PYSITELIB}/certbot/display/ops.pyc
 ${PYSITELIB}/certbot/display/util.pyo
+${PYSITELIB}/certbot/display/util.pyc
+${PYSITELIB}/certbot/display/completer.py
+${PYSITELIB}/certbot/display/dummy_readline.py
+${PYSITELIB}/certbot/display/enhancements.py
+${PYSITELIB}/certbot/display/ops.py
+${PYSITELIB}/certbot/display/util.py
 ${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__.pyc
 ${PYSITELIB}/certbot/plugins/__init__.pyo
-${PYSITELIB}/certbot/plugins/common.py
-${PYSITELIB}/certbot/plugins/common.pyc
+${PYSITELIB}/certbot/plugins/__init__.pyc
 ${PYSITELIB}/certbot/plugins/common.pyo
-${PYSITELIB}/certbot/plugins/common_test.py
-${PYSITELIB}/certbot/plugins/common_test.pyc
+${PYSITELIB}/certbot/plugins/common.pyc
 ${PYSITELIB}/certbot/plugins/common_test.pyo
-${PYSITELIB}/certbot/plugins/disco.py
-${PYSITELIB}/certbot/plugins/disco.pyc
+${PYSITELIB}/certbot/plugins/common_test.pyc
 ${PYSITELIB}/certbot/plugins/disco.pyo
-${PYSITELIB}/certbot/plugins/disco_test.py
-${PYSITELIB}/certbot/plugins/disco_test.pyc
+${PYSITELIB}/certbot/plugins/disco.pyc
 ${PYSITELIB}/certbot/plugins/disco_test.pyo
-${PYSITELIB}/certbot/plugins/dns_common.py
-${PYSITELIB}/certbot/plugins/dns_common.pyc
+${PYSITELIB}/certbot/plugins/disco_test.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.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.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_lexicon_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_common_test.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.pyc
 ${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.pyo
-${PYSITELIB}/certbot/plugins/enhancements.py
-${PYSITELIB}/certbot/plugins/enhancements.pyc
+${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.pyc
 ${PYSITELIB}/certbot/plugins/enhancements.pyo
-${PYSITELIB}/certbot/plugins/enhancements_test.py
-${PYSITELIB}/certbot/plugins/enhancements_test.pyc
+${PYSITELIB}/certbot/plugins/enhancements.pyc
 ${PYSITELIB}/certbot/plugins/enhancements_test.pyo
-${PYSITELIB}/certbot/plugins/manual.py
-${PYSITELIB}/certbot/plugins/manual.pyc
+${PYSITELIB}/certbot/plugins/enhancements_test.pyc
 ${PYSITELIB}/certbot/plugins/manual.pyo
-${PYSITELIB}/certbot/plugins/manual_test.py
-${PYSITELIB}/certbot/plugins/manual_test.pyc
+${PYSITELIB}/certbot/plugins/manual.pyc
 ${PYSITELIB}/certbot/plugins/manual_test.pyo
-${PYSITELIB}/certbot/plugins/null.py
-${PYSITELIB}/certbot/plugins/null.pyc
+${PYSITELIB}/certbot/plugins/manual_test.pyc
 ${PYSITELIB}/certbot/plugins/null.pyo
-${PYSITELIB}/certbot/plugins/null_test.py
-${PYSITELIB}/certbot/plugins/null_test.pyc
+${PYSITELIB}/certbot/plugins/null.pyc
 ${PYSITELIB}/certbot/plugins/null_test.pyo
-${PYSITELIB}/certbot/plugins/selection.py
-${PYSITELIB}/certbot/plugins/selection.pyc
+${PYSITELIB}/certbot/plugins/null_test.pyc
 ${PYSITELIB}/certbot/plugins/selection.pyo
-${PYSITELIB}/certbot/plugins/selection_test.py
-${PYSITELIB}/certbot/plugins/selection_test.pyc
+${PYSITELIB}/certbot/plugins/selection.pyc
 ${PYSITELIB}/certbot/plugins/selection_test.pyo
-${PYSITELIB}/certbot/plugins/standalone.py
-${PYSITELIB}/certbot/plugins/standalone.pyc
+${PYSITELIB}/certbot/plugins/selection_test.pyc
 ${PYSITELIB}/certbot/plugins/standalone.pyo
-${PYSITELIB}/certbot/plugins/standalone_test.py
-${PYSITELIB}/certbot/plugins/standalone_test.pyc
+${PYSITELIB}/certbot/plugins/standalone.pyc
 ${PYSITELIB}/certbot/plugins/standalone_test.pyo
-${PYSITELIB}/certbot/plugins/storage.py
-${PYSITELIB}/certbot/plugins/storage.pyc
+${PYSITELIB}/certbot/plugins/standalone_test.pyc
 ${PYSITELIB}/certbot/plugins/storage.pyo
-${PYSITELIB}/certbot/plugins/storage_test.py
-${PYSITELIB}/certbot/plugins/storage_test.pyc
+${PYSITELIB}/certbot/plugins/storage.pyc
 ${PYSITELIB}/certbot/plugins/storage_test.pyo
-${PYSITELIB}/certbot/plugins/util.py
-${PYSITELIB}/certbot/plugins/util.pyc
+${PYSITELIB}/certbot/plugins/storage_test.pyc
 ${PYSITELIB}/certbot/plugins/util.pyo
-${PYSITELIB}/certbot/plugins/util_test.py
-${PYSITELIB}/certbot/plugins/util_test.pyc
+${PYSITELIB}/certbot/plugins/util.pyc
 ${PYSITELIB}/certbot/plugins/util_test.pyo
-${PYSITELIB}/certbot/plugins/webroot.py
-${PYSITELIB}/certbot/plugins/webroot.pyc
+${PYSITELIB}/certbot/plugins/util_test.pyc
 ${PYSITELIB}/certbot/plugins/webroot.pyo
-${PYSITELIB}/certbot/plugins/webroot_test.py
-${PYSITELIB}/certbot/plugins/webroot_test.pyc
+${PYSITELIB}/certbot/plugins/webroot.pyc
 ${PYSITELIB}/certbot/plugins/webroot_test.pyo
+${PYSITELIB}/certbot/plugins/webroot_test.pyc
+${PYSITELIB}/certbot/plugins/common.py
+${PYSITELIB}/certbot/plugins/common_test.py
+${PYSITELIB}/certbot/plugins/disco.py
+${PYSITELIB}/certbot/plugins/disco_test.py
+${PYSITELIB}/certbot/plugins/dns_common.py
+${PYSITELIB}/certbot/plugins/dns_common_lexicon.py
+${PYSITELIB}/certbot/plugins/dns_common_lexicon_test.py
+${PYSITELIB}/certbot/plugins/dns_common_test.py
+${PYSITELIB}/certbot/plugins/dns_test_common.py
+${PYSITELIB}/certbot/plugins/dns_test_common_lexicon.py
+${PYSITELIB}/certbot/plugins/enhancements.py
+${PYSITELIB}/certbot/plugins/enhancements_test.py
+${PYSITELIB}/certbot/plugins/manual.py
+${PYSITELIB}/certbot/plugins/manual_test.py
+${PYSITELIB}/certbot/plugins/null.py
+${PYSITELIB}/certbot/plugins/null_test.py
+${PYSITELIB}/certbot/plugins/selection.py
+${PYSITELIB}/certbot/plugins/selection_test.py
+${PYSITELIB}/certbot/plugins/standalone.py
+${PYSITELIB}/certbot/plugins/standalone_test.py
+${PYSITELIB}/certbot/plugins/storage.py
+${PYSITELIB}/certbot/plugins/storage_test.py
+${PYSITELIB}/certbot/plugins/util.py
+${PYSITELIB}/certbot/plugins/util_test.py
+${PYSITELIB}/certbot/plugins/webroot.py
+${PYSITELIB}/certbot/plugins/webroot_test.py
 ${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__.pyc
 ${PYSITELIB}/certbot/tests/__init__.pyo
-${PYSITELIB}/certbot/tests/account_test.py
-${PYSITELIB}/certbot/tests/account_test.pyc
+${PYSITELIB}/certbot/tests/__init__.pyc
 ${PYSITELIB}/certbot/tests/account_test.pyo
-${PYSITELIB}/certbot/tests/acme_util.py
-${PYSITELIB}/certbot/tests/acme_util.pyc
+${PYSITELIB}/certbot/tests/account_test.pyc
 ${PYSITELIB}/certbot/tests/acme_util.pyo
-${PYSITELIB}/certbot/tests/auth_handler_test.py
-${PYSITELIB}/certbot/tests/auth_handler_test.pyc
+${PYSITELIB}/certbot/tests/acme_util.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/auth_handler_test.pyc
 ${PYSITELIB}/certbot/tests/cert_manager_test.pyo
-${PYSITELIB}/certbot/tests/cli_test.py
-${PYSITELIB}/certbot/tests/cli_test.pyc
+${PYSITELIB}/certbot/tests/cert_manager_test.pyc
 ${PYSITELIB}/certbot/tests/cli_test.pyo
-${PYSITELIB}/certbot/tests/client_test.py
-${PYSITELIB}/certbot/tests/client_test.pyc
+${PYSITELIB}/certbot/tests/cli_test.pyc
 ${PYSITELIB}/certbot/tests/client_test.pyo
+${PYSITELIB}/certbot/tests/client_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/account_test.py
+${PYSITELIB}/certbot/tests/acme_util.py
+${PYSITELIB}/certbot/tests/auth_handler_test.py
+${PYSITELIB}/certbot/tests/cert_manager_test.py
+${PYSITELIB}/certbot/tests/cli_test.py
+${PYSITELIB}/certbot/tests/client_test.py
 ${PYSITELIB}/certbot/tests/compat/__init__.py
-${PYSITELIB}/certbot/tests/compat/__init__.pyc
 ${PYSITELIB}/certbot/tests/compat/__init__.pyo
-${PYSITELIB}/certbot/tests/compat/compat_test.py
-${PYSITELIB}/certbot/tests/compat/compat_test.pyc
+${PYSITELIB}/certbot/tests/compat/__init__.pyc
 ${PYSITELIB}/certbot/tests/compat/compat_test.pyo
+${PYSITELIB}/certbot/tests/compat/compat_test.pyc
+${PYSITELIB}/certbot/tests/compat/compat_test.py
 ${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__.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/__init__.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/completer_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/enhancements_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/ops_test.pyc
 ${PYSITELIB}/certbot/tests/display/util_test.pyo
+${PYSITELIB}/certbot/tests/display/util_test.pyc
+${PYSITELIB}/certbot/tests/display/completer_test.py
+${PYSITELIB}/certbot/tests/display/enhancements_test.py
+${PYSITELIB}/certbot/tests/display/ops_test.py
+${PYSITELIB}/certbot/tests/display/util_test.py
 ${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
@@ -295,9 +303,10 @@ ${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/ocsp_certificate.pem
+${PYSITELIB}/certbot/tests/testdata/ocsp_issuer_certificate.pem
+${PYSITELIB}/certbot/tests/testdata/ocsp_responder_certificate.pem
 ${PYSITELIB}/certbot/tests/testdata/os-release
 ${PYSITELIB}/certbot/tests/testdata/rsa2048_key.pem
 ${PYSITELIB}/certbot/tests/testdata/rsa256_key.pem
@@ -310,15 +319,7 @@ ${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.33 pkgsrc/security/py-certbot/distinfo:1.34
--- pkgsrc/security/py-certbot/distinfo:1.33    Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot/distinfo Tue Jun 11 14:22:01 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.33 2019/05/17 06:46:30 adam Exp $
+$NetBSD: distinfo,v 1.34 2019/06/11 14:22:01 triaxx Exp $
 
-SHA1 (certbot-0.34.2.tar.gz) = b0a0bedde7ec058b93870ae98e20419208cceb87
-RMD160 (certbot-0.34.2.tar.gz) = 101c7bca9055f8991a004e111fa4d0c098f11d8e
-SHA512 (certbot-0.34.2.tar.gz) = a780f0f1bbc9186274047d867eb57a4d7cd37f9801877827bc0e97f0dba9676927d44cb7c671e8ecd7cc7bc07496b45fb18195e696f667b60d075bae45a8baf0
-Size (certbot-0.34.2.tar.gz) = 342657 bytes
+SHA1 (certbot-0.35.0.tar.gz) = 0c12a39b88272f1f62496b1bf51eb7dda36021b4
+RMD160 (certbot-0.35.0.tar.gz) = c37bf49a24f4573733b9b9db263443946d3be79e
+SHA512 (certbot-0.35.0.tar.gz) = 1f135df0b5d43a021b10d0c2e78aea2ed21ad07ee59bb7ed7c3c4e9efcd6288801f86b03f2bc8e18b1367e27f2c9ba53f3de8cdf0128ef93c243c79002c99839
+Size (certbot-0.35.0.tar.gz) = 346843 bytes

Index: pkgsrc/security/py-certbot-apache/Makefile
diff -u pkgsrc/security/py-certbot-apache/Makefile:1.5 pkgsrc/security/py-certbot-apache/Makefile:1.6
--- pkgsrc/security/py-certbot-apache/Makefile:1.5      Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-apache/Makefile  Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.5 2019/05/17 06:46:30 adam Exp $
+# $NetBSD: Makefile,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-apache-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-apache-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-apache/}
 
-COMMENT=       Apache plugin for Certbot
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
-LICENSE=       apache-2.0
+COMMENT=       Apache plugin for Certbot
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-augeas-[0-9]*:../../sysutils/py-augeas
@@ -19,7 +17,5 @@ DEPENDS+=     ${PYPKGPREFIX}-setuptools-[0-9
 DEPENDS+=      ${PYPKGPREFIX}-ZopeComponent-[0-9]*:../../devel/py-ZopeComponent
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/security/py-certbot-apache/distinfo
diff -u pkgsrc/security/py-certbot-apache/distinfo:1.5 pkgsrc/security/py-certbot-apache/distinfo:1.6
--- pkgsrc/security/py-certbot-apache/distinfo:1.5      Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-apache/distinfo  Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:30 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-apache-0.34.2.tar.gz) = fcc1890850bc808529c720c8c3a8a9643c2397f9
-RMD160 (certbot-apache-0.34.2.tar.gz) = 5bb0c8dff96a88982abd6efcc1dc7cd19d5c1155
-SHA512 (certbot-apache-0.34.2.tar.gz) = c9a2f2c1124b4f9c55b5a72620f307a8ff75e802105e69ced7b723f415b9d8d029182bcea69b1436c76e1b2386a22ad4384039bce2946015d0f08ad81393ae87
-Size (certbot-apache-0.34.2.tar.gz) = 180485 bytes
+SHA1 (certbot-apache-0.35.0.tar.gz) = 1dcbad7f4c487c40a72f7f427c6685f60247a723
+RMD160 (certbot-apache-0.35.0.tar.gz) = e8e1382d7af9e0f44acc4684f54a50a282ae031d
+SHA512 (certbot-apache-0.35.0.tar.gz) = 46ba448077d534a48b386394d9d55bf5c6af5eeb9938fe2ca95269a9242b4a870ebac4adbe1146e8d715c4d36db0d130c6add1ac7297e4335e1e859fff777eef
+Size (certbot-apache-0.35.0.tar.gz) = 180500 bytes

Index: pkgsrc/security/py-certbot-dns-luadns/Makefile
diff -u pkgsrc/security/py-certbot-dns-luadns/Makefile:1.5 pkgsrc/security/py-certbot-dns-luadns/Makefile:1.6
--- pkgsrc/security/py-certbot-dns-luadns/Makefile:1.5  Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-dns-luadns/Makefile      Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.5 2019/05/17 06:46:30 adam Exp $
+# $NetBSD: Makefile,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-dns-luadns-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-dns-luadns-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-dns-luadns/}
 
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
 COMMENT=       LuaDNS Authenticator plugin for Certbot
-LICENSE=       apache-2.0
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
@@ -17,7 +15,5 @@ DEPENDS+=     ${PYPKGPREFIX}-mock-[0-9]*:../
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/security/py-certbot-dns-luadns/distinfo
diff -u pkgsrc/security/py-certbot-dns-luadns/distinfo:1.5 pkgsrc/security/py-certbot-dns-luadns/distinfo:1.6
--- pkgsrc/security/py-certbot-dns-luadns/distinfo:1.5  Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-dns-luadns/distinfo      Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:30 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-dns-luadns-0.34.2.tar.gz) = 09e0bcfa0a0524c825a58f25e1479057f248142d
-RMD160 (certbot-dns-luadns-0.34.2.tar.gz) = e217c90c7e112327ef03eef240d9f8c4eef52b4e
-SHA512 (certbot-dns-luadns-0.34.2.tar.gz) = 593b646abce970eb32d43db9065aabc21ae6593c73f6bbff965925a67918510bcab8bca91e4884ce3b0ef02292591c832a71346f4deeb8980b2da127fa6f823b
-Size (certbot-dns-luadns-0.34.2.tar.gz) = 11351 bytes
+SHA1 (certbot-dns-luadns-0.35.0.tar.gz) = 2dcfc3103cb4b27af7fe3f767f95f8e9f4be56b4
+RMD160 (certbot-dns-luadns-0.35.0.tar.gz) = 8c0f0249764cefbb73796747c06996bab3378e96
+SHA512 (certbot-dns-luadns-0.35.0.tar.gz) = 687dd1f7d9ebf676831aa56f9d821430da0d89c42f4241ed791deaaf29d3b061f45934f00558c79d4d3b794c87a0b10775e72ed5b3672666cb487159e71b9cce
+Size (certbot-dns-luadns-0.35.0.tar.gz) = 11351 bytes

Index: pkgsrc/security/py-certbot-dns-nsone/Makefile
diff -u pkgsrc/security/py-certbot-dns-nsone/Makefile:1.5 pkgsrc/security/py-certbot-dns-nsone/Makefile:1.6
--- pkgsrc/security/py-certbot-dns-nsone/Makefile:1.5   Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-dns-nsone/Makefile       Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.5 2019/05/17 06:46:30 adam Exp $
+# $NetBSD: Makefile,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-dns-nsone-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-dns-nsone-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-dns-nsone/}
 
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
 COMMENT=       NS1 DNS Authenticator plugin for Certbot
-LICENSE=       apache-2.0
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
@@ -17,7 +15,5 @@ DEPENDS+=     ${PYPKGPREFIX}-mock-[0-9]*:../
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
Index: pkgsrc/security/py-certbot-dns-nsone/distinfo
diff -u pkgsrc/security/py-certbot-dns-nsone/distinfo:1.5 pkgsrc/security/py-certbot-dns-nsone/distinfo:1.6
--- pkgsrc/security/py-certbot-dns-nsone/distinfo:1.5   Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-dns-nsone/distinfo       Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:30 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-dns-nsone-0.34.2.tar.gz) = 3765f6e49c0cf7ba1e62b3bf6882afcf735e3239
-RMD160 (certbot-dns-nsone-0.34.2.tar.gz) = 3779dad1acd99e466a18bc8834f6a51b78e9849a
-SHA512 (certbot-dns-nsone-0.34.2.tar.gz) = 5109b6c5d6962635cb7520792eaac8029d9ccd92e3b10376ac1f52d21c840e93a83684713ccc2ff73175f1f3efc3f4aa49a0f3023936eba23ab8fe595ee6f370
-Size (certbot-dns-nsone-0.34.2.tar.gz) = 11382 bytes
+SHA1 (certbot-dns-nsone-0.35.0.tar.gz) = db5ed05ff95871e074f5a6324abc20b4fadcbd1e
+RMD160 (certbot-dns-nsone-0.35.0.tar.gz) = 423a171a2dc7971847a4be84d9f3554051b8678d
+SHA512 (certbot-dns-nsone-0.35.0.tar.gz) = 80187fb7cb18bf01b557036215091bcd8af013d000cf5a04e5989bf6835f2035aaaa4d6270f95309b3c1ddd7628d9739c4f961b39d8ff1fe6e8928f76afeace2
+Size (certbot-dns-nsone-0.35.0.tar.gz) = 11390 bytes

Index: pkgsrc/security/py-certbot-dns-ovh/Makefile
diff -u pkgsrc/security/py-certbot-dns-ovh/Makefile:1.6 pkgsrc/security/py-certbot-dns-ovh/Makefile:1.7
--- pkgsrc/security/py-certbot-dns-ovh/Makefile:1.6     Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-dns-ovh/Makefile Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.6 2019/05/17 06:46:30 adam Exp $
+# $NetBSD: Makefile,v 1.7 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-dns-ovh-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-dns-ovh-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-dns-ovh/}
 
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
 COMMENT=       OVH DNS Authenticator plugin for Certbot
-LICENSE=       apache-2.0
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
@@ -17,7 +15,5 @@ DEPENDS+=     ${PYPKGPREFIX}-mock-[0-9]*:../
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/py-certbot-dns-ovh/distinfo
diff -u pkgsrc/security/py-certbot-dns-ovh/distinfo:1.5 pkgsrc/security/py-certbot-dns-ovh/distinfo:1.6
--- pkgsrc/security/py-certbot-dns-ovh/distinfo:1.5     Fri May 17 06:46:30 2019
+++ pkgsrc/security/py-certbot-dns-ovh/distinfo Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:30 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-dns-ovh-0.34.2.tar.gz) = 614a2300b7fdebfb7c93c83f5dfa1d094f17bf61
-RMD160 (certbot-dns-ovh-0.34.2.tar.gz) = 70b5d81f1ceae03e61149d00ccdfbe62750e6f81
-SHA512 (certbot-dns-ovh-0.34.2.tar.gz) = ae02af3f6eb3eb126fbd94422c44abf56a95a9976a4c53b46015167b25eae4537cfb5855133140def3f168b4be3bba0775b09360c3214ba759f5d9f18977605a
-Size (certbot-dns-ovh-0.34.2.tar.gz) = 11860 bytes
+SHA1 (certbot-dns-ovh-0.35.0.tar.gz) = 67caa1a87b3d9b30ddc0585846ed7724c4364440
+RMD160 (certbot-dns-ovh-0.35.0.tar.gz) = 47e613c5d71b4a604f9354078170b844bb1038e2
+SHA512 (certbot-dns-ovh-0.35.0.tar.gz) = 100c5c935cd2f674a65fe7e941a7c3e8b627f38fe7967d79c456531aa121432450a26e39a6682927d719d6d043bc6caacd8ea5cdaa805587b6980fd11dbe9168
+Size (certbot-dns-ovh-0.35.0.tar.gz) = 11861 bytes

Index: pkgsrc/security/py-certbot-dns-rfc2136/Makefile
diff -u pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.7 pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.8
--- pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.7 Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-dns-rfc2136/Makefile     Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.7 2019/05/17 06:46:31 adam Exp $
+# $NetBSD: Makefile,v 1.8 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-dns-rfc2136-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-dns-rfc2136-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-dns-rfc2136/}
 
-COMMENT=       RFC 2136 DNS Authenticator plugin for Certbot
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
-LICENSE=       apache-2.0
+COMMENT=       RFC 2136 DNS Authenticator plugin for Certbot
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
@@ -17,7 +15,5 @@ DEPENDS+=     ${PYPKGPREFIX}-mock-[0-9]*:../
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/py-certbot-dns-rfc2136/distinfo
diff -u pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.5 pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.6
--- pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.5 Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-dns-rfc2136/distinfo     Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:31 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-dns-rfc2136-0.34.2.tar.gz) = 399a46a4e7a77e68e37df3da30175af5a45964f5
-RMD160 (certbot-dns-rfc2136-0.34.2.tar.gz) = 739f34fb9e93f48a70a64f89c6e878d8cac21a45
-SHA512 (certbot-dns-rfc2136-0.34.2.tar.gz) = 58e5dc903e975764d3843cc86701e6cabcdc24e01b234edb8b3a0b4fb3e7b74e04477cadd35988fc1d748b4e39a1badba34486c642ea6fd1428375b26319d945
-Size (certbot-dns-rfc2136-0.34.2.tar.gz) = 13976 bytes
+SHA1 (certbot-dns-rfc2136-0.35.0.tar.gz) = c5eae762ae5a084df14bf680ffdba544f6348261
+RMD160 (certbot-dns-rfc2136-0.35.0.tar.gz) = 748d9a97763d37e18007e98074fd0503558f687f
+SHA512 (certbot-dns-rfc2136-0.35.0.tar.gz) = c538ac8a6d92caec5b2e46cd295ab3285a652701332aae2ef70a3878456170a16636e2ea4ac957f24d3007fcc0ac43203b6eea0137b54322b80b4616003cf421
+Size (certbot-dns-rfc2136-0.35.0.tar.gz) = 14285 bytes

Index: pkgsrc/security/py-certbot-dns-route53/Makefile
diff -u pkgsrc/security/py-certbot-dns-route53/Makefile:1.6 pkgsrc/security/py-certbot-dns-route53/Makefile:1.7
--- pkgsrc/security/py-certbot-dns-route53/Makefile:1.6 Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-dns-route53/Makefile     Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.6 2019/05/17 06:46:31 adam Exp $
+# $NetBSD: Makefile,v 1.7 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-dns-route53-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:S/certbot/certbot-dns-route53/}
-CATEGORIES=    security python
+DISTNAME=      certbot-dns-route53-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-dns-route53/}
 
-COMMENT=       Amazon Web Services Route 53 API plugin for Certbot
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
-LICENSE=       apache-2.0
+COMMENT=       Amazon Web Services Route 53 API plugin for Certbot
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-boto3-[0-9]*:../../net/py-boto3
@@ -17,7 +15,5 @@ DEPENDS+=     ${PYPKGPREFIX}-mock-[0-9]*:../
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/py-certbot-dns-route53/distinfo
diff -u pkgsrc/security/py-certbot-dns-route53/distinfo:1.5 pkgsrc/security/py-certbot-dns-route53/distinfo:1.6
--- pkgsrc/security/py-certbot-dns-route53/distinfo:1.5 Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-dns-route53/distinfo     Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:31 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-dns-route53-0.34.2.tar.gz) = cfc2f0f74b1687c74691daeae7865d4c1e5c53cc
-RMD160 (certbot-dns-route53-0.34.2.tar.gz) = 15545ab405cffcac8b46f0f1174b4925633d4d39
-SHA512 (certbot-dns-route53-0.34.2.tar.gz) = 23f232f84d67127c3dfa632f1929bd6a627cca1c7bf85c14960f7f2560965aa0ac1265fa0c1e2eb8fdf213f9051141a49cf91bf1de10a48c77785ed451f0ad2e
-Size (certbot-dns-route53-0.34.2.tar.gz) = 14179 bytes
+SHA1 (certbot-dns-route53-0.35.0.tar.gz) = a2f563da3203d950bc57c3d8bca6326fbf45b0bb
+RMD160 (certbot-dns-route53-0.35.0.tar.gz) = 2ebdd6b68aa8dd8a8b577878faaec6f2054be6e7
+SHA512 (certbot-dns-route53-0.35.0.tar.gz) = 2aa6ef374dfaf1ac6e5ceb4aa37ae0d9a812e4c1e1cc4b6464fb89cd4c7965f91c1aeb880c7713c4b68c6f5d011ad1c77e03677a2726b235d39edd3092e2658c
+Size (certbot-dns-route53-0.35.0.tar.gz) = 14172 bytes

Index: pkgsrc/security/py-certbot-dns-sakuracloud/Makefile
diff -u pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.6 pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.7
--- pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.6     Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-dns-sakuracloud/Makefile Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.6 2019/05/17 06:46:31 adam Exp $
+# $NetBSD: Makefile,v 1.7 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-dns-sakuracloud-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-dns-sakuracloud-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-dns-sakuracloud/}
 
-COMMENT=       Sakura Cloud DNS Authenticator plugin for Certbot
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
-LICENSE=       apache-2.0
+COMMENT=       Sakura Cloud DNS Authenticator plugin for Certbot
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
 DEPENDS+=      ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
@@ -17,7 +15,5 @@ DEPENDS+=     ${PYPKGPREFIX}-mock-[0-9]*:../
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/py-certbot-dns-sakuracloud/distinfo
diff -u pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.5 pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.6
--- pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.5     Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-dns-sakuracloud/distinfo Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:31 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-dns-sakuracloud-0.34.2.tar.gz) = 2945995964943ab3baae6ee0fc71eccd2de30961
-RMD160 (certbot-dns-sakuracloud-0.34.2.tar.gz) = 63d3809399f31bddb07c8448b7ffeab46c207f2d
-SHA512 (certbot-dns-sakuracloud-0.34.2.tar.gz) = 1c428db921581728e8abb917db4b801aa94f348c5850b864bb64cb2090c756bf8330a0e86f8ab183ef25eaeb32faeed308d69ca3ac0838d9203c57b8998dd777
-Size (certbot-dns-sakuracloud-0.34.2.tar.gz) = 11326 bytes
+SHA1 (certbot-dns-sakuracloud-0.35.0.tar.gz) = 32e0e885b4c835f2a6c18edfc950cc988741c839
+RMD160 (certbot-dns-sakuracloud-0.35.0.tar.gz) = 8f7f627c80a5c841215e0c4474a529a36fdc13aa
+SHA512 (certbot-dns-sakuracloud-0.35.0.tar.gz) = f3bce02e2ea2afa97a4eb69b29d1853aac7e88069b23f932a4b82323f8a6ae7d8ba422d2e1305fb07fbcf1a7660c63355b79a506fbd071a5895cf6fa41010516
+Size (certbot-dns-sakuracloud-0.35.0.tar.gz) = 11326 bytes

Index: pkgsrc/security/py-certbot-nginx/Makefile
diff -u pkgsrc/security/py-certbot-nginx/Makefile:1.6 pkgsrc/security/py-certbot-nginx/Makefile:1.7
--- pkgsrc/security/py-certbot-nginx/Makefile:1.6       Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-nginx/Makefile   Tue Jun 11 14:22:02 2019
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.6 2019/05/17 06:46:31 adam Exp $
+# $NetBSD: Makefile,v 1.7 2019/06/11 14:22:02 triaxx Exp $
 
-DISTNAME=      certbot-nginx-0.34.2
-PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-CATEGORIES=    security python
+DISTNAME=      certbot-nginx-${CERTBOT_VERSION}
 MASTER_SITES=  ${MASTER_SITE_PYPI:=c/certbot-nginx/}
 
-COMMENT=       Nginx plugin for Certbot
 MAINTAINER=    triaxx%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/certbot/certbot
-LICENSE=       apache-2.0
+COMMENT=       Nginx plugin for Certbot
+
+.include "../../security/py-certbot/Makefile.common"
 
 DEPENDS+=      ${PYPKGPREFIX}-OpenSSL-[0-9]*:../../security/py-OpenSSL
 DEPENDS+=      ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
@@ -18,7 +16,5 @@ DEPENDS+=     ${PYPKGPREFIX}-pyparsing>=1.5.
 DEPENDS+=      ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
 DEPENDS+=      ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
 
-USE_LANGUAGES= # none
-
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/security/py-certbot-nginx/distinfo
diff -u pkgsrc/security/py-certbot-nginx/distinfo:1.5 pkgsrc/security/py-certbot-nginx/distinfo:1.6
--- pkgsrc/security/py-certbot-nginx/distinfo:1.5       Fri May 17 06:46:31 2019
+++ pkgsrc/security/py-certbot-nginx/distinfo   Tue Jun 11 14:22:02 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2019/05/17 06:46:31 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/06/11 14:22:02 triaxx Exp $
 
-SHA1 (certbot-nginx-0.34.2.tar.gz) = 47f1c8cc450d33239343be3af1a5163043dfd3c0
-RMD160 (certbot-nginx-0.34.2.tar.gz) = 468cf4d03d0b37623638aa3f9ee2e4599d31adde
-SHA512 (certbot-nginx-0.34.2.tar.gz) = 70e0007c5f6cfc0b5e20c3a977cc89fd852883ff4c5f5813d9b94b2817bdebe7b886befaa7dbda5699c4300796e8aca930eb20497306e31e254834efc561e6df
-Size (certbot-nginx-0.34.2.tar.gz) = 75844 bytes
+SHA1 (certbot-nginx-0.35.0.tar.gz) = a39d9d96b313369783384fd2d1d013ea67db9301
+RMD160 (certbot-nginx-0.35.0.tar.gz) = 07659521887cd7fa6d10a8b85ed6b0b13721c1b5
+SHA512 (certbot-nginx-0.35.0.tar.gz) = e039f4a40990a07070d98e4ad5eaf8b928cc136e9401f4403f26e2be00b33e865b811a84be61395ad95f45c36761ae063856602ebe0b27e23237680f402c3696
+Size (certbot-nginx-0.35.0.tar.gz) = 75841 bytes

Added files:

Index: pkgsrc/security/py-certbot/Makefile.common
diff -u /dev/null pkgsrc/security/py-certbot/Makefile.common:1.32
--- /dev/null   Tue Jun 11 14:22:03 2019
+++ pkgsrc/security/py-certbot/Makefile.common  Tue Jun 11 14:22:01 2019
@@ -0,0 +1,20 @@
+# $Netbsd: $
+# used by security/py-acme/Makefile
+# used by security/py-certbot-apache/Makefile
+# used by security/py-certbot-dns-luadns/Makefile
+# used by security/py-certbot-dns-nsone/Makefile
+# used by security/py-certbot-dns-ovh/Makefile
+# used by security/py-certbot-dns-rfc2136/Makefile
+# used by security/py-certbot-dns-route53/Makefile
+# used by security/py-certbot-dns-sakuracloud/Makefile
+# used by security/py-certbot-nginx/Makefile
+
+CERTBOT_VERSION=       0.35.0
+PKGNAME=               ${PYPKGPREFIX}-${DISTNAME}
+
+CATEGORIES?=   security python
+
+HOMEPAGE=      https://github.com/certbot/certbot
+LICENSE=       apache-2.0
+
+USE_LANGUAGES= # none



Home | Main Index | Thread Index | Old Index