diff -Nru python-certbot-dns-gehirn-0.28.0/certbot_dns_gehirn/dns_gehirn.py python-certbot-dns-gehirn-0.31.0/certbot_dns_gehirn/dns_gehirn.py --- python-certbot-dns-gehirn-0.28.0/certbot_dns_gehirn/dns_gehirn.py 2018-11-07 21:14:56.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/certbot_dns_gehirn/dns_gehirn.py 2019-02-07 21:20:29.000000000 +0000 @@ -72,13 +72,15 @@ def __init__(self, api_token, api_secret, ttl): super(_GehirnLexiconClient, self).__init__() - self.provider = gehirn.Provider({ - 'provider_name': 'gehirn', + config = dns_common_lexicon.build_lexicon_config('gehirn', { + 'ttl': ttl, + }, { 'auth_token': api_token, 'auth_secret': api_secret, - 'ttl': ttl, }) + self.provider = gehirn.Provider(config) + def _handle_http_error(self, e, domain_name): if domain_name in str(e) and (str(e).startswith('404 Client Error: Not Found for url:')): return # Expected errors when zone name guess is wrong diff -Nru python-certbot-dns-gehirn-0.28.0/certbot_dns_gehirn.egg-info/PKG-INFO python-certbot-dns-gehirn-0.31.0/certbot_dns_gehirn.egg-info/PKG-INFO --- python-certbot-dns-gehirn-0.28.0/certbot_dns_gehirn.egg-info/PKG-INFO 2018-11-07 21:15:24.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/certbot_dns_gehirn.egg-info/PKG-INFO 2019-02-07 21:21:00.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: certbot-dns-gehirn -Version: 0.28.0 +Version: 0.31.0 Summary: Gehirn Infrastracture Service DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project diff -Nru python-certbot-dns-gehirn-0.28.0/certbot_dns_gehirn.egg-info/requires.txt python-certbot-dns-gehirn-0.31.0/certbot_dns_gehirn.egg-info/requires.txt --- python-certbot-dns-gehirn-0.28.0/certbot_dns_gehirn.egg-info/requires.txt 2018-11-07 21:15:24.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/certbot_dns_gehirn.egg-info/requires.txt 2019-02-07 21:21:00.000000000 +0000 @@ -1,5 +1,5 @@ -acme>=0.21.1 -certbot>=0.21.1 +acme>=0.31.0 +certbot>=0.31.0 dns-lexicon>=2.1.22 mock setuptools diff -Nru python-certbot-dns-gehirn-0.28.0/debian/changelog python-certbot-dns-gehirn-0.31.0/debian/changelog --- python-certbot-dns-gehirn-0.28.0/debian/changelog 2018-11-07 23:46:09.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/debian/changelog 2019-02-10 01:10:50.000000000 +0000 @@ -1,3 +1,11 @@ +python-certbot-dns-gehirn (0.31.0-1) unstable; urgency=medium + + * New upstream version 0.31.0 + * Bump deps per upstream. + * Bump S-V; no changes needed. + + -- Harlan Lieberman-Berg Sat, 09 Feb 2019 20:10:50 -0500 + python-certbot-dns-gehirn (0.28.0-1) unstable; urgency=medium * New upstream version 0.28.0 diff -Nru python-certbot-dns-gehirn-0.28.0/debian/control python-certbot-dns-gehirn-0.31.0/debian/control --- python-certbot-dns-gehirn-0.28.0/debian/control 2018-11-07 23:45:47.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/debian/control 2019-02-10 01:10:19.000000000 +0000 @@ -6,15 +6,15 @@ Build-Depends: debhelper (>= 11~), dh-python, python3, - python3-acme (>= 0.21.1~), - python3-certbot (>= 0.21.1~), + python3-acme (>= 0.31.0~), + python3-certbot (>= 0.31.0~), python3-lexicon (>= 2.1.22~), python3-mock, python3-setuptools (>= 1.0), python3-sphinx (>= 1.3.1-1~), python3-sphinx-rtd-theme, python3-zope.interface -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Homepage: https://certbot.eff.org/ Vcs-Git: https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-gehirn.git Vcs-Browser: https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-gehirn diff -Nru python-certbot-dns-gehirn-0.28.0/PKG-INFO python-certbot-dns-gehirn-0.31.0/PKG-INFO --- python-certbot-dns-gehirn-0.28.0/PKG-INFO 2018-11-07 21:15:24.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/PKG-INFO 2019-02-07 21:21:00.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: certbot-dns-gehirn -Version: 0.28.0 +Version: 0.31.0 Summary: Gehirn Infrastracture Service DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project diff -Nru python-certbot-dns-gehirn-0.28.0/setup.py python-certbot-dns-gehirn-0.31.0/setup.py --- python-certbot-dns-gehirn-0.28.0/setup.py 2018-11-07 21:14:57.000000000 +0000 +++ python-certbot-dns-gehirn-0.31.0/setup.py 2019-02-07 21:20:31.000000000 +0000 @@ -1,15 +1,13 @@ -import sys - from setuptools import setup from setuptools import find_packages -version = '0.28.0' +version = '0.31.0' # Please update tox.ini when modifying dependency version requirements install_requires = [ - 'acme>=0.21.1', - 'certbot>=0.21.1', + 'acme>=0.31.0', + 'certbot>=0.31.0', 'dns-lexicon>=2.1.22', 'mock', 'setuptools',