Hello community,

here is the log from the commit of package python-certbot-nginx for 
openSUSE:Factory checked in at 2020-07-15 15:02:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-nginx (Old)
 and      /work/SRC/openSUSE:Factory/.python-certbot-nginx.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-certbot-nginx"

Wed Jul 15 15:02:55 2020 rev:21 rq:820661 version:1.6.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-certbot-nginx/python-certbot-nginx.changes    
    2020-06-11 15:16:49.975186264 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-certbot-nginx.new.3060/python-certbot-nginx.changes
      2020-07-15 15:03:08.383300015 +0200
@@ -1,0 +2,6 @@
+Mon Jul 13 08:40:59 UTC 2020 - Marketa Calabkova <[email protected]>
+
+- update to version 1.6.0
+  * Sync with main certbot package.
+
+-------------------------------------------------------------------

Old:
----
  certbot-nginx-1.5.0.tar.gz

New:
----
  certbot-nginx-1.6.0.tar.gz

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

Other differences:
------------------
++++++ python-certbot-nginx.spec ++++++
--- /var/tmp/diff_new_pack.z8CaAJ/_old  2020-07-15 15:03:09.663301263 +0200
+++ /var/tmp/diff_new_pack.z8CaAJ/_new  2020-07-15 15:03:09.667301267 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-certbot-nginx
-Version:        1.5.0
+Version:        1.6.0
 Release:        0
 Summary:        Nginx plugin for Certbot
 License:        Apache-2.0

++++++ certbot-nginx-1.5.0.tar.gz -> certbot-nginx-1.6.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-1.5.0/PKG-INFO 
new/certbot-nginx-1.6.0/PKG-INFO
--- old/certbot-nginx-1.5.0/PKG-INFO    2020-06-02 19:13:03.000000000 +0200
+++ new/certbot-nginx-1.6.0/PKG-INFO    2020-07-07 19:13:40.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: certbot-nginx
-Version: 1.5.0
+Version: 1.6.0
 Summary: Nginx plugin for Certbot
 Home-page: https://github.com/letsencrypt/letsencrypt
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-1.5.0/certbot_nginx/_internal/configurator.py 
new/certbot-nginx-1.6.0/certbot_nginx/_internal/configurator.py
--- old/certbot-nginx-1.5.0/certbot_nginx/_internal/configurator.py     
2020-06-02 19:12:32.000000000 +0200
+++ new/certbot-nginx-1.6.0/certbot_nginx/_internal/configurator.py     
2020-07-07 19:13:20.000000000 +0200
@@ -939,7 +939,8 @@
                 [self.conf('ctl'), "-c", self.nginx_conf, "-V"],
                 stdout=subprocess.PIPE,
                 stderr=subprocess.PIPE,
-                universal_newlines=True)
+                universal_newlines=True,
+                env=util.env_no_snap_for_external_calls())
             text = proc.communicate()[1]  # nginx prints output to stderr
         except (OSError, ValueError) as error:
             logger.debug(str(error), exc_info=True)
@@ -1169,7 +1170,8 @@
 
     """
     try:
-        proc = subprocess.Popen([nginx_ctl, "-c", nginx_conf, "-s", "reload"])
+        proc = subprocess.Popen([nginx_ctl, "-c", nginx_conf, "-s", "reload"],
+                                env=util.env_no_snap_for_external_calls())
         proc.communicate()
 
         if proc.returncode != 0:
@@ -1179,7 +1181,7 @@
             with tempfile.TemporaryFile() as out:
                 with tempfile.TemporaryFile() as err:
                     nginx_proc = subprocess.Popen([nginx_ctl, "-c", 
nginx_conf],
-                        stdout=out, stderr=err)
+                        stdout=out, stderr=err, 
env=util.env_no_snap_for_external_calls())
                     nginx_proc.communicate()
                     if nginx_proc.returncode != 0:
                         # Enter recovery routine...
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-1.5.0/certbot_nginx/_internal/constants.py 
new/certbot-nginx-1.6.0/certbot_nginx/_internal/constants.py
--- old/certbot-nginx-1.5.0/certbot_nginx/_internal/constants.py        
2020-06-02 19:12:32.000000000 +0200
+++ new/certbot-nginx-1.6.0/certbot_nginx/_internal/constants.py        
2020-07-07 19:13:20.000000000 +0200
@@ -3,9 +3,12 @@
 
 FREEBSD_DARWIN_SERVER_ROOT = "/usr/local/etc/nginx"
 LINUX_SERVER_ROOT = "/etc/nginx"
+PKGSRC_SERVER_ROOT = "/usr/pkg/etc/nginx"
 
 if platform.system() in ('FreeBSD', 'Darwin'):
     server_root_tmp = FREEBSD_DARWIN_SERVER_ROOT
+elif platform.system() in ('NetBSD',):
+    server_root_tmp = PKGSRC_SERVER_ROOT
 else:
     server_root_tmp = LINUX_SERVER_ROOT
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-1.5.0/certbot_nginx.egg-info/PKG-INFO 
new/certbot-nginx-1.6.0/certbot_nginx.egg-info/PKG-INFO
--- old/certbot-nginx-1.5.0/certbot_nginx.egg-info/PKG-INFO     2020-06-02 
19:13:02.000000000 +0200
+++ new/certbot-nginx-1.6.0/certbot_nginx.egg-info/PKG-INFO     2020-07-07 
19:13:40.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: certbot-nginx
-Version: 1.5.0
+Version: 1.6.0
 Summary: Nginx plugin for Certbot
 Home-page: https://github.com/letsencrypt/letsencrypt
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-1.5.0/certbot_nginx.egg-info/requires.txt 
new/certbot-nginx-1.6.0/certbot_nginx.egg-info/requires.txt
--- old/certbot-nginx-1.5.0/certbot_nginx.egg-info/requires.txt 2020-06-02 
19:13:02.000000000 +0200
+++ new/certbot-nginx-1.6.0/certbot_nginx.egg-info/requires.txt 2020-07-07 
19:13:40.000000000 +0200
@@ -1,5 +1,5 @@
 acme>=1.4.0
-certbot>=1.4.0
+certbot>=1.6.0
 PyOpenSSL
 pyparsing>=1.5.5
 setuptools
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-1.5.0/setup.py 
new/certbot-nginx-1.6.0/setup.py
--- old/certbot-nginx-1.5.0/setup.py    2020-06-02 19:12:35.000000000 +0200
+++ new/certbot-nginx-1.6.0/setup.py    2020-07-07 19:13:23.000000000 +0200
@@ -1,4 +1,4 @@
-from distutils.version import StrictVersion
+from distutils.version import LooseVersion
 import sys
 
 from setuptools import __version__ as setuptools_version
@@ -6,20 +6,20 @@
 from setuptools import setup
 from setuptools.command.test import test as TestCommand
 
-version = '1.5.0'
+version = '1.6.0'
 
 # Remember to update local-oldest-requirements.txt when changing the minimum
 # acme/certbot version.
 install_requires = [
     'acme>=1.4.0',
-    'certbot>=1.4.0',
+    'certbot>=1.6.0',
     'PyOpenSSL',
     'pyparsing>=1.5.5',  # Python3 support
     'setuptools',
     'zope.interface',
 ]
 
-setuptools_known_environment_markers = (StrictVersion(setuptools_version) >= 
StrictVersion('36.2'))
+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:]:


Reply via email to