Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-certbot-dns-linode for 
openSUSE:Factory checked in at 2022-04-08 22:46:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-linode (Old)
 and      /work/SRC/openSUSE:Factory/.python-certbot-dns-linode.new.1900 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-certbot-dns-linode"

Fri Apr  8 22:46:06 2022 rev:24 rq:967768 version:1.26.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-certbot-dns-linode/python-certbot-dns-linode.changes
      2021-12-21 20:42:26.102017075 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-certbot-dns-linode.new.1900/python-certbot-dns-linode.changes
    2022-04-08 22:46:29.150628291 +0200
@@ -1,0 +2,6 @@
+Fri Apr  8 10:55:11 UTC 2022 - Mark??ta Machov?? <[email protected]>
+
+- update to version 1.26.0
+  * sync with the main certbot package
+
+-------------------------------------------------------------------

Old:
----
  certbot-dns-linode-1.22.0.tar.gz

New:
----
  certbot-dns-linode-1.26.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-certbot-dns-linode.spec ++++++
--- /var/tmp/diff_new_pack.kRGXtX/_old  2022-04-08 22:46:29.754621587 +0200
+++ /var/tmp/diff_new_pack.kRGXtX/_new  2022-04-08 22:46:29.762621498 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-certbot-dns-linode
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,9 +18,8 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
-%define skip_python36 1
 Name:           python-certbot-dns-linode
-Version:        1.22.0
+Version:        1.26.0
 Release:        0
 Summary:        Linode DNS Authenticator plugin for Certbot
 License:        Apache-2.0

++++++ certbot-dns-linode-1.22.0.tar.gz -> certbot-dns-linode-1.26.0.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-linode-1.22.0/MANIFEST.in 
new/certbot-dns-linode-1.26.0/MANIFEST.in
--- old/certbot-dns-linode-1.22.0/MANIFEST.in   2021-12-07 23:02:45.000000000 
+0100
+++ new/certbot-dns-linode-1.26.0/MANIFEST.in   2022-04-05 19:41:26.000000000 
+0200
@@ -2,5 +2,6 @@
 include README.rst
 recursive-include docs *
 recursive-include tests *
+include certbot_dns_linode/py.typed
 global-exclude __pycache__
 global-exclude *.py[cod]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-linode-1.22.0/PKG-INFO 
new/certbot-dns-linode-1.26.0/PKG-INFO
--- old/certbot-dns-linode-1.22.0/PKG-INFO      2021-12-07 23:03:09.206644500 
+0100
+++ new/certbot-dns-linode-1.26.0/PKG-INFO      2022-04-05 19:42:05.900320000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-linode
-Version: 1.22.0
+Version: 1.26.0
 Summary: Linode DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
@@ -14,7 +14,6 @@
 Classifier: Operating System :: POSIX :: Linux
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
@@ -25,7 +24,7 @@
 Classifier: Topic :: System :: Networking
 Classifier: Topic :: System :: Systems Administration
 Classifier: Topic :: Utilities
-Requires-Python: >=3.6
+Requires-Python: >=3.7
 Provides-Extra: docs
 License-File: LICENSE.txt
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-linode-1.22.0/certbot_dns_linode/_internal/dns_linode.py 
new/certbot-dns-linode-1.26.0/certbot_dns_linode/_internal/dns_linode.py
--- old/certbot-dns-linode-1.22.0/certbot_dns_linode/_internal/dns_linode.py    
2021-12-07 23:02:45.000000000 +0100
+++ new/certbot-dns-linode-1.26.0/certbot_dns_linode/_internal/dns_linode.py    
2022-04-05 19:41:26.000000000 +0200
@@ -1,6 +1,8 @@
 """DNS Authenticator for Linode."""
 import logging
 import re
+from typing import Any
+from typing import Callable
 from typing import Optional
 from typing import Union
 
@@ -26,20 +28,21 @@
 
     description = 'Obtain certificates using a DNS TXT record (if you are 
using Linode for DNS).'
 
-    def __init__(self, *args, **kwargs):
+    def __init__(self, *args: Any, **kwargs: Any) -> None:
         super().__init__(*args, **kwargs)
         self.credentials: Optional[CredentialsConfiguration] = None
 
     @classmethod
