Hello community,

here is the log from the commit of package python-colorlog for openSUSE:Factory 
checked in at 2019-03-01 16:48:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-colorlog (Old)
 and      /work/SRC/openSUSE:Factory/.python-colorlog.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-colorlog"

Fri Mar  1 16:48:19 2019 rev:3 rq:680068 version:4.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-colorlog/python-colorlog.changes  
2019-01-21 11:00:44.415245141 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-colorlog.new.28833/python-colorlog.changes   
    2019-03-01 16:48:20.969778114 +0100
@@ -1,0 +2,6 @@
+Thu Feb 28 09:43:47 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 4.0.2:
+  * Minor typo fixes
+
+-------------------------------------------------------------------

Old:
----
  colorlog-4.0.0.tar.gz

New:
----
  colorlog-4.0.2.tar.gz

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

Other differences:
------------------
++++++ python-colorlog.spec ++++++
--- /var/tmp/diff_new_pack.MbNlIK/_old  2019-03-01 16:48:21.605777875 +0100
+++ /var/tmp/diff_new_pack.MbNlIK/_new  2019-03-01 16:48:21.609777873 +0100
@@ -12,20 +12,19 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-colorlog
-Version:        4.0.0
+Version:        4.0.2
 Release:        0
 Summary:        Log formatting with colors
 License:        MIT
 Group:          Development/Languages/Python
 URL:            https://github.com/borntyping/python-colorlog
 Source:         
https://pypi.io/packages/source/c/colorlog/colorlog-%{version}.tar.gz
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module pytest} 
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
@@ -50,9 +49,7 @@
 %python_expand %fdupes -s %{buildroot}%{$python_sitelib}
 
 %check
-%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}
-py.test-%{$python_bin_suffix} colorlog/tests/
-}
+%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} 
py.test-%{$python_bin_suffix} colorlog/tests/
 
 %files %{python_files}
 %doc README.md

++++++ colorlog-4.0.0.tar.gz -> colorlog-4.0.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorlog-4.0.0/PKG-INFO new/colorlog-4.0.2/PKG-INFO
--- old/colorlog-4.0.0/PKG-INFO 2018-12-14 17:33:54.000000000 +0100
+++ new/colorlog-4.0.2/PKG-INFO 2018-12-14 17:45:58.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: colorlog
-Version: 4.0.0
+Version: 4.0.2
 Summary: Log formatting with colors!
 Home-page: https://github.com/borntyping/python-colorlog
 Author: Sam Clements
@@ -9,7 +9,9 @@
 Description: 
         # Log formatting with colors!
         
