Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-certbot-dns-route53 for openSUSE:Factory checked in at 2021-03-08 15:19:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-route53 (Old) and /work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-dns-route53" Mon Mar 8 15:19:54 2021 rev:25 rq:877606 version:1.13.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-certbot-dns-route53/python-certbot-dns-route53.changes 2021-01-08 17:40:29.201045965 +0100 +++ /work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new.2378/python-certbot-dns-route53.changes 2021-03-08 15:21:14.574113803 +0100 @@ -1,0 +2,6 @@ +Mon Mar 8 08:41:39 UTC 2021 - Mark??ta Machov?? <mmach...@suse.com> + +- update to version 1.13.0 + * Support for Python 2 has been removed. + +------------------------------------------------------------------- Old: ---- certbot-dns-route53-1.11.0.tar.gz New: ---- certbot-dns-route53-1.13.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-certbot-dns-route53.spec ++++++ --- /var/tmp/diff_new_pack.AyX5y4/_old 2021-03-08 15:21:15.226114280 +0100 +++ /var/tmp/diff_new_pack.AyX5y4/_new 2021-03-08 15:21:15.230114283 +0100 @@ -17,8 +17,9 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} +%define skip_python2 1 Name: python-certbot-dns-route53 -Version: 1.11.0 +Version: 1.13.0 Release: 0 Summary: Route53 DNS Authenticator plugin for Certbot License: Apache-2.0 @@ -59,7 +60,7 @@ %pytest %files %{python_files} -%doc README.md +%doc README.rst %license LICENSE.txt %{python_sitelib}/* ++++++ certbot-dns-route53-1.11.0.tar.gz -> certbot-dns-route53-1.13.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/MANIFEST.in new/certbot-dns-route53-1.13.0/MANIFEST.in --- old/certbot-dns-route53-1.11.0/MANIFEST.in 2021-01-05 18:37:05.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/MANIFEST.in 2021-03-02 22:37:04.000000000 +0100 @@ -1,5 +1,5 @@ include LICENSE.txt -include README +include README.rst recursive-include docs * recursive-include tests * global-exclude __pycache__ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/PKG-INFO new/certbot-dns-route53-1.13.0/PKG-INFO --- old/certbot-dns-route53-1.11.0/PKG-INFO 2021-01-05 18:37:48.025519400 +0100 +++ new/certbot-dns-route53-1.13.0/PKG-INFO 2021-03-02 22:39:32.690528000 +0100 @@ -1,6 +1,6 @@ -Metadata-Version: 1.2 +Metadata-Version: 2.1 Name: certbot-dns-route53 -Version: 1.11.0 +Version: 1.13.0 Summary: Route53 DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project @@ -15,8 +15,6 @@ Classifier: License :: OSI Approved :: Apache Software License Classifier: Operating System :: POSIX :: Linux Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 @@ -28,4 +26,5 @@ Classifier: Topic :: System :: Networking Classifier: Topic :: System :: Systems Administration Classifier: Topic :: Utilities -Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* +Requires-Python: >=3.6 +Provides-Extra: docs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/README.md new/certbot-dns-route53-1.13.0/README.md --- old/certbot-dns-route53-1.11.0/README.md 2021-01-05 18:37:05.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/README.md 1970-01-01 01:00:00.000000000 +0100 @@ -1,35 +0,0 @@ -## Route53 plugin for Let's Encrypt client - -### Before you start - -It's expected that the root hosted zone for the domain in question already -exists in your account. - -### Setup - -1. Create a virtual environment - -2. Update its pip and setuptools (`VENV/bin/pip install -U setuptools pip`) -to avoid problems with cryptography's dependency on setuptools>=11.3. - -3. Make sure you have libssl-dev and libffi (or your regional equivalents) -installed. You might have to set compiler flags to pick things up (I have to -use `CPPFLAGS=-I/usr/local/opt/openssl/include -LDFLAGS=-L/usr/local/opt/openssl/lib` on my macOS to pick up brew's openssl, -for example). - -4. Install this package. - -### How to use it - -Make sure you have access to AWS's Route53 service, either through IAM roles or -via `.aws/credentials`. Check out -[sample-aws-policy.json](examples/sample-aws-policy.json) for the necessary permissions. - -To generate a certificate: -``` -certbot certonly \ - -n --agree-tos --email dev...@company.com \ - --dns-route53 \ - -d MY.DOMAIN.NAME -``` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/README.rst new/certbot-dns-route53-1.13.0/README.rst --- old/certbot-dns-route53-1.11.0/README.rst 1970-01-01 01:00:00.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/README.rst 2021-03-02 22:37:04.000000000 +0100 @@ -0,0 +1 @@ +Amazon Web Services Route 53 DNS Authenticator plugin for Certbot diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/certbot_dns_route53.egg-info/PKG-INFO new/certbot-dns-route53-1.13.0/certbot_dns_route53.egg-info/PKG-INFO --- old/certbot-dns-route53-1.11.0/certbot_dns_route53.egg-info/PKG-INFO 2021-01-05 18:37:47.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/certbot_dns_route53.egg-info/PKG-INFO 2021-03-02 22:39:32.000000000 +0100 @@ -1,6 +1,6 @@ -Metadata-Version: 1.2 +Metadata-Version: 2.1 Name: certbot-dns-route53 -Version: 1.11.0 +Version: 1.13.0 Summary: Route53 DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project @@ -15,8 +15,6 @@ Classifier: License :: OSI Approved :: Apache Software License Classifier: Operating System :: POSIX :: Linux Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 @@ -28,4 +26,5 @@ Classifier: Topic :: System :: Networking Classifier: Topic :: System :: Systems Administration Classifier: Topic :: Utilities -Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* +Requires-Python: >=3.6 +Provides-Extra: docs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/certbot_dns_route53.egg-info/SOURCES.txt new/certbot-dns-route53-1.13.0/certbot_dns_route53.egg-info/SOURCES.txt --- old/certbot-dns-route53-1.11.0/certbot_dns_route53.egg-info/SOURCES.txt 2021-01-05 18:37:48.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/certbot_dns_route53.egg-info/SOURCES.txt 2021-03-02 22:39:32.000000000 +0100 @@ -1,6 +1,6 @@ LICENSE.txt MANIFEST.in -README.md +README.rst setup.cfg setup.py certbot_dns_route53/__init__.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/certbot_dns_route53.egg-info/requires.txt new/certbot-dns-route53-1.13.0/certbot_dns_route53.egg-info/requires.txt --- old/certbot-dns-route53-1.11.0/certbot_dns_route53.egg-info/requires.txt 2021-01-05 18:37:47.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/certbot_dns_route53.egg-info/requires.txt 2021-03-02 22:39:32.000000000 +0100 @@ -1,8 +1,9 @@ boto3 -setuptools +setuptools>=39.0.1 zope.interface acme>=0.29.0 certbot>=1.1.0 -[:python_version < "3.3"] -mock +[docs] +Sphinx>=1.0 +sphinx_rtd_theme diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/docs/conf.py new/certbot-dns-route53-1.13.0/docs/conf.py --- old/certbot-dns-route53-1.11.0/docs/conf.py 2021-01-05 18:37:05.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/docs/conf.py 2021-03-02 22:37:04.000000000 +0100 @@ -111,7 +111,7 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +#html_static_path = ['_static'] # -- Options for HTMLHelp output ------------------------------------------ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-dns-route53-1.11.0/setup.py new/certbot-dns-route53-1.13.0/setup.py --- old/certbot-dns-route53-1.11.0/setup.py 2021-01-05 18:37:07.000000000 +0100 +++ new/certbot-dns-route53-1.13.0/setup.py 2021-03-02 22:37:05.000000000 +0100 @@ -1,18 +1,16 @@ -from distutils.version import LooseVersion import os import sys -from setuptools import __version__ as setuptools_version from setuptools import find_packages from setuptools import setup -version = '1.11.0' +version = '1.13.0' # Remember to update local-oldest-requirements.txt when changing the minimum # acme/certbot version. install_requires = [ 'boto3', - 'setuptools', + 'setuptools>=39.0.1', 'zope.interface', ] @@ -27,14 +25,10 @@ if os.environ.get('SNAP_BUILD'): install_requires.append('packaging') -setuptools_known_environment_markers = (LooseVersion(setuptools_version) >= LooseVersion('36.2')) -if setuptools_known_environment_markers: - install_requires.append('mock ; python_version < "3.3"') -elif 'bdist_wheel' in sys.argv[1:]: - raise RuntimeError('Error, you are trying to build certbot wheels using an old version ' - 'of setuptools. Version 36.2+ of setuptools is required.') -elif sys.version_info < (3,3): - install_requires.append('mock') +docs_extras = [ + 'Sphinx>=1.0', # autodoc_member_order = 'bysource', autodoc_default_flags + 'sphinx_rtd_theme', +] setup( name='certbot-dns-route53', @@ -44,7 +38,7 @@ author="Certbot Project", author_email='client-...@letsencrypt.org', license='Apache License 2.0', - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*', + python_requires='>=3.6', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Plugins', @@ -52,8 +46,6 @@ 'License :: OSI Approved :: Apache Software License', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', @@ -70,6 +62,9 @@ include_package_data=True, install_requires=install_requires, keywords=['certbot', 'route53', 'aws'], + extras_require={ + 'docs': docs_extras, + }, entry_points={ 'certbot.plugins': [ 'dns-route53 = certbot_dns_route53._internal.dns_route53:Authenticator',