-    def add_parser_arguments(cls, add):  # pylint: disable=arguments-differ
-        super().add_parser_arguments(add, default_propagation_seconds=120)
+    def add_parser_arguments(cls, add: Callable[..., None],
+                             default_propagation_seconds: int = 120) -> None:
+        super().add_parser_arguments(add, default_propagation_seconds)
         add('credentials', help='Linode credentials INI file.')
 
-    def more_info(self):  # pylint: disable=missing-function-docstring
+    def more_info(self) -> str:
         return 'This plugin configures a DNS TXT record to respond to a dns-01 
challenge using ' + \
                'the Linode API.'
 
-    def _setup_credentials(self):
+    def _setup_credentials(self) -> None:
         self.credentials = self._configure_credentials(
             'credentials',
             'Linode credentials INI file',
@@ -49,13 +52,13 @@
             }
         )
 
-    def _perform(self, domain, validation_name, validation):
+    def _perform(self, domain: str, validation_name: str, validation: str) -> 
None:
         self._get_linode_client().add_txt_record(domain, validation_name, 
validation)
 
-    def _cleanup(self, domain, validation_name, validation):
+    def _cleanup(self, domain: str, validation_name: str, validation: str) -> 
None:
         self._get_linode_client().del_txt_record(domain, validation_name, 
validation)
 
-    def _get_linode_client(self):
+    def _get_linode_client(self) -> '_LinodeLexiconClient':
         if not self.credentials:  # pragma: no cover
             raise errors.Error("Plugin has not been prepared.")
         api_key = self.credentials.conf('key')
