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: Tue May 7 08:50:37 UTC 2019
Modified Files:
pkgsrc/security/py-acme: Makefile distinfo
pkgsrc/security/py-certbot: Makefile PLIST distinfo
pkgsrc/security/py-certbot-apache: Makefile PLIST 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-acme,py-cerbot*: updated to 0.34.1
0.34.1:
Fixed
certbot-auto no longer prints a blank line when there are no permissions problems.
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 changes in this release were to
certbot-auto.
More details about these changes can be found on our GitHub repo.
0.34.0:
Changed
Apache plugin now tries to restart httpd on Fedora using systemctl if a configuration test error is detected. This has to be done due to the way Fedora now generates the self signed certificate files
upon first restart.
Updated Certbot and its plugins to improve the handling of file system permissions on Windows as a step towards adding proper Windows support to Certbot.
Updated urllib3 to 1.24.2 in certbot-auto.
Removed the fallback introduced with 0.32.0 in acme to retry a challenge response with a keyAuthorization if sending the response without this field caused a malformed error to be received from the
ACME server.
Linode DNS plugin now supports api keys created from their new panel at cloud.linode.com
Adding a warning noting that future versions of Certbot will automatically configure the webserver so that all requests redirect to secure HTTPS access. You can control this behavior and disable this
warning with the --redirect and --no-redirect flags.
certbot-auto now prints warnings when run as root with insecure file system permissions. If you see these messages, you should fix the problem by following the instructions at
https://community.letsencrypt.org/t/certbot-auto-deployment-best-practices/91979/, however, these warnings can be disabled as necessary with the flag --no-permissions-check.
acme module uses now a POST-as-GET request to retrieve the registration from an ACME v2 server
Convert the tsig algorithm specified in the certbot_dns_rfc2136 configuration file to all uppercase letters before validating. This makes the value in the config case insensitive.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/security/py-acme/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-acme/distinfo
cvs rdiff -u -r1.12 -r1.13 pkgsrc/security/py-certbot/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/security/py-certbot/PLIST
cvs rdiff -u -r1.31 -r1.32 pkgsrc/security/py-certbot/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-apache/Makefile \
pkgsrc/security/py-certbot-apache/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-certbot-apache/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-luadns/Makefile \
pkgsrc/security/py-certbot-dns-luadns/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-nsone/Makefile \
pkgsrc/security/py-certbot-dns-nsone/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/py-certbot-dns-ovh/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-ovh/distinfo
cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-certbot-dns-rfc2136/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-rfc2136/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/py-certbot-dns-route53/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-route53/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/py-certbot-dns-sakuracloud/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/security/py-certbot-dns-sakuracloud/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/py-certbot-nginx/Makefile
cvs rdiff -u -r1.3 -r1.4 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.16 pkgsrc/security/py-acme/Makefile:1.17
--- pkgsrc/security/py-acme/Makefile:1.16 Mon Apr 8 15:48:30 2019
+++ pkgsrc/security/py-acme/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2019/04/08 15:48:30 adam Exp $
+# $NetBSD: Makefile,v 1.17 2019/05/07 08:50:36 adam Exp $
-DISTNAME= acme-0.33.1
+DISTNAME= acme-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=a/acme/}
@@ -19,7 +19,7 @@ DEPENDS+= ${PYPKGPREFIX}-requests>2.10:.
DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.3.0:../../devel/py-requests-toolbelt
DEPENDS+= ${PYPKGPREFIX}-rfc3339-[0-9]*:../../time/py-rfc3339
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
-DEPENDS+= ${PYPKGPREFIX}-six>1.9.0:../../lang/py-six
+DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
Index: pkgsrc/security/py-acme/distinfo
diff -u pkgsrc/security/py-acme/distinfo:1.3 pkgsrc/security/py-acme/distinfo:1.4
--- pkgsrc/security/py-acme/distinfo:1.3 Mon Apr 8 15:48:30 2019
+++ pkgsrc/security/py-acme/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:30 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (acme-0.33.1.tar.gz) = 7e628b0363fba52399730d3d8c41dd518fb158b1
-RMD160 (acme-0.33.1.tar.gz) = a9f651a53092de6592b5d628fb05db864dd943d4
-SHA512 (acme-0.33.1.tar.gz) = 17837af68a9edd410b6a036f7ba1d92a486eab235cdeb6941f9ee210eb7acc660acf8804f25640f1395f51b42be1892ac1701425301365e43d67f78520664e07
-Size (acme-0.33.1.tar.gz) = 86232 bytes
+SHA1 (acme-0.34.1.tar.gz) = 244f4e73a6f019d27283ecdc44ea3fbe96a11e9a
+RMD160 (acme-0.34.1.tar.gz) = b26c0fb55331fda5f8964bb76b1126268e9a8add
+SHA512 (acme-0.34.1.tar.gz) = 67111f9322ebadbbf3fb277f76d7c6904b84dd227fb1c73c11edb3b06eacd6390237de02b7a0bfc37bb74b0b09944656458654032d0d65c107e0c432dae44f60
+Size (acme-0.34.1.tar.gz) = 85979 bytes
Index: pkgsrc/security/py-certbot/Makefile
diff -u pkgsrc/security/py-certbot/Makefile:1.12 pkgsrc/security/py-certbot/Makefile:1.13
--- pkgsrc/security/py-certbot/Makefile:1.12 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.13 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-0.33.1
+DISTNAME= certbot-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot/}
@@ -42,7 +42,7 @@ SUBST_STAGE.path= pre-build
SUBST_MESSAGE.path= Fixing default paths
SUBST_FILES.path+= certbot/cert_manager.py
SUBST_FILES.path+= certbot/cli.py
-SUBST_FILES.path+= certbot/compat.py
+SUBST_FILES.path+= certbot/compat/misc.py
SUBST_FILES.path+= certbot/tests/cli_test.py
SUBST_SED.path+= -e 's,/etc/letsencrypt,${PKG_SYSCONFDIR},g'
SUBST_SED.path+= -e 's,/var/lib/letsencrypt,${VARBASE}/letsencrypt,g'
Index: pkgsrc/security/py-certbot/PLIST
diff -u pkgsrc/security/py-certbot/PLIST:1.17 pkgsrc/security/py-certbot/PLIST:1.18
--- pkgsrc/security/py-certbot/PLIST:1.17 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot/PLIST Tue May 7 08:50:36 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2019/04/08 15:48:31 adam Exp $
+@comment $NetBSD: PLIST,v 1.18 2019/05/07 08:50:36 adam Exp $
bin/certbot-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -33,6 +33,9 @@ ${PYSITELIB}/certbot/compat/__init__.pyo
${PYSITELIB}/certbot/compat/misc.py
${PYSITELIB}/certbot/compat/misc.pyc
${PYSITELIB}/certbot/compat/misc.pyo
+${PYSITELIB}/certbot/compat/os.py
+${PYSITELIB}/certbot/compat/os.pyc
+${PYSITELIB}/certbot/compat/os.pyo
${PYSITELIB}/certbot/configuration.py
${PYSITELIB}/certbot/configuration.pyc
${PYSITELIB}/certbot/configuration.pyo
@@ -205,9 +208,12 @@ ${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/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/compat_test.pyo
${PYSITELIB}/certbot/tests/configuration_test.py
${PYSITELIB}/certbot/tests/configuration_test.pyc
${PYSITELIB}/certbot/tests/configuration_test.pyo
Index: pkgsrc/security/py-certbot/distinfo
diff -u pkgsrc/security/py-certbot/distinfo:1.31 pkgsrc/security/py-certbot/distinfo:1.32
--- pkgsrc/security/py-certbot/distinfo:1.31 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.31 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.32 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-0.33.1.tar.gz) = f9da76f7ff98df0057358f99b6b728db39f4b6ef
-RMD160 (certbot-0.33.1.tar.gz) = d1904c00d0cf7e54a70994ffb79798d148eb1ee6
-SHA512 (certbot-0.33.1.tar.gz) = 49e7e0b8a77f81620d54bd003fc6f83b54eac7d28e4784970651d499aa124ab92f3d61232fc48b9c06d596a388d13bf0504e8d8a5de985d08318a844e497be23
-Size (certbot-0.33.1.tar.gz) = 342753 bytes
+SHA1 (certbot-0.34.1.tar.gz) = 46fa3c2cd06d9d0608d72ff1ccd260790dafa03f
+RMD160 (certbot-0.34.1.tar.gz) = 20cac62abb3435a362cb7e88b1bf95615d252ad4
+SHA512 (certbot-0.34.1.tar.gz) = 7c30451018a70be191809cacd8390b6a49242f5cda3548582b7204c73c029e263ddae87da3274a935d68c618a25f89d199f9d289aba30ac910debf47cdb20d6c
+Size (certbot-0.34.1.tar.gz) = 342618 bytes
Index: pkgsrc/security/py-certbot-apache/Makefile
diff -u pkgsrc/security/py-certbot-apache/Makefile:1.3 pkgsrc/security/py-certbot-apache/Makefile:1.4
--- pkgsrc/security/py-certbot-apache/Makefile:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-apache/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.4 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-apache-0.33.1
+DISTNAME= certbot-apache-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-apache/}
@@ -10,9 +10,9 @@ MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= https://github.com/certbot/certbot
LICENSE= apache-2.0
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.25.0:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
DEPENDS+= ${PYPKGPREFIX}-augeas-[0-9]*:../../sysutils/py-augeas
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.26.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-pyparsing>=1.5.5:../../devel/py-pyparsing
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
Index: pkgsrc/security/py-certbot-apache/distinfo
diff -u pkgsrc/security/py-certbot-apache/distinfo:1.3 pkgsrc/security/py-certbot-apache/distinfo:1.4
--- pkgsrc/security/py-certbot-apache/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-apache/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-apache-0.33.1.tar.gz) = cae83368da1d52126faee577df8a029cf86d007f
-RMD160 (certbot-apache-0.33.1.tar.gz) = e03727bc160bf2ffd2bf15a1927b65dc3150ea3c
-SHA512 (certbot-apache-0.33.1.tar.gz) = ecd4a24e7cdb67a046a9df24a9e477089a0b08e20de6876f3c488c90d8f4336340d8d21f679369eadba7b1b318220e26b7d010c35f51daf58b817632ada50b3d
-Size (certbot-apache-0.33.1.tar.gz) = 182811 bytes
+SHA1 (certbot-apache-0.34.1.tar.gz) = a8fb5419efe3c76b2f05444e2a6a3726b3b93f42
+RMD160 (certbot-apache-0.34.1.tar.gz) = d86448d7fe4332bbd86e67929492c7bf57b3c8f0
+SHA512 (certbot-apache-0.34.1.tar.gz) = 6394be07952fa60ffb7f1380e31a56ce65fd79447e1bd06ba8af04b4a4c0dd0ccb8f935204973388281428b04d66a1ad70a650ba776c1eecb00e3c594936fcfa
+Size (certbot-apache-0.34.1.tar.gz) = 180488 bytes
Index: pkgsrc/security/py-certbot-apache/PLIST
diff -u pkgsrc/security/py-certbot-apache/PLIST:1.2 pkgsrc/security/py-certbot-apache/PLIST:1.3
--- pkgsrc/security/py-certbot-apache/PLIST:1.2 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-apache/PLIST Tue May 7 08:50:36 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2019/04/08 15:48:31 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2019/05/07 08:50:36 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -47,6 +47,9 @@ ${PYSITELIB}/certbot_apache/override_dar
${PYSITELIB}/certbot_apache/override_debian.py
${PYSITELIB}/certbot_apache/override_debian.pyc
${PYSITELIB}/certbot_apache/override_debian.pyo
+${PYSITELIB}/certbot_apache/override_fedora.py
+${PYSITELIB}/certbot_apache/override_fedora.pyc
+${PYSITELIB}/certbot_apache/override_fedora.pyo
${PYSITELIB}/certbot_apache/override_gentoo.py
${PYSITELIB}/certbot_apache/override_gentoo.pyc
${PYSITELIB}/certbot_apache/override_gentoo.pyo
@@ -86,6 +89,9 @@ ${PYSITELIB}/certbot_apache/tests/displa
${PYSITELIB}/certbot_apache/tests/entrypoint_test.py
${PYSITELIB}/certbot_apache/tests/entrypoint_test.pyc
${PYSITELIB}/certbot_apache/tests/entrypoint_test.pyo
+${PYSITELIB}/certbot_apache/tests/fedora_test.py
+${PYSITELIB}/certbot_apache/tests/fedora_test.pyc
+${PYSITELIB}/certbot_apache/tests/fedora_test.pyo
${PYSITELIB}/certbot_apache/tests/gentoo_test.py
${PYSITELIB}/certbot_apache/tests/gentoo_test.pyc
${PYSITELIB}/certbot_apache/tests/gentoo_test.pyo
Index: pkgsrc/security/py-certbot-dns-luadns/Makefile
diff -u pkgsrc/security/py-certbot-dns-luadns/Makefile:1.3 pkgsrc/security/py-certbot-dns-luadns/Makefile:1.4
--- pkgsrc/security/py-certbot-dns-luadns/Makefile:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-luadns/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.4 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-dns-luadns-0.33.1
+DISTNAME= certbot-dns-luadns-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-luadns/}
@@ -11,7 +11,7 @@ COMMENT= LuaDNS Authenticator plugin for
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.31.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-lexicon>=2.2.1:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
Index: pkgsrc/security/py-certbot-dns-luadns/distinfo
diff -u pkgsrc/security/py-certbot-dns-luadns/distinfo:1.3 pkgsrc/security/py-certbot-dns-luadns/distinfo:1.4
--- pkgsrc/security/py-certbot-dns-luadns/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-luadns/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-dns-luadns-0.33.1.tar.gz) = 17be2df3889a458ac01cb0eefe240ea8a6c05adc
-RMD160 (certbot-dns-luadns-0.33.1.tar.gz) = 713d511a63c0e9822da591ee3b1e52b67b5830f1
-SHA512 (certbot-dns-luadns-0.33.1.tar.gz) = c0286c69d61d6cee1d5644f19cf77060c861f5050ecc459b3e824ee57b3352ebed739813409eab6991c1f0a7dcdf102006e38f75e85c1a643a64afb7a1e14b37
-Size (certbot-dns-luadns-0.33.1.tar.gz) = 11617 bytes
+SHA1 (certbot-dns-luadns-0.34.1.tar.gz) = 839c7a1db5734033d25dd73f1559ff64757d3ab7
+RMD160 (certbot-dns-luadns-0.34.1.tar.gz) = 16c218aca67281c7425eda35d4e1d1fb9a56dd25
+SHA512 (certbot-dns-luadns-0.34.1.tar.gz) = 8889ddeab460acc77a12c07d58cb6f38f91cdc16c8d79a271c55a72389a5decb6e66b93a076d9fd4188d6f1fea5170799f2d5ca60b5f962aa8a91933403056cd
+Size (certbot-dns-luadns-0.34.1.tar.gz) = 11354 bytes
Index: pkgsrc/security/py-certbot-dns-nsone/Makefile
diff -u pkgsrc/security/py-certbot-dns-nsone/Makefile:1.3 pkgsrc/security/py-certbot-dns-nsone/Makefile:1.4
--- pkgsrc/security/py-certbot-dns-nsone/Makefile:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-nsone/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.4 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-dns-nsone-0.33.1
+DISTNAME= certbot-dns-nsone-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-nsone/}
@@ -11,7 +11,7 @@ COMMENT= NS1 DNS Authenticator plugin fo
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.31.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-lexicon>=2.2.1:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
Index: pkgsrc/security/py-certbot-dns-nsone/distinfo
diff -u pkgsrc/security/py-certbot-dns-nsone/distinfo:1.3 pkgsrc/security/py-certbot-dns-nsone/distinfo:1.4
--- pkgsrc/security/py-certbot-dns-nsone/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-nsone/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-dns-nsone-0.33.1.tar.gz) = 65dc665c33b5a41730b92f4c8461924292dfb372
-RMD160 (certbot-dns-nsone-0.33.1.tar.gz) = 55371e0ddb5ec4522e584ec9f1bfb6331196f1bd
-SHA512 (certbot-dns-nsone-0.33.1.tar.gz) = a207a894b9bcd0de20a9af0b8cf8fbcae647d4d8af883edb24585bef4aec92845cb499d3d0f9bf2688ae18a7fd688872868a7089728f75f5b4ad02d35be2791d
-Size (certbot-dns-nsone-0.33.1.tar.gz) = 11369 bytes
+SHA1 (certbot-dns-nsone-0.34.1.tar.gz) = 995a2dd1de88dd2dea2d2e5deca07c2b142c9e7d
+RMD160 (certbot-dns-nsone-0.34.1.tar.gz) = 44248cd3e5d94cd68335d98cfe22b4cea35adcff
+SHA512 (certbot-dns-nsone-0.34.1.tar.gz) = c0a4e228b4846b172f3f6fdc18bc93c8507e67f96c046b673cd1a9daef4729281971423edab620f7c3b7d09c00379b1fdd6eb2f7dee434dcc00f76c0a135a50b
+Size (certbot-dns-nsone-0.34.1.tar.gz) = 11385 bytes
Index: pkgsrc/security/py-certbot-dns-ovh/Makefile
diff -u pkgsrc/security/py-certbot-dns-ovh/Makefile:1.4 pkgsrc/security/py-certbot-dns-ovh/Makefile:1.5
--- pkgsrc/security/py-certbot-dns-ovh/Makefile:1.4 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-ovh/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.5 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-dns-ovh-0.33.1
+DISTNAME= certbot-dns-ovh-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-ovh/}
@@ -11,8 +11,8 @@ COMMENT= OVH DNS Authenticator plugin fo
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.31.0:../../security/py-certbot
-DEPENDS+= ${PYPKGPREFIX}-lexicon-[0-9]*:../../net/py-lexicon
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-lexicon>=2.7.14:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
Index: pkgsrc/security/py-certbot-dns-ovh/distinfo
diff -u pkgsrc/security/py-certbot-dns-ovh/distinfo:1.3 pkgsrc/security/py-certbot-dns-ovh/distinfo:1.4
--- pkgsrc/security/py-certbot-dns-ovh/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-ovh/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-dns-ovh-0.33.1.tar.gz) = 41372afbd7931ad762971275f69f9e1b75a0fb7a
-RMD160 (certbot-dns-ovh-0.33.1.tar.gz) = a817deee4cb7e4acc1ea2362f2d322dfcf1d0f1c
-SHA512 (certbot-dns-ovh-0.33.1.tar.gz) = 99daf7801b74f6fa01cd0884febc704ed505446832c01e1a3bb4f4ef28ccb5bda2e323014da09a8a4b4a6c02adab2e7e6acffa34c2cb98f8ba019f34055b5dbe
-Size (certbot-dns-ovh-0.33.1.tar.gz) = 11674 bytes
+SHA1 (certbot-dns-ovh-0.34.1.tar.gz) = 3dcd87311bd84ec8971af238c9423cf621d2ca91
+RMD160 (certbot-dns-ovh-0.34.1.tar.gz) = 0f230a8458153f6be300d9155d92bbc863bdf88f
+SHA512 (certbot-dns-ovh-0.34.1.tar.gz) = fdfc61e0ee9f36f80fe4896c97d83cd6dda455dbf55df7791d2bc122db50a1ba49b89dc1569d4a8de73ffb9daecafa89c3a247d11ce4a32f184b8892eb87c8ac
+Size (certbot-dns-ovh-0.34.1.tar.gz) = 11864 bytes
Index: pkgsrc/security/py-certbot-dns-rfc2136/Makefile
diff -u pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.5 pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.6
--- pkgsrc/security/py-certbot-dns-rfc2136/Makefile:1.5 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-rfc2136/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.6 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-dns-rfc2136-0.33.1
+DISTNAME= certbot-dns-rfc2136-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-rfc2136/}
@@ -10,8 +10,8 @@ MAINTAINER= triaxx%NetBSD.org@localhost
HOMEPAGE= https://github.com/certbot/certbot
LICENSE= apache-2.0
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.21.1:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.21.1:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-dns-[0-9]*:../../net/py-dns
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
Index: pkgsrc/security/py-certbot-dns-rfc2136/distinfo
diff -u pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.3 pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.4
--- pkgsrc/security/py-certbot-dns-rfc2136/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-rfc2136/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-dns-rfc2136-0.33.1.tar.gz) = a1a0b5a0f000381eccb7f1129b6fe4dd8c9f4e28
-RMD160 (certbot-dns-rfc2136-0.33.1.tar.gz) = f3dffc542d069140847b8075259beeba35dd34cd
-SHA512 (certbot-dns-rfc2136-0.33.1.tar.gz) = a8e959e26b81bf1606014d224179da31e362fae3b1d2287358ca9709e296fdc3c2026d750fb9ef38756c67d08d0b8782d3c7ef3065e6021b614a4649e0a0abdb
-Size (certbot-dns-rfc2136-0.33.1.tar.gz) = 13671 bytes
+SHA1 (certbot-dns-rfc2136-0.34.1.tar.gz) = da5dc14df192bcb7443fccd5e991a0f8fd4f7887
+RMD160 (certbot-dns-rfc2136-0.34.1.tar.gz) = 364a1d138e9a0f5a0563c7012dd2c05f6159ed15
+SHA512 (certbot-dns-rfc2136-0.34.1.tar.gz) = 0f6071e296b62665bdd58e020aad17bcdc8ae75f577b64c7dbf7051b7018ea3ad45a663c1a7f2914148a9f7942c5c2249ecfa3795ef85bab70fa600727e34a5a
+Size (certbot-dns-rfc2136-0.34.1.tar.gz) = 13978 bytes
Index: pkgsrc/security/py-certbot-dns-route53/Makefile
diff -u pkgsrc/security/py-certbot-dns-route53/Makefile:1.4 pkgsrc/security/py-certbot-dns-route53/Makefile:1.5
--- pkgsrc/security/py-certbot-dns-route53/Makefile:1.4 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-route53/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.5 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-dns-route53-0.33.1
+DISTNAME= certbot-dns-route53-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/certbot/certbot-dns-route53/}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-route53/}
@@ -10,9 +10,9 @@ MAINTAINER= triaxx%NetBSD.org@localhost
HOMEPAGE= https://github.com/certbot/certbot
LICENSE= apache-2.0
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.25.0:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
DEPENDS+= ${PYPKGPREFIX}-boto3-[0-9]*:../../net/py-boto3
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.21.1:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
Index: pkgsrc/security/py-certbot-dns-route53/distinfo
diff -u pkgsrc/security/py-certbot-dns-route53/distinfo:1.3 pkgsrc/security/py-certbot-dns-route53/distinfo:1.4
--- pkgsrc/security/py-certbot-dns-route53/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-route53/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-dns-route53-0.33.1.tar.gz) = 6774311264f2338641b3fdddff9b5596a0e18b53
-RMD160 (certbot-dns-route53-0.33.1.tar.gz) = 0777de551e755ce767f02830b9a568608f656b95
-SHA512 (certbot-dns-route53-0.33.1.tar.gz) = 24e35d11731f5a728d92f19669df69ec0e21fb3d2f48597ce2255ccefc2695c4d0b5344afc1ccc668c3a5e1063428c2d7f434073e884da1a784f4002fe0682b5
-Size (certbot-dns-route53-0.33.1.tar.gz) = 14500 bytes
+SHA1 (certbot-dns-route53-0.34.1.tar.gz) = 24a0eaf29f152ace9d3eaa92f253a064cc68264b
+RMD160 (certbot-dns-route53-0.34.1.tar.gz) = 1caf7bf1f2161325aee101d2109bca424833f1f8
+SHA512 (certbot-dns-route53-0.34.1.tar.gz) = 86b94653c20f5ef60f32e421172bb0e8fb59f7f82cd40150b312e5f253619b60263af63b660835481cc411adf6d9398613c44465174929c8f41222fc26d4909e
+Size (certbot-dns-route53-0.34.1.tar.gz) = 14180 bytes
Index: pkgsrc/security/py-certbot-dns-sakuracloud/Makefile
diff -u pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.4 pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.5
--- pkgsrc/security/py-certbot-dns-sakuracloud/Makefile:1.4 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-sakuracloud/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.5 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-dns-sakuracloud-0.33.1
+DISTNAME= certbot-dns-sakuracloud-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-dns-sakuracloud/}
@@ -11,8 +11,8 @@ HOMEPAGE= https://github.com/certbot/cer
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.31.0:../../security/py-certbot
-DEPENDS+= ${PYPKGPREFIX}-lexicon-[0-9]*:../../net/py-lexicon
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-lexicon>=2.1.23:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
Index: pkgsrc/security/py-certbot-dns-sakuracloud/distinfo
diff -u pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.3 pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.4
--- pkgsrc/security/py-certbot-dns-sakuracloud/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-dns-sakuracloud/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-dns-sakuracloud-0.33.1.tar.gz) = 0cef542a598c12953a2a051c3eb0cfea90b8507e
-RMD160 (certbot-dns-sakuracloud-0.33.1.tar.gz) = 6663d7c9acbb946288202c2a6ba5c9d933d66987
-SHA512 (certbot-dns-sakuracloud-0.33.1.tar.gz) = 17757b19c7e58cc19b87daf5d23a854d4eefbfca26e613240af625953635527cda7d71af8d329dd5ebb7e97b9e10b217a3ac43f4a1743399ff80ab3ad577c773
-Size (certbot-dns-sakuracloud-0.33.1.tar.gz) = 11590 bytes
+SHA1 (certbot-dns-sakuracloud-0.34.1.tar.gz) = 8065756e71afd80f8893256de1dbafe59fe86428
+RMD160 (certbot-dns-sakuracloud-0.34.1.tar.gz) = a3c303ee242b49f65bde1c82830232d76f06113f
+SHA512 (certbot-dns-sakuracloud-0.34.1.tar.gz) = 01a08fe2e614b9ff1b0fb5219eb5ce8fea8bec9d4730d4558c361886abea725a33158a9a529cffbc030b2be28889fbe50cbd1bf73a844b75372db04ac019f22c
+Size (certbot-dns-sakuracloud-0.34.1.tar.gz) = 11326 bytes
Index: pkgsrc/security/py-certbot-nginx/Makefile
diff -u pkgsrc/security/py-certbot-nginx/Makefile:1.4 pkgsrc/security/py-certbot-nginx/Makefile:1.5
--- pkgsrc/security/py-certbot-nginx/Makefile:1.4 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-nginx/Makefile Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2019/04/08 15:48:31 adam Exp $
+# $NetBSD: Makefile,v 1.5 2019/05/07 08:50:36 adam Exp $
-DISTNAME= certbot-nginx-0.33.1
+DISTNAME= certbot-nginx-0.34.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= security python
MASTER_SITES= ${MASTER_SITE_PYPI:=c/certbot-nginx/}
@@ -11,8 +11,8 @@ HOMEPAGE= https://github.com/certbot/cer
LICENSE= apache-2.0
DEPENDS+= ${PYPKGPREFIX}-OpenSSL-[0-9]*:../../security/py-OpenSSL
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.26.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=0.22.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=0.34.0:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-pyparsing>=1.5.5:../../devel/py-pyparsing
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
Index: pkgsrc/security/py-certbot-nginx/distinfo
diff -u pkgsrc/security/py-certbot-nginx/distinfo:1.3 pkgsrc/security/py-certbot-nginx/distinfo:1.4
--- pkgsrc/security/py-certbot-nginx/distinfo:1.3 Mon Apr 8 15:48:31 2019
+++ pkgsrc/security/py-certbot-nginx/distinfo Tue May 7 08:50:36 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2019/04/08 15:48:31 adam Exp $
+$NetBSD: distinfo,v 1.4 2019/05/07 08:50:36 adam Exp $
-SHA1 (certbot-nginx-0.33.1.tar.gz) = 0afb7a472f4c0f7db8f656fb9c0831874da1570c
-RMD160 (certbot-nginx-0.33.1.tar.gz) = 7a4838b7d8e6717ea77431ffc6794b9660a1ec16
-SHA512 (certbot-nginx-0.33.1.tar.gz) = 1dab0140406a81e89f56926690333f1bf71ac0e9e3c4eecaa7671ca9b0db8ffa020a6e76c5a655301970531753e262107107940fbd32364be8bad62a3a4beb67
-Size (certbot-nginx-0.33.1.tar.gz) = 75629 bytes
+SHA1 (certbot-nginx-0.34.1.tar.gz) = 26b72e1c0e88bb2fb7305c179165fdafd864fedd
+RMD160 (certbot-nginx-0.34.1.tar.gz) = 85a25b5bb52093f19ba452b487be967d7531ecb6
+SHA512 (certbot-nginx-0.34.1.tar.gz) = 4ad4e11b2591d6ba5ed757367525b20606302a31f67f363b7077d9c90f48fa8dbf621064a02bfd1b49b86363bf962950ae495cc040546a2591269dbad45ca612
+Size (certbot-nginx-0.34.1.tar.gz) = 75851 bytes
Home |
Main Index |
Thread Index |
Old Index