pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security py-acme py-certbot*: updated to 1.18.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/97d1514b1203
branches: trunk
changeset: 456664:97d1514b1203
user: adam <adam%pkgsrc.org@localhost>
date: Thu Aug 05 10:52:00 2021 +0000
description:
py-acme py-certbot*: updated to 1.18.0
1.18.0
Added
New functions that Certbot plugins can use to interact with the user have been added to certbot.display.util. We plan to deprecate using IDisplay with zope in favor of these new functions in the
future.
The Plugin, Authenticator and Installer classes are added to certbot.interfaces module as alternatives to Certbot's current zope based plugin interfaces. The API of these interfaces is identical, but
they are based on Python's abc module instead of zope. Certbot will continue to detect plugins that implement either interface, but we plan to drop support for zope based interfaces in a future
version of Certbot.
The class certbot.configuration.NamespaceConfig is added to the Certbot's public API.
Changed
When self-validating HTTP-01 challenges using acme.challenges.HTTP01Response.simple_verify, we now assume that the response is composed of only ASCII characters. Previously we were relying on the
default behavior of the requests library which tries to guess the encoding of the response which was error prone.
acme: the .client.Client and .client.BackwardsCompatibleClientV2 classes are now deprecated in favor of .client.ClientV2.
The certbot.tests.patch_get_utility* functions have been deprecated. Plugins should now patch certbot.display.util themselves in their tests or use certbot.tests.util.patch_display_util as a
temporary workaround.
In order to simplify the transition to Certbot's new plugin interfaces, the classes Plugin and Installer in certbot.plugins.common module and certbot.plugins.dns_common.DNSAuthenticator now implement
Certbot's new plugin interfaces. The Certbot plugins based on these classes are now automatically detected as implementing these interfaces.
We added a dependency on chardet to our acme library so that it will be used over charset_normalizer in newer versions of requests.
Fixed
The Apache authenticator no longer crashes with "Unable to insert label" when encountering a completely empty vhost. This issue affected Certbot 1.17.0.
Users of the Certbot snap on Debian 9 (Stretch) should no longer encounter an "access denied" error when installing DNS plugins.
diffstat:
security/py-acme/Makefile | 7 +++----
security/py-acme/distinfo | 10 +++++-----
security/py-certbot-apache/Makefile | 7 +++----
security/py-certbot-apache/distinfo | 10 +++++-----
security/py-certbot-dns-digitalocean/Makefile | 6 +++---
security/py-certbot-dns-digitalocean/distinfo | 10 +++++-----
security/py-certbot-dns-dnsimple/Makefile | 6 +++---
security/py-certbot-dns-dnsimple/distinfo | 10 +++++-----
security/py-certbot-dns-dnsmadeeasy/distinfo | 10 +++++-----
security/py-certbot-dns-gehirn/Makefile | 8 ++++----
security/py-certbot-dns-gehirn/distinfo | 10 +++++-----
security/py-certbot-dns-google/Makefile | 6 +++---
security/py-certbot-dns-google/distinfo | 10 +++++-----
security/py-certbot-dns-linode/Makefile | 8 ++++----
security/py-certbot-dns-linode/distinfo | 10 +++++-----
security/py-certbot-dns-luadns/Makefile | 8 ++++----
security/py-certbot-dns-luadns/distinfo | 10 +++++-----
security/py-certbot-dns-nsone/Makefile | 8 ++++----
security/py-certbot-dns-nsone/distinfo | 10 +++++-----
security/py-certbot-dns-ovh/Makefile | 8 ++++----
security/py-certbot-dns-ovh/distinfo | 10 +++++-----
security/py-certbot-dns-rfc2136/Makefile | 6 +++---
security/py-certbot-dns-rfc2136/distinfo | 10 +++++-----
security/py-certbot-dns-route53/Makefile | 6 +++---
security/py-certbot-dns-route53/distinfo | 10 +++++-----
security/py-certbot-dns-sakuracloud/Makefile | 8 ++++----
security/py-certbot-dns-sakuracloud/distinfo | 10 +++++-----
security/py-certbot-nginx/Makefile | 6 +++---
security/py-certbot-nginx/distinfo | 10 +++++-----
security/py-certbot/Makefile | 4 ++--
security/py-certbot/Makefile.common | 4 ++--
security/py-certbot/PLIST | 11 +++++++----
security/py-certbot/distinfo | 10 +++++-----
33 files changed, 139 insertions(+), 138 deletions(-)
diffs (truncated from 618 to 300 lines):
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-acme/Makefile
--- a/security/py-acme/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-acme/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.24 2021/02/09 10:06:41 adam Exp $
+# $NetBSD: Makefile,v 1.25 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -8,15 +8,14 @@
COMMENT= ACME protocol implementation in Python
DEPENDS+= ${PYPKGPREFIX}-OpenSSL>=17.3.0:../../security/py-OpenSSL
+DEPENDS+= ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet
DEPENDS+= ${PYPKGPREFIX}-cryptography>=2.1.4:../../security/py-cryptography
DEPENDS+= ${PYPKGPREFIX}-josepy>=1.1.0:../../security/py-josepy
-DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
-DEPENDS+= ${PYPKGPREFIX}-requests>2.10:../../devel/py-requests
+DEPENDS+= ${PYPKGPREFIX}-requests>=2.14.2:../../devel/py-requests
DEPENDS+= ${PYPKGPREFIX}-requests-toolbelt>=0.3.0:../../devel/py-requests-toolbelt
DEPENDS+= ${PYPKGPREFIX}-rfc3339-[0-9]*:../../time/py-rfc3339
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
-DEPENDS+= ${PYPKGPREFIX}-six>=1.11.0:../../lang/py-six
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-acme/distinfo
--- a/security/py-acme/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-acme/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.29 2021/07/23 07:26:43 adam Exp $
+$NetBSD: distinfo,v 1.30 2021/08/05 10:52:00 adam Exp $
-SHA1 (acme-1.17.0.tar.gz) = a1ff27c9a1c3338657284b6572367c513b42c041
-RMD160 (acme-1.17.0.tar.gz) = a9fc73a1ae6a4a8779b251a029a6347e28b432db
-SHA512 (acme-1.17.0.tar.gz) = f60fd0ef2af928f09c33bd40b65a0df9b197a63d50603432bafcfde9511a99228449795c6c042c7e18cbb9f9bab163f0db1b48747d13958fd66fa6fb1a6a1429
-Size (acme-1.17.0.tar.gz) = 90719 bytes
+SHA1 (acme-1.18.0.tar.gz) = 93cd56b2afe897031543709d6516c3b9134dcb34
+RMD160 (acme-1.18.0.tar.gz) = 5bcb141f089746df3219798acbda6be52b53c1df
+SHA512 (acme-1.18.0.tar.gz) = 067c6b3e970bd4b15d8d56d00ec646c06cdcfc9bd29928dc71eb59a52f058814d96fcf1e283080707445271c1cd7bed78451c44838738d53010f6d52a3a7fe83
+Size (acme-1.18.0.tar.gz) = 91080 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-apache/Makefile
--- a/security/py-certbot-apache/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-apache/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2021/02/09 10:06:42 adam Exp $
+# $NetBSD: Makefile,v 1.14 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,10 +7,9 @@
COMMENT= Apache plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
DEPENDS+= ${PYPKGPREFIX}-augeas-[0-9]*:../../sysutils/py-augeas
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.6.0:../../security/py-certbot
-DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeComponent-[0-9]*:../../devel/py-ZopeComponent
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-apache/distinfo
--- a/security/py-certbot-apache/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-apache/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.29 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.30 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-apache-1.17.0.tar.gz) = 8366b6e97a4010d187d53a48cae185e321806b32
-RMD160 (certbot-apache-1.17.0.tar.gz) = 7cd6ce4ec5a384046a5f94e65838bbdf96d5e4e1
-SHA512 (certbot-apache-1.17.0.tar.gz) = 2ccee9f47ad0a873747442d5f06295366a67e4793e59c6b710d335dee1a074133e64b2eb8c8246c64d88a2cda0c26176b572a9a7f98cca0368d1047feb65f653
-Size (certbot-apache-1.17.0.tar.gz) = 221846 bytes
+SHA1 (certbot-apache-1.18.0.tar.gz) = e2128d72915e7376bb23b600ce16e1f894b96872
+RMD160 (certbot-apache-1.18.0.tar.gz) = 30507ae1abb3c8d5036b725c48f21729da8987dd
+SHA512 (certbot-apache-1.18.0.tar.gz) = f528d5a1a7fff44f685c3155b27bca20723e318817f3499e60a1eb66272e59a644234957325a46366d6f1e993bcb57dee0a8d5acf82cd99a5eaba17dd60f85bb
+Size (certbot-apache-1.18.0.tar.gz) = 221569 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-digitalocean/Makefile
--- a/security/py-certbot-dns-digitalocean/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-digitalocean/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2021/02/09 10:06:42 adam Exp $
+# $NetBSD: Makefile,v 1.5 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,8 +7,8 @@
COMMENT= DigitalOcean DNS Authenticator plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.1.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-digitalocean>=1.11:../../net/py-digitalocean
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-digitalocean/distinfo
--- a/security/py-certbot-dns-digitalocean/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-digitalocean/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.17 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.18 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-dns-digitalocean-1.17.0.tar.gz) = 987ac6839e3ba82ba4feeece6bbb093f12c9480d
-RMD160 (certbot-dns-digitalocean-1.17.0.tar.gz) = d0c6ff9d7931b975dbe6fd4807c78fb13bf784d9
-SHA512 (certbot-dns-digitalocean-1.17.0.tar.gz) = 487fdb1f9b62380ee738a3285a71ad1ae192ac3338281fb73b29feb2cde291a68b56220dba26e90291dbcf3b0260d879954ce2913e7d92cf761ce97c410f04ad
-Size (certbot-dns-digitalocean-1.17.0.tar.gz) = 14076 bytes
+SHA1 (certbot-dns-digitalocean-1.18.0.tar.gz) = 7ee397128dafc2b7f22d8b6391c1a913e6d43a1a
+RMD160 (certbot-dns-digitalocean-1.18.0.tar.gz) = 9fcbc4a10dcad8fa9d4fd7b57f89d6817e9386ac
+SHA512 (certbot-dns-digitalocean-1.18.0.tar.gz) = 1840ee8fe934488ecdd23145b4a7140ddcd890ca240cbb5faead58c855b846064be46098540511fd1fe94203d2b68d24c30b712862abee594836895f85dd3ac8
+Size (certbot-dns-digitalocean-1.18.0.tar.gz) = 13973 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-dnsimple/Makefile
--- a/security/py-certbot-dns-dnsimple/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-dnsimple/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2021/02/09 10:06:42 adam Exp $
+# $NetBSD: Makefile,v 1.8 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,8 +7,8 @@
COMMENT= DNSimple DNS Authenticator plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.1.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.2.1:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-dnsimple/distinfo
--- a/security/py-certbot-dns-dnsimple/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-dnsimple/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.24 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.25 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-dns-dnsimple-1.17.0.tar.gz) = 860c038d5aa7a0afc0b7eec6a5cbb9e84771ea3e
-RMD160 (certbot-dns-dnsimple-1.17.0.tar.gz) = a604d184037ae4d61c7294b5955bb7a9f473c323
-SHA512 (certbot-dns-dnsimple-1.17.0.tar.gz) = 3d9e52fa248ba838f31811bad84bf3bd2a42dbe8e8a1621bcdc7f110c514ba5dab519494f74051ea149242a57cbf488f85d52928a07248aac1c2141eab9b6f1d
-Size (certbot-dns-dnsimple-1.17.0.tar.gz) = 12674 bytes
+SHA1 (certbot-dns-dnsimple-1.18.0.tar.gz) = 05050bc3fe245cbc0009a0d03041a8c33c36137e
+RMD160 (certbot-dns-dnsimple-1.18.0.tar.gz) = 6ff64381a455a9bb4830d6b64c6356183e14fcbc
+SHA512 (certbot-dns-dnsimple-1.18.0.tar.gz) = 7873cd577acb19d664352a8ad2c79a6924826e21bd8794e305ab2589c8e89da795490f63777aed34bb561ff4237ec80af9a7a9ede8da4e65b1ce671dcf409604
+Size (certbot-dns-dnsimple-1.18.0.tar.gz) = 12394 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-dnsmadeeasy/distinfo
--- a/security/py-certbot-dns-dnsmadeeasy/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-dnsmadeeasy/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.24 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.25 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-dns-dnsmadeeasy-1.17.0.tar.gz) = ce1d8d7c8cacda929af4bd6d1c1fd303087acceb
-RMD160 (certbot-dns-dnsmadeeasy-1.17.0.tar.gz) = 418c162de0be818881cc7da69d2e0d1243997ca2
-SHA512 (certbot-dns-dnsmadeeasy-1.17.0.tar.gz) = 30d2018d6d32bbdab74445d28078e06285c6f160b8cc94bc5526d079bbf1c6c367dde2b0f6f3c0ae946961e6f0755e33879ec1532e95330697e9c4a63e5cf73e
-Size (certbot-dns-dnsmadeeasy-1.17.0.tar.gz) = 12717 bytes
+SHA1 (certbot-dns-dnsmadeeasy-1.18.0.tar.gz) = 7f884050016b4a0f0e7ab83909f3c4a3760f187a
+RMD160 (certbot-dns-dnsmadeeasy-1.18.0.tar.gz) = 629bff3f6d39b2808416a88c06aa2f16c5e83a75
+SHA512 (certbot-dns-dnsmadeeasy-1.18.0.tar.gz) = 471ca3241b79bc309a558438425b7d08e43ddd3ee50a26e0bfe0680d74ed481eb2ddf8300acbc7a6e43037105c9585b5fa61082dc145e73357ce5f1584df9c40
+Size (certbot-dns-dnsmadeeasy-1.18.0.tar.gz) = 12597 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-gehirn/Makefile
--- a/security/py-certbot-dns-gehirn/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-gehirn/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2021/06/14 12:15:39 adam Exp $
+# $NetBSD: Makefile,v 1.8 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,9 +7,9 @@
COMMENT= Gehirn Infrastracture Service DNS Authenticator plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.1.0:../../security/py-certbot
-DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.1.0:../../net/py-lexicon
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.2.1:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-gehirn/distinfo
--- a/security/py-certbot-dns-gehirn/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-gehirn/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.24 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.25 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-dns-gehirn-1.17.0.tar.gz) = 4b92637248697b85170deea7adb48f96aaf7ee89
-RMD160 (certbot-dns-gehirn-1.17.0.tar.gz) = fe8e8c3fd60c70a16e1d06e992ed7881b052a6a0
-SHA512 (certbot-dns-gehirn-1.17.0.tar.gz) = ff6146ca6cde497bb9b0bb845000c8bc456e30d2bd73c2dff7f0f1d26f6f0894bee7d2f3219140d97545fdead20e1f541b2861e6066943e3f5558fef7fb6aa4e
-Size (certbot-dns-gehirn-1.17.0.tar.gz) = 12610 bytes
+SHA1 (certbot-dns-gehirn-1.18.0.tar.gz) = ec3759c3a377185aaaa254acd710860143f16847
+RMD160 (certbot-dns-gehirn-1.18.0.tar.gz) = cf76a57520b2e30f68f016630a1684b8f2479cf7
+SHA512 (certbot-dns-gehirn-1.18.0.tar.gz) = 928ab6513f072020ac9c53a5fc04700475adac0a55f9794eead58a81959af016b0b2149d67283da818902355fb70d41f22c47ce194d46891ad39e19a06c336aa
+Size (certbot-dns-gehirn-1.18.0.tar.gz) = 12495 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-google/Makefile
--- a/security/py-certbot-dns-google/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-google/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2021/02/09 10:06:42 adam Exp $
+# $NetBSD: Makefile,v 1.9 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,8 +7,8 @@
COMMENT= Google Cloud DNS Authenticator plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.29.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.1.0:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
DEPENDS+= ${PYPKGPREFIX}-google-api-python-client>=1.5.5:../../www/py-google-api-python-client
DEPENDS+= ${PYPKGPREFIX}-httplib2-[0-9]*:../../www/py-httplib2
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-google/distinfo
--- a/security/py-certbot-dns-google/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-google/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.24 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.25 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-dns-google-1.17.0.tar.gz) = 259b28281830d182d3b3024ab9e0ea03bc87d403
-RMD160 (certbot-dns-google-1.17.0.tar.gz) = 64d28f74b6d2d65339ca474212ade2438e439ede
-SHA512 (certbot-dns-google-1.17.0.tar.gz) = e3d296b0cffae7cc6dc957da414a5f04dcfb0fca402895b29fa5ba8812b7fb9fe7b42d689a6d6e5234f4e540479a3eccb3ea8939f86976fb29a17d0cfc120e74
-Size (certbot-dns-google-1.17.0.tar.gz) = 23723 bytes
+SHA1 (certbot-dns-google-1.18.0.tar.gz) = 481c1e7496a842471ff51bcd166c958fb52f4e01
+RMD160 (certbot-dns-google-1.18.0.tar.gz) = ceda158804d3dc3cb68a300fd1cd6509edbf46e9
+SHA512 (certbot-dns-google-1.18.0.tar.gz) = db0b176904beeddaf8b0be54c296884c5f369b4b9cc17085880efc4ecbf0ae6f7b96462d10f1b5729c559c56410002b704c631c02acbc4a9ca92cfaa898a084b
+Size (certbot-dns-google-1.18.0.tar.gz) = 23620 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-linode/Makefile
--- a/security/py-certbot-dns-linode/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-linode/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2021/06/14 12:15:40 adam Exp $
+# $NetBSD: Makefile,v 1.9 2021/08/05 10:52:00 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,9 +7,9 @@
COMMENT= Linode DNS Authenticator plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.1.0:../../security/py-certbot
-DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.1.0:../../net/py-lexicon
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.2.1:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-linode/distinfo
--- a/security/py-certbot-dns-linode/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-linode/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.24 2021/07/23 07:26:44 adam Exp $
+$NetBSD: distinfo,v 1.25 2021/08/05 10:52:00 adam Exp $
-SHA1 (certbot-dns-linode-1.17.0.tar.gz) = 749cd39306315360fff234d02826bdbb2df5bcc3
-RMD160 (certbot-dns-linode-1.17.0.tar.gz) = f0d710279480af36541562abe0be94cc9f5b787f
-SHA512 (certbot-dns-linode-1.17.0.tar.gz) = 1dbaa9ff4f27dacb873a4a27b37aef4e6ccf7556325b6acc5318fc88f7d975c2a55bbb7c61af73c4328af066db6ec49763c859edd2d0351e5ba8c954180a93b2
-Size (certbot-dns-linode-1.17.0.tar.gz) = 13088 bytes
+SHA1 (certbot-dns-linode-1.18.0.tar.gz) = 59b3c54d58b74f2243ccf8c9e309a9cecb539890
+RMD160 (certbot-dns-linode-1.18.0.tar.gz) = 2006f7d912bd8ec9720d7cb6b6b4bca7787e7ed6
+SHA512 (certbot-dns-linode-1.18.0.tar.gz) = 294ddb0f868eec2a4bcbdb23e83f8e4f18806631fdf482097f361ef3915805d490e3aabebc7605f32c4bb767f15922aee6a095895536c01de719e4900814620c
+Size (certbot-dns-linode-1.18.0.tar.gz) = 12979 bytes
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-luadns/Makefile
--- a/security/py-certbot-dns-luadns/Makefile Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-luadns/Makefile Thu Aug 05 10:52:00 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2021/06/14 12:15:40 adam Exp $
+# $NetBSD: Makefile,v 1.13 2021/08/05 10:52:01 adam Exp $
.include "../../security/py-certbot/Makefile.common"
@@ -7,9 +7,9 @@
COMMENT= LuaDNS Authenticator plugin for Certbot
-DEPENDS+= ${PYPKGPREFIX}-acme>=0.31.0:../../security/py-acme
-DEPENDS+= ${PYPKGPREFIX}-certbot>=1.1.0:../../security/py-certbot
-DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.1.0:../../net/py-lexicon
+DEPENDS+= ${PYPKGPREFIX}-acme>=${CERTBOT_VERSION}:../../security/py-acme
+DEPENDS+= ${PYPKGPREFIX}-certbot>=${CERTBOT_VERSION}:../../security/py-certbot
+DEPENDS+= ${PYPKGPREFIX}-lexicon>=3.2.1:../../net/py-lexicon
DEPENDS+= ${PYPKGPREFIX}-setuptools>=39.0.1:../../devel/py-setuptools
DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface
diff -r 6c5093f9d6df -r 97d1514b1203 security/py-certbot-dns-luadns/distinfo
--- a/security/py-certbot-dns-luadns/distinfo Thu Aug 05 10:14:30 2021 +0000
+++ b/security/py-certbot-dns-luadns/distinfo Thu Aug 05 10:52:00 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.29 2021/07/23 07:26:44 adam Exp $
Home |
Main Index |
Thread Index |
Old Index