@@ -82,7 +85,7 @@
     Encapsulates all communication with the Linode API.
     """
 
-    def __init__(self, api_key, api_version):
+    def __init__(self, api_key: str, api_version: int) -> None:
         super().__init__()
 
         self.api_version = api_version
@@ -103,8 +106,8 @@
             raise errors.PluginError('Invalid api version specified: {0}. 
(Supported: 3, 4)'
                                      .format(api_version))
 
-    def _handle_general_error(self, e, domain_name):
+    def _handle_general_error(self, e: Exception, domain_name: str) -> 
Optional[errors.PluginError]:
         if not str(e).startswith('Domain not found'):
-            return errors.PluginError('Unexpected error determining zone 
identifier for {0}: {1}'
-                                      .format(domain_name, e))
+            return errors.PluginError('Unexpected error determining zone 
identifier '
+                                      f'for {domain_name}: {e}')
         return None
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/PKG-INFO 
new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/PKG-INFO
--- old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/PKG-INFO  
2021-12-07 23:03:09.000000000 +0100
+++ new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/PKG-INFO  
2022-04-05 19:42:05.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-linode
-Version: 1.22.0
+Version: 1.26.0
 Summary: Linode DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
@@ -14,7 +14,6 @@
 Classifier: Operating System :: POSIX :: Linux
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.6
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
@@ -25,7 +24,7 @@
 Classifier: Topic :: System :: Networking
 Classifier: Topic :: System :: Systems Administration
 Classifier: Topic :: Utilities
-Requires-Python: >=3.6
+Requires-Python: >=3.7
 Provides-Extra: docs
 License-File: LICENSE.txt
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/SOURCES.txt 
new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/SOURCES.txt
--- old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/SOURCES.txt       
2021-12-07 23:03:09.000000000 +0100
+++ new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/SOURCES.txt       
2022-04-05 19:42:05.000000000 +0200
@@ -1,9 +1,9 @@
 LICENSE.txt
 MANIFEST.in
 README.rst
-setup.cfg
 setup.py
 certbot_dns_linode/__init__.py
+certbot_dns_linode/py.typed
 certbot_dns_linode.egg-info/PKG-INFO
 certbot_dns_linode.egg-info/SOURCES.txt
 certbot_dns_linode.egg-info/dependency_links.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/entry_points.txt 
new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/entry_points.txt
--- old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/entry_points.txt  
2021-12-07 23:03:09.000000000 +0100
+++ new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/entry_points.txt  
2022-04-05 19:42:05.000000000 +0200
@@ -1,3 +1,2 @@
 [certbot.plugins]
 dns-linode = certbot_dns_linode._internal.dns_linode:Authenticator
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/requires.txt 
new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/requires.txt
--- old/certbot-dns-linode-1.22.0/certbot_dns_linode.egg-info/requires.txt      
2021-12-07 23:03:09.000000000 +0100
+++ new/certbot-dns-linode-1.26.0/certbot_dns_linode.egg-info/requires.txt      
2022-04-05 19:42:05.000000000 +0200
@@ -1,7 +1,7 @@
 dns-lexicon>=3.2.1
-setuptools>=39.0.1
-acme>=1.22.0
-certbot>=1.22.0
+setuptools>=41.6.0
+acme>=1.26.0
+certbot>=1.26.0
 
 [docs]
 Sphinx>=1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-linode-1.22.0/setup.cfg 
new/certbot-dns-linode-1.26.0/setup.cfg
--- old/certbot-dns-linode-1.22.0/setup.cfg     2021-12-07 23:03:09.206644500 
+0100
+++ new/certbot-dns-linode-1.26.0/setup.cfg     2022-04-05 19:42:05.900488600 
+0200
@@ -1,6 +1,3 @@
-[bdist_wheel]
-universal = 1
-
 [egg_info]
 tag_build = 
 tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-linode-1.22.0/setup.py 
new/certbot-dns-linode-1.26.0/setup.py
--- old/certbot-dns-linode-1.22.0/setup.py      2021-12-07 23:02:46.000000000 
+0100
+++ new/certbot-dns-linode-1.26.0/setup.py      2022-04-05 19:41:27.000000000 
+0200
@@ -4,11 +4,11 @@
 from setuptools import find_packages
 from setuptools import setup
 
-version = '1.22.0'
+version = '1.26.0'
 
 install_requires = [
     'dns-lexicon>=3.2.1',
-    'setuptools>=39.0.1',
+    'setuptools>=41.6.0',
 ]
 
 if not os.environ.get('SNAP_BUILD'):
@@ -38,7 +38,7 @@
     author="Certbot Project",
     author_email='[email protected]',
     license='Apache License 2.0',
-    python_requires='>=3.6',
+    python_requires='>=3.7',
     classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Environment :: Plugins',
@@ -47,7 +47,6 @@
         'Operating System :: POSIX :: Linux',
         'Programming Language :: Python',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-linode-1.22.0/tests/dns_linode_test.py 
new/certbot-dns-linode-1.26.0/tests/dns_linode_test.py
--- old/certbot-dns-linode-1.22.0/tests/dns_linode_test.py      2021-12-07 
23:02:45.000000000 +0100
+++ new/certbot-dns-linode-1.26.0/tests/dns_linode_test.py      2022-04-05 
19:41:26.000000000 +0200
@@ -18,6 +18,7 @@
 TOKEN_V3 = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ64'
 TOKEN_V4 = '0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef'
 
+
 class AuthenticatorTest(test_util.TempDirTestCase,
                         dns_test_common_lexicon.BaseLexiconAuthenticatorTest):
 
@@ -119,6 +120,7 @@
         auth._setup_credentials()
         self.assertRaises(errors.PluginError, auth._get_linode_client)
 
+
 class LinodeLexiconClientTest(unittest.TestCase, 
dns_test_common_lexicon.BaseLexiconClientTest):
 
     DOMAIN_NOT_FOUND = Exception('Domain not found')
@@ -131,6 +133,7 @@
         self.provider_mock = mock.MagicMock()
         self.client.provider = self.provider_mock
 
+
 class Linode4LexiconClientTest(unittest.TestCase, 
dns_test_common_lexicon.BaseLexiconClientTest):
 
     DOMAIN_NOT_FOUND = Exception('Domain not found')
@@ -143,5 +146,6 @@
         self.provider_mock = mock.MagicMock()
         self.client.provider = self.provider_mock
 
+
 if __name__ == "__main__":
     unittest.main()  # pragma: no cover

Reply via email to