-        
[![](https://img.shields.io/pypi/v/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
 
[![](https://img.shields.io/pypi/l/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
 
[![](https://img.shields.io/travis/borntyping/python-colorlog/master.svg)](https://travis-ci.org/borntyping/python-colorlog)
+        
[![](https://img.shields.io/pypi/v/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
+        
[![](https://img.shields.io/pypi/l/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
+        
[![](https://img.shields.io/travis/borntyping/python-colorlog/master.svg)](https://travis-ci.org/borntyping/python-colorlog)
         
         `colorlog.ColoredFormatter` is a formatter for use with Python's 
`logging`
         module that outputs records using terminal colors.
@@ -48,11 +50,11 @@
         The `ColoredFormatter` class takes several arguments:
         
         - `format`: The format string used to output the message (required).
-        - `datefmt`: An optional date format passed to the base class. See 
[`logging.Formatter`].
+        - `datefmt`: An optional date format passed to the base class. See 
[`logging.Formatter`][Formatter].
         - `reset`: Implicitly adds a color reset code to the message output, 
unless the output already ends with one. Defaults to `True`.
         - `log_colors`: A mapping of record level names to color names. The 
defaults can be found in `colorlog.default_log_colors`, or the below example.
         - `secondary_log_colors`: A mapping of names to `log_colors` style 
mappings, defining additional colors that can be used in format strings. See 
below for an example.
-        - `style`: Available on Python 3.2 and above. See 
[`logging.Formatter`].
+        - `style`: Available on Python 3.2 and above. See 
[`logging.Formatter`][Formatter].
         
         Color escape codes can be selected based on the log records level, by 
adding
         parameters to the format string:
@@ -128,8 +130,8 @@
         )
         ```
         
-        With [`dictConfig`]
-        -------------------
+        With [`dictConfig`][dictConfig]
+        -------------------------------
         
         ```python
         logging.config.dictConfig({
@@ -144,8 +146,8 @@
         
         A full example dictionary can be found in `tests/test_colorlog.py`.
         
-        With [`fileConfig`]
-        -------------------
+        With [`fileConfig`][fileConfig]
+        -------------------------------
         
         ```ini
         ...
@@ -168,7 +170,7 @@
         ----------------------
         
         ColoredFormatter will work with custom log levels added with
-        [`logging.addLevelName`]:
+        [`logging.addLevelName`][addLevelName]:
         
         ```python
         import logging, colorlog
@@ -196,7 +198,7 @@
         
         Tests similar to the above examples are found in 
`tests/test_colorlog.py`.
         
-        [`tox`] will run the tests under all compatible python versions.
+        [`tox`][tox] will run the tests under all compatible python versions.
         
         
         Projects using colorlog
@@ -229,11 +231,11 @@
         IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
         CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
         
-        [`dictConfig`]: 
http://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
-        [`fileConfig`]: 
http://docs.python.org/3/library/logging.config.html#logging.config.fileConfig
-        [`logging.addLevelName`]: 
https://docs.python.org/3/library/logging.html#logging.addLevelName
-        [`logging.Formatter`]: 
http://docs.python.org/3/library/logging.html#logging.Formatter
-        [`tox`]: http://tox.readthedocs.org/
+        [dictConfig]: 
http://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
+        [fileConfig]: 
http://docs.python.org/3/library/logging.config.html#logging.config.fileConfig
+        [addLevelName]: 
https://docs.python.org/3/library/logging.html#logging.addLevelNam[addLevelN]e
+        [Formatter]: 
http://docs.python.org/3/library/logging.html#logging.Formatter
+        [tox]: http://tox.readthedocs.org/
         [Arch AUR]: https://aur.archlinux.org/packages/python-colorlog/
         [BSD ports]: https://www.freshports.org/devel/py-colorlog/
         [colorama]: https://pypi.python.org/pypi/colorama
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorlog-4.0.0/README.md new/colorlog-4.0.2/README.md
--- old/colorlog-4.0.0/README.md        2018-12-14 17:17:39.000000000 +0100
+++ new/colorlog-4.0.2/README.md        2018-12-14 17:41:46.000000000 +0100
@@ -1,7 +1,9 @@
 
 # Log formatting with colors!
 
-[![](https://img.shields.io/pypi/v/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
 
[![](https://img.shields.io/pypi/l/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
 
[![](https://img.shields.io/travis/borntyping/python-colorlog/master.svg)](https://travis-ci.org/borntyping/python-colorlog)
+[![](https://img.shields.io/pypi/v/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
+[![](https://img.shields.io/pypi/l/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
+[![](https://img.shields.io/travis/borntyping/python-colorlog/master.svg)](https://travis-ci.org/borntyping/python-colorlog)
 
 `colorlog.ColoredFormatter` is a formatter for use with Python's `logging`
 module that outputs records using terminal colors.
@@ -40,11 +42,11 @@
 The `ColoredFormatter` class takes several arguments:
 
 - `format`: The format string used to output the message (required).
-- `datefmt`: An optional date format passed to the base class. See 
[`logging.Formatter`].
+- `datefmt`: An optional date format passed to the base class. See 
[`logging.Formatter`][Formatter].
 - `reset`: Implicitly adds a color reset code to the message output, unless 
the output already ends with one. Defaults to `True`.
 - `log_colors`: A mapping of record level names to color names. The defaults 
can be found in `colorlog.default_log_colors`, or the below example.
 - `secondary_log_colors`: A mapping of names to `log_colors` style mappings, 
defining additional colors that can be used in format strings. See below for an 
example.
-- `style`: Available on Python 3.2 and above. See [`logging.Formatter`].
+- `style`: Available on Python 3.2 and above. See 
[`logging.Formatter`][Formatter].
 
 Color escape codes can be selected based on the log records level, by adding
 parameters to the format string:
@@ -120,8 +122,8 @@
 )
 ```
 
-With [`dictConfig`]
--------------------
+With [`dictConfig`][dictConfig]
+-------------------------------
 
 ```python
 logging.config.dictConfig({
@@ -136,8 +138,8 @@
 
 A full example dictionary can be found in `tests/test_colorlog.py`.
 
-With [`fileConfig`]
--------------------
+With [`fileConfig`][fileConfig]
+-------------------------------
 
 ```ini
 ...
@@ -160,7 +162,7 @@
 ----------------------
 
 ColoredFormatter will work with custom log levels added with
-[`logging.addLevelName`]:
+[`logging.addLevelName`][addLevelName]:
 
 ```python
 import logging, colorlog
@@ -188,7 +190,7 @@
 
 Tests similar to the above examples are found in `tests/test_colorlog.py`.
 
-[`tox`] will run the tests under all compatible python versions.
+[`tox`][tox] will run the tests under all compatible python versions.
 
 
 Projects using colorlog
@@ -221,11 +223,11 @@
 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-[`dictConfig`]: 
http://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
-[`fileConfig`]: 
http://docs.python.org/3/library/logging.config.html#logging.config.fileConfig
-[`logging.addLevelName`]: 
https://docs.python.org/3/library/logging.html#logging.addLevelName
-[`logging.Formatter`]: 
http://docs.python.org/3/library/logging.html#logging.Formatter
-[`tox`]: http://tox.readthedocs.org/
+[dictConfig]: 
http://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
+[fileConfig]: 
http://docs.python.org/3/library/logging.config.html#logging.config.fileConfig
+[addLevelName]: 
https://docs.python.org/3/library/logging.html#logging.addLevelNam[addLevelN]e
+[Formatter]: http://docs.python.org/3/library/logging.html#logging.Formatter
+[tox]: http://tox.readthedocs.org/
 [Arch AUR]: https://aur.archlinux.org/packages/python-colorlog/
 [BSD ports]: https://www.freshports.org/devel/py-colorlog/
 [colorama]: https://pypi.python.org/pypi/colorama
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorlog-4.0.0/colorlog.egg-info/PKG-INFO 
new/colorlog-4.0.2/colorlog.egg-info/PKG-INFO
--- old/colorlog-4.0.0/colorlog.egg-info/PKG-INFO       2018-12-14 
17:33:54.000000000 +0100
+++ new/colorlog-4.0.2/colorlog.egg-info/PKG-INFO       2018-12-14 
17:45:58.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: colorlog
-Version: 4.0.0
+Version: 4.0.2
 Summary: Log formatting with colors!
 Home-page: https://github.com/borntyping/python-colorlog
 Author: Sam Clements
@@ -9,7 +9,9 @@
 Description: 
         # Log formatting with colors!
         
-        
[![](https://img.shields.io/pypi/v/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
 
[![](https://img.shields.io/pypi/l/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
 
[![](https://img.shields.io/travis/borntyping/python-colorlog/master.svg)](https://travis-ci.org/borntyping/python-colorlog)
+        
[![](https://img.shields.io/pypi/v/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
+        
[![](https://img.shields.io/pypi/l/colorlog.svg)](https://warehouse.python.org/project/colorlog/)
+        
[![](https://img.shields.io/travis/borntyping/python-colorlog/master.svg)](https://travis-ci.org/borntyping/python-colorlog)
         
         `colorlog.ColoredFormatter` is a formatter for use with Python's 
`logging`
         module that outputs records using terminal colors.
@@ -48,11 +50,11 @@
         The `ColoredFormatter` class takes several arguments:
         
         - `format`: The format string used to output the message (required).
-        - `datefmt`: An optional date format passed to the base class. See 
[`logging.Formatter`].
+        - `datefmt`: An optional date format passed to the base class. See 
[`logging.Formatter`][Formatter].
         - `reset`: Implicitly adds a color reset code to the message output, 
unless the output already ends with one. Defaults to `True`.
         - `log_colors`: A mapping of record level names to color names. The 
defaults can be found in `colorlog.default_log_colors`, or the below example.
         - `secondary_log_colors`: A mapping of names to `log_colors` style 
mappings, defining additional colors that can be used in format strings. See 
below for an example.
-        - `style`: Available on Python 3.2 and above. See 
[`logging.Formatter`].
+        - `style`: Available on Python 3.2 and above. See 
[`logging.Formatter`][Formatter].
         
         Color escape codes can be selected based on the log records level, by 
adding
         parameters to the format string:
@@ -128,8 +130,8 @@
         )
         ```
         
-        With [`dictConfig`]
-        -------------------
+        With [`dictConfig`][dictConfig]
+        -------------------------------
         
         ```python
         logging.config.dictConfig({
@@ -144,8 +146,8 @@
         
         A full example dictionary can be found in `tests/test_colorlog.py`.
         
-        With [`fileConfig`]
-        -------------------
+        With [`fileConfig`][fileConfig]
+        -------------------------------
         
         ```ini
         ...
@@ -168,7 +170,7 @@
         ----------------------
         
         ColoredFormatter will work with custom log levels added with
-        [`logging.addLevelName`]:
+        [`logging.addLevelName`][addLevelName]:
         
         ```python
         import logging, colorlog
@@ -196,7 +198,7 @@
         
         Tests similar to the above examples are found in 
`tests/test_colorlog.py`.
         
-        [`tox`] will run the tests under all compatible python versions.
+        [`tox`][tox] will run the tests under all compatible python versions.
         
         
         Projects using colorlog
@@ -229,11 +231,11 @@
         IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
         CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.
         
-        [`dictConfig`]: 
http://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
-        [`fileConfig`]: 
http://docs.python.org/3/library/logging.config.html#logging.config.fileConfig
-        [`logging.addLevelName`]: 
https://docs.python.org/3/library/logging.html#logging.addLevelName
-        [`logging.Formatter`]: 
http://docs.python.org/3/library/logging.html#logging.Formatter
-        [`tox`]: http://tox.readthedocs.org/
+        [dictConfig]: 
http://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
+        [fileConfig]: 
http://docs.python.org/3/library/logging.config.html#logging.config.fileConfig
+        [addLevelName]: 
https://docs.python.org/3/library/logging.html#logging.addLevelNam[addLevelN]e
+        [Formatter]: 
http://docs.python.org/3/library/logging.html#logging.Formatter
+        [tox]: http://tox.readthedocs.org/
         [Arch AUR]: https://aur.archlinux.org/packages/python-colorlog/
         [BSD ports]: https://www.freshports.org/devel/py-colorlog/
         [colorama]: https://pypi.python.org/pypi/colorama
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/colorlog-4.0.0/setup.py new/colorlog-4.0.2/setup.py
--- old/colorlog-4.0.0/setup.py 2018-12-14 17:26:27.000000000 +0100
+++ new/colorlog-4.0.2/setup.py 2018-12-14 17:45:57.000000000 +0100
@@ -2,7 +2,7 @@
 
 setup(
     name='colorlog',
-    version='4.0.0',
+    version='4.0.2',
 
     description='Log formatting with colors!',
     long_description=open('README.md').read(),


Reply via email to