Hello community,

here is the log from the commit of package python3-CherryPy for 
openSUSE:Factory checked in at 2016-02-16 09:19:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-CherryPy (Old)
 and      /work/SRC/openSUSE:Factory/.python3-CherryPy.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-CherryPy"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-CherryPy/python3-CherryPy.changes        
2016-02-08 09:47:46.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.python3-CherryPy.new/python3-CherryPy.changes   
2016-02-16 09:19:20.000000000 +0100
@@ -1,0 +2,6 @@
+Sat Feb  6 18:54:37 UTC 2016 - a...@gmx.de
+
+- update to version 5.0.1:
+  * Bugfix for NameError following #94.
+
+-------------------------------------------------------------------

Old:
----
  CherryPy-5.0.0.tar.gz

New:
----
  CherryPy-5.0.1.tar.gz

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

Other differences:
------------------
++++++ python3-CherryPy.spec ++++++
--- /var/tmp/diff_new_pack.S9k7d3/_old  2016-02-16 09:19:21.000000000 +0100
+++ /var/tmp/diff_new_pack.S9k7d3/_new  2016-02-16 09:19:21.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           python3-CherryPy
-Version:        5.0.0
+Version:        5.0.1
 Release:        0
 Url:            http://www.cherrypy.org
 Summary:        Object-Oriented HTTP framework

++++++ CherryPy-5.0.0.tar.gz -> CherryPy-5.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/CherryPy.egg-info/PKG-INFO 
new/CherryPy-5.0.1/CherryPy.egg-info/PKG-INFO
--- old/CherryPy-5.0.0/CherryPy.egg-info/PKG-INFO       2016-02-04 
14:38:54.000000000 +0100
+++ new/CherryPy-5.0.1/CherryPy.egg-info/PKG-INFO       2016-02-06 
02:09:05.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: CherryPy
-Version: 5.0.0
+Version: 5.0.1
 Summary: Object-Oriented HTTP framework
 Home-page: http://www.cherrypy.org
 Author: CherryPy Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/PKG-INFO new/CherryPy-5.0.1/PKG-INFO
--- old/CherryPy-5.0.0/PKG-INFO 2016-02-04 14:38:54.000000000 +0100
+++ new/CherryPy-5.0.1/PKG-INFO 2016-02-06 02:09:06.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: CherryPy
-Version: 5.0.0
+Version: 5.0.1
 Summary: Object-Oriented HTTP framework
 Home-page: http://www.cherrypy.org
 Author: CherryPy Team
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/cherrypy/__init__.py 
new/CherryPy-5.0.1/cherrypy/__init__.py
--- old/CherryPy-5.0.0/cherrypy/__init__.py     2016-02-04 14:38:50.000000000 
+0100
+++ new/CherryPy-5.0.1/cherrypy/__init__.py     2016-02-04 14:40:55.000000000 
+0100
@@ -56,7 +56,7 @@
 These API's are described in the `CherryPy specification 
<https://bitbucket.org/cherrypy/cherrypy/wiki/CherryPySpec>`_.
 """
 
-__version__ = "5.0.0"
+__version__ = "5.0.1"
 
 from cherrypy._cpcompat import urljoin as _urljoin, urlencode as _urlencode
 from cherrypy._cpcompat import basestring, unicodestr
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/cherrypy/lib/cptools.py 
new/CherryPy-5.0.1/cherrypy/lib/cptools.py
--- old/CherryPy-5.0.0/cherrypy/lib/cptools.py  2016-02-04 14:15:56.000000000 
+0100
+++ new/CherryPy-5.0.1/cherrypy/lib/cptools.py  2016-02-06 02:07:35.000000000 
+0100
@@ -194,7 +194,8 @@
             base = lbase.split(',')[0]
     if not base:
         base = request.headers.get('Host', '127.0.0.1')
-        if request.local.port != 80:
+        port = request.local.port
+        if port != 80:
             base += ':%s' % port
 
     if base.find("://") == -1:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/cherrypy/wsgiserver/wsgiserver2.py 
new/CherryPy-5.0.1/cherrypy/wsgiserver/wsgiserver2.py
--- old/CherryPy-5.0.0/cherrypy/wsgiserver/wsgiserver2.py       2016-02-04 
14:38:50.000000000 +0100
+++ new/CherryPy-5.0.1/cherrypy/wsgiserver/wsgiserver2.py       2016-02-04 
14:40:55.000000000 +0100
@@ -1756,7 +1756,7 @@
     timeout = 10
     """The timeout in seconds for accepted connections (default 10)."""
 
-    version = "CherryPy/5.0.0"
+    version = "CherryPy/5.0.1"
     """A version string for the HTTPServer."""
 
     software = None
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/cherrypy/wsgiserver/wsgiserver3.py 
new/CherryPy-5.0.1/cherrypy/wsgiserver/wsgiserver3.py
--- old/CherryPy-5.0.0/cherrypy/wsgiserver/wsgiserver3.py       2016-02-04 
14:38:50.000000000 +0100
+++ new/CherryPy-5.0.1/cherrypy/wsgiserver/wsgiserver3.py       2016-02-04 
14:40:55.000000000 +0100
@@ -1478,7 +1478,7 @@
     timeout = 10
     """The timeout in seconds for accepted connections (default 10)."""
 
-    version = "CherryPy/5.0.0"
+    version = "CherryPy/5.0.1"
     """A version string for the HTTPServer."""
 
     software = None
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/setup.cfg new/CherryPy-5.0.1/setup.cfg
--- old/CherryPy-5.0.0/setup.cfg        2016-02-04 14:38:54.000000000 +0100
+++ new/CherryPy-5.0.1/setup.cfg        2016-02-06 02:09:06.000000000 +0100
@@ -9,6 +9,6 @@
 
 [egg_info]
 tag_svn_revision = 0
-tag_date = 0
 tag_build = 
+tag_date = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CherryPy-5.0.0/setup.py new/CherryPy-5.0.1/setup.py
--- old/CherryPy-5.0.0/setup.py 2016-02-04 14:38:50.000000000 +0100
+++ new/CherryPy-5.0.1/setup.py 2016-02-04 14:40:55.000000000 +0100
@@ -36,7 +36,7 @@
 # arguments for the setup command
 ###############################################################################
 name = "CherryPy"
-version = "5.0.0"
+version = "5.0.1"
 desc = "Object-Oriented HTTP framework"
 long_desc = "CherryPy is a pythonic, object-oriented HTTP framework"
 classifiers = [


Reply via email to