diff --git a/security/py-certbot-dns-cloudflare/Makefile b/security/py-certbot-dns-cloudflare/Makefile index 87772f23881d..e5ba275f7908 100644 --- a/security/py-certbot-dns-cloudflare/Makefile +++ b/security/py-certbot-dns-cloudflare/Makefile @@ -1,31 +1,32 @@ PORTNAME= certbot-dns-cloudflare PORTVERSION= ${ACME_VERSION} +PORTREVISION= 1 CATEGORIES= security python MASTER_SITES= PYPI \ https://github.com/certbot/certbot/releases/download/v${PORTVERSION}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= certbot_dns_cloudflare-${PORTVERSION} MAINTAINER= python@FreeBSD.org COMMENT= Cloudflare DNS plugin for Certbot WWW= https://certbot.eff.org/ \ https://github.com/certbot/certbot \ https://github.com/certbot/certbot/tree/master/certbot-dns-cloudflare LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}acme>=${ACME_VERSION},1:security/py-acme@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}certbot>=${ACME_VERSION},1:security/py-certbot@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}cloudflare>=1.5.1<2.20:dns/py-cloudflare@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cloudflare>=1.5.1<2.20_99:dns/py-cloudflare@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setuptools>=41.6.0:devel/py-setuptools@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent pep517 NO_ARCH= yes .include "${.CURDIR}/../py-acme/version.mk" .include diff --git a/security/py-certbot-dns-cloudflare/files/patch-cloudflare b/security/py-certbot-dns-cloudflare/files/patch-cloudflare new file mode 100644 index 000000000000..c7e24299416b --- /dev/null +++ b/security/py-certbot-dns-cloudflare/files/patch-cloudflare @@ -0,0 +1,28 @@ +--- certbot_dns_cloudflare/_internal/dns_cloudflare.py.orig 2024-06-05 21:34:02 UTC ++++ certbot_dns_cloudflare/_internal/dns_cloudflare.py +@@ -99,12 +99,12 @@ class _CloudflareClient: + # We can't use named arguments in this case, as it would break compatibility with + # the Cloudflare library since version 2.10.1, as the `token` argument was used for + # tokens and keys alike and the `key` argument did not exist in earlier versions. +- self.cf = CloudFlare.CloudFlare(email, api_key) ++ self.cf = CloudFlare.CloudFlare(email, api_key, warnings=False) + else: + # If no email was specified, we're using just a token. Let's use the named argument + # for simplicity, which is compatible with all (current) versions of the Cloudflare + # library. +- self.cf = CloudFlare.CloudFlare(token=api_token) ++ self.cf = CloudFlare.CloudFlare(token=api_token, warnings=False) + + def add_txt_record(self, domain: str, record_name: str, record_content: str, + record_ttl: int) -> None: +--- setup.py.orig 2024-06-05 21:34:03 UTC ++++ setup.py +@@ -9,7 +9,7 @@ install_requires = [ + install_requires = [ + # for now, do not upgrade to cloudflare>=2.20 to avoid deprecation warnings and the breaking + # changes in version 3.0. see https://github.com/certbot/certbot/issues/9938 +- 'cloudflare>=1.5.1, <2.20', ++ 'cloudflare>=1.5.1, <=2.20', + 'setuptools>=41.6.0', + ] +