Hello community,
here is the log from the commit of package python-certbot-dns-google for
openSUSE:Factory checked in at 2019-06-03 18:50:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-google (Old)
and /work/SRC/openSUSE:Factory/.python-certbot-dns-google.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-dns-google"
Mon Jun 3 18:50:29 2019 rev:5 rq:705629 version:0.34.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-certbot-dns-google/python-certbot-dns-google.changes
2019-03-19 10:00:46.891929204 +0100
+++
/work/SRC/openSUSE:Factory/.python-certbot-dns-google.new.5148/python-certbot-dns-google.changes
2019-06-03 18:50:29.776534579 +0200
@@ -1,0 +2,6 @@
+Sun May 19 12:35:52 UTC 2019 - Dirk Mueller <[email protected]>
+
+- update to 0.34.2:
+ * sync with main certbot package
+
+-------------------------------------------------------------------
Old:
----
certbot-dns-google-0.32.0.tar.gz
New:
----
certbot-dns-google-0.34.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-certbot-dns-google.spec ++++++
--- /var/tmp/diff_new_pack.AebqD6/_old 2019-06-03 18:50:30.536534318 +0200
+++ /var/tmp/diff_new_pack.AebqD6/_new 2019-06-03 18:50:30.536534318 +0200
@@ -18,14 +18,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-certbot-dns-google
-Version: 0.32.0
+Version: 0.34.2
Release: 0
Summary: Google Cloud Authenticator plugin for Certbot
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/certbot/certbot
Source:
https://files.pythonhosted.org/packages/source/c/certbot-dns-google/certbot-dns-google-%{version}.tar.gz
-BuildRequires: %{python_module certbot >= 0.21.1}
+BuildRequires: %{python_module certbot >= 0.34.0}
BuildRequires: %{python_module google-api-python-client >= 1.5}
BuildRequires: %{python_module httplib2}
BuildRequires: %{python_module mock}
@@ -33,8 +33,8 @@
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
-Requires: python-acme >= 0.21.1
-Requires: python-certbot >= 0.21.1
+Requires: python-acme >= 0.29.0
+Requires: python-certbot >= 0.34.0
Requires: python-google-api-python-client >= 1.5
Requires: python-httplib2
Requires: python-oauth2client >= 2.0
++++++ certbot-dns-google-0.32.0.tar.gz -> certbot-dns-google-0.34.2.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-google-0.32.0/PKG-INFO
new/certbot-dns-google-0.34.2/PKG-INFO
--- old/certbot-dns-google-0.32.0/PKG-INFO 2019-03-06 21:18:38.000000000
+0100
+++ new/certbot-dns-google-0.34.2/PKG-INFO 2019-05-07 21:17:59.000000000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: certbot-dns-google
-Version: 0.32.0
+Version: 0.34.2
Summary: Google Cloud DNS Authenticator plugin for Certbot
Home-page: https://github.com/certbot/certbot
Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-google-0.32.0/certbot_dns_google/dns_google.py
new/certbot-dns-google-0.34.2/certbot_dns_google/dns_google.py
--- old/certbot-dns-google-0.32.0/certbot_dns_google/dns_google.py
2019-03-06 21:18:08.000000000 +0100
+++ new/certbot-dns-google-0.34.2/certbot_dns_google/dns_google.py
2019-05-07 21:17:32.000000000 +0200
@@ -274,7 +274,7 @@
raise errors.PluginError('Encountered error finding managed
zone: {0}'
.format(e))
- if len(zones) > 0:
+ if zones:
zone_id = zones[0]['id']
logger.debug('Found id of %s for %s using name %s', zone_id,
domain, zone_name)
return zone_id
@@ -303,5 +303,4 @@
if isinstance(content, bytes):
return content.decode()
- else:
- return content
+ return content
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-google-0.32.0/certbot_dns_google/dns_google_test.py
new/certbot-dns-google-0.34.2/certbot_dns_google/dns_google_test.py
--- old/certbot-dns-google-0.32.0/certbot_dns_google/dns_google_test.py
2019-03-06 21:18:08.000000000 +0100
+++ new/certbot-dns-google-0.34.2/certbot_dns_google/dns_google_test.py
2019-05-07 21:17:32.000000000 +0200
@@ -1,6 +1,5 @@
"""Tests for certbot_dns_google.dns_google."""
-import os
import unittest
import mock
@@ -10,6 +9,7 @@
from httplib2 import ServerNotFoundError
from certbot import errors
+from certbot.compat import os
from certbot.errors import PluginError
from certbot.plugins import dns_test_common
from certbot.plugins.dns_test_common import DOMAIN
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-google-0.32.0/certbot_dns_google.egg-info/PKG-INFO
new/certbot-dns-google-0.34.2/certbot_dns_google.egg-info/PKG-INFO
--- old/certbot-dns-google-0.32.0/certbot_dns_google.egg-info/PKG-INFO
2019-03-06 21:18:38.000000000 +0100
+++ new/certbot-dns-google-0.34.2/certbot_dns_google.egg-info/PKG-INFO
2019-05-07 21:17:59.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: certbot-dns-google
-Version: 0.32.0
+Version: 0.34.2
Summary: Google Cloud DNS Authenticator plugin for Certbot
Home-page: https://github.com/certbot/certbot
Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-google-0.32.0/certbot_dns_google.egg-info/requires.txt
new/certbot-dns-google-0.34.2/certbot_dns_google.egg-info/requires.txt
--- old/certbot-dns-google-0.32.0/certbot_dns_google.egg-info/requires.txt
2019-03-06 21:18:38.000000000 +0100
+++ new/certbot-dns-google-0.34.2/certbot_dns_google.egg-info/requires.txt
2019-05-07 21:17:59.000000000 +0200
@@ -1,5 +1,5 @@
-acme>=0.21.1
-certbot>=0.21.1
+acme>=0.29.0
+certbot>=0.34.0
google-api-python-client>=1.5
mock
oauth2client>=2.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-google-0.32.0/setup.py
new/certbot-dns-google-0.34.2/setup.py
--- old/certbot-dns-google-0.32.0/setup.py 2019-03-06 21:18:09.000000000
+0100
+++ new/certbot-dns-google-0.34.2/setup.py 2019-05-07 21:17:33.000000000
+0200
@@ -2,13 +2,13 @@
from setuptools import find_packages
-version = '0.32.0'
+version = '0.34.2'
# Remember to update local-oldest-requirements.txt when changing the minimum
# acme/certbot version.
install_requires = [
- 'acme>=0.21.1',
- 'certbot>=0.21.1',
+ 'acme>=0.29.0',
+ 'certbot>=0.34.0',
# 1.5 is the first version that supports oauth2client>=2.0
'google-api-python-client>=1.5',
'mock',