diff --git a/certbot-2.6.0.tar.gz b/certbot-2.6.0.tar.gz deleted file mode 100644 index 9e859fd..0000000 --- a/certbot-2.6.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c4de6bb0d092729650ed90a5bdb513932bdc47ec5f7f98049180ab8e4a835dab -size 428303 diff --git a/certbot-2.7.3.tar.gz b/certbot-2.7.3.tar.gz new file mode 100644 index 0000000..d249942 --- /dev/null +++ b/certbot-2.7.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6f5dbdbd36672925572f44feccef77501a36d4eb68d63ecd5e372f09606eb0 +size 434555 diff --git a/python-certbot.changes b/python-certbot.changes index 748570f..b5cff9f 100644 --- a/python-certbot.changes +++ b/python-certbot.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Mon Oct 30 15:37:44 UTC 2023 - Markéta Machová + +- Update to 2.7.3 + * Add certbot.util.LooseVersion class. See GH #9489. + * NamespaceConfig now tracks how its arguments were set via a dictionary, allowing us to remove a bunch + of global state previously needed to inspect whether a user set an argument or not. + * Support for Python 3.7 was deprecated and will be removed in our next planned release. + * Added RENEWED_DOMAINS and FAILED_DOMAINS environment variables for consumption by post renewal hooks. + * Do not call deprecated datetime.utcnow() and datetime.utcfromtimestamp() + ------------------------------------------------------------------- Wed Jun 7 15:37:48 UTC 2023 - Markéta Machová diff --git a/python-certbot.spec b/python-certbot.spec index 56a51e3..8386a6f 100644 --- a/python-certbot.spec +++ b/python-certbot.spec @@ -19,17 +19,19 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-certbot -Version: 2.6.0 +Version: 2.7.3 Release: 0 Summary: ACME client License: Apache-2.0 URL: https://github.com/certbot/certbot Source0: https://files.pythonhosted.org/packages/source/c/certbot/certbot-%{version}.tar.gz BuildRequires: %{python_module acme >= %{version}} -BuildRequires: %{python_module configargparse >= 0.9.3} +BuildRequires: %{python_module configargparse >= 1.5.3} BuildRequires: %{python_module configobj >= 5.0.6} BuildRequires: %{python_module cryptography >= 3.2.1} BuildRequires: %{python_module distro >= 1.0.1} +BuildRequires: %{python_module importlib-metadata if %python-base < 3.10} +BuildRequires: %{python_module importlib-resources if %python-base < 3.9} BuildRequires: %{python_module josepy >= 1.13.0} BuildRequires: %{python_module parsedatetime >= 2.4} BuildRequires: %{python_module pyRFC3339} @@ -39,7 +41,7 @@ BuildRequires: %{python_module setuptools >= 41.6.0} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-acme >= %{version} -Requires: python-configargparse >= 0.9.3 +Requires: python-configargparse >= 1.5.3 Requires: python-configobj >= 5.0.6 Requires: python-cryptography >= 3.2.1 Requires: python-distro >= 1.0.1 @@ -50,6 +52,12 @@ Requires: python-pytz >= 2019.3 Requires: python-setuptools >= 41.6.0 Requires(post): update-alternatives Requires(postun):update-alternatives +%if %{python_version_nodots} < 310 +Requires: python-importlib-metadata +%endif +%if %{python_version_nodots} < 39 +Requires: python-importlib-resources +%endif Provides: certbot = %{version} Obsoletes: certbot < %{version} BuildArch: noarch