* Support for Python 3.12 was added.
* Updates `joinpath` syntax to only use one addition per call,
because the multiple inputs version was causing mypy errors
on Python 3.10.
* Makes the `reconfigure` verb actually use the staging server
for the dry run to check the new configuration.
* Disable old SSL versions and ciphersuites and remove SSLCompression off
* Stop disabling TLS session tickets in Apache as it caused TLS
* The error message when Certbot's Apache plugin is unable to
* Tests execution for certbot, certbot-apache and certbot-nginx
* Apache plugin now attempts to configure all VirtualHosts matching
requested domain name instead of only a single one when answering
* The grammar used by Augeas parser in Apache plugin was updated
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:certbot/python-certbot-apache?expand=0&rev=91
62 lines
1.7 KiB
RPMSpec
62 lines
1.7 KiB
RPMSpec
#
|
|
# spec file for package python-certbot-apache
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-certbot-apache
|
|
Version: 2.9.0
|
|
Release: 0
|
|
Summary: Apache plugin for Certbot
|
|
License: Apache-2.0
|
|
URL: https://github.com/letsencrypt/letsencrypt
|
|
Source: https://files.pythonhosted.org/packages/source/c/certbot-apache/certbot-apache-%{version}.tar.gz
|
|
BuildRequires: %{python_module augeas}
|
|
BuildRequires: %{python_module certbot >= %{version}}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: apache2 >= 2.3
|
|
Requires: python-acme >= %{version}
|
|
Requires: python-augeas
|
|
Requires: python-certbot >= %{version}
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
The Apache plugin for Certbot.
|
|
|
|
%prep
|
|
%setup -q -n certbot-apache-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE.txt
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|