Hello community,

here is the log from the commit of package python-sphinxcontrib-serializinghtml 
for openSUSE:Factory checked in at 2020-03-08 22:22:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-serializinghtml (Old)
 and      
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-serializinghtml.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-sphinxcontrib-serializinghtml"

Sun Mar  8 22:22:46 2020 rev:2 rq:782220 version:1.1.4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-sphinxcontrib-serializinghtml/python-sphinxcontrib-serializinghtml.changes
        2019-06-18 14:46:43.165720311 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-serializinghtml.new.26092/python-sphinxcontrib-serializinghtml.changes
     2020-03-08 22:22:52.336030623 +0100
@@ -1,0 +2,6 @@
+Fri Mar  6 11:07:42 UTC 2020 - pgaj...@suse.com
+
+- version update to 1.1.4
+  * Fix package metadata
+
+-------------------------------------------------------------------

Old:
----
  sphinxcontrib-serializinghtml-1.1.3.tar.gz

New:
----
  sphinxcontrib-serializinghtml-1.1.4.tar.gz

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

Other differences:
------------------
++++++ python-sphinxcontrib-serializinghtml.spec ++++++
--- /var/tmp/diff_new_pack.78nlMr/_old  2020-03-08 22:22:54.260031811 +0100
+++ /var/tmp/diff_new_pack.78nlMr/_new  2020-03-08 22:22:54.264031813 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-sphinxcontrib-serializinghtml
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,7 @@
 %endif
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-sphinxcontrib-serializinghtml%{psuffix}
-Version:        1.1.3
+Version:        1.1.4
 Release:        0
 Summary:        Sphinx extension which outputs serialized HTML files
 License:        BSD-2-Clause

++++++ sphinxcontrib-serializinghtml-1.1.3.tar.gz -> 
sphinxcontrib-serializinghtml-1.1.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinxcontrib-serializinghtml-1.1.3/CHANGES 
new/sphinxcontrib-serializinghtml-1.1.4/CHANGES
--- old/sphinxcontrib-serializinghtml-1.1.3/CHANGES     2019-04-04 
18:19:32.000000000 +0200
+++ new/sphinxcontrib-serializinghtml-1.1.4/CHANGES     2020-02-29 
05:17:40.000000000 +0100
@@ -1,4 +1,9 @@
-Release 1.1.2 (2019-04-05)
+Release 1.1.4 (2020-02-29)
+==========================
+
+* Fix package metadata has broken
+
+Release 1.1.3 (2019-04-05)
 ==========================
 
 * Fix #6245: circular import error
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinxcontrib-serializinghtml-1.1.3/PKG-INFO 
new/sphinxcontrib-serializinghtml-1.1.4/PKG-INFO
--- old/sphinxcontrib-serializinghtml-1.1.3/PKG-INFO    2019-04-04 
18:20:16.000000000 +0200
+++ new/sphinxcontrib-serializinghtml-1.1.4/PKG-INFO    2020-02-29 
05:17:59.131182400 +0100
@@ -1,10 +1,7 @@
 Metadata-Version: 2.1
 Name: sphinxcontrib-serializinghtml
-Version: 1.1.3
-Summary: 
-sphinxcontrib-serializinghtml is a sphinx extension which outputs
-"serialized" HTML files (json and pickle).
-
+Version: 1.1.4
+Summary: sphinxcontrib-serializinghtml is a sphinx extension which outputs 
"serialized" HTML files (json and pickle).
 Home-page: http://sphinx-doc.org/
 Author: Georg Brandl
 Author-email: ge...@python.org
@@ -35,3 +32,4 @@
 Classifier: Topic :: Utilities
 Requires-Python: >=3.5
 Provides-Extra: test
+Provides-Extra: lint
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinxcontrib-serializinghtml-1.1.3/setup.py 
new/sphinxcontrib-serializinghtml-1.1.4/setup.py
--- old/sphinxcontrib-serializinghtml-1.1.3/setup.py    2019-04-04 
17:28:58.000000000 +0200
+++ new/sphinxcontrib-serializinghtml-1.1.4/setup.py    2020-02-29 
05:02:32.000000000 +0100
@@ -10,8 +10,11 @@
 extras_require = {
     'test': [
         'pytest',
+    ],
+    'lint': [
         'flake8',
         'mypy',
+        'docutils-stubs',
     ],
 }
 
@@ -36,7 +39,7 @@
     license='BSD',
     author='Georg Brandl',
     author_email='ge...@python.org',
-    description=long_desc,
+    description=long_desc.strip().replace('\n', ' '),
     long_description=long_desc,
     zip_safe=False,
     classifiers=[
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib/__init__.py 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib/__init__.py
--- old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib/__init__.py   
2019-04-04 17:28:58.000000000 +0200
+++ new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib/__init__.py   
2020-01-12 16:40:03.000000000 +0100
@@ -9,4 +9,7 @@
     :license: BSD, see LICENSE for details.
 """
 
-__import__('pkg_resources').declare_namespace(__name__)
+import pkg_resources
+
+
+pkg_resources.declare_namespace(__name__)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib/serializinghtml/version.py
 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib/serializinghtml/version.py
--- 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib/serializinghtml/version.py
    2019-04-04 18:20:00.000000000 +0200
+++ 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib/serializinghtml/version.py
    2020-02-29 05:17:40.000000000 +0100
@@ -6,5 +6,5 @@
     :license: BSD, see LICENSE for details.
 """
 
-__version__ = '1.1.3'
+__version__ = '1.1.4'
 __version_info__ = tuple(map(int, __version__.split('.')))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib_serializinghtml.egg-info/PKG-INFO
 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib_serializinghtml.egg-info/PKG-INFO
--- 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib_serializinghtml.egg-info/PKG-INFO
     2019-04-04 18:20:15.000000000 +0200
+++ 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib_serializinghtml.egg-info/PKG-INFO
     2020-02-29 05:17:58.000000000 +0100
@@ -1,10 +1,7 @@
 Metadata-Version: 2.1
 Name: sphinxcontrib-serializinghtml
-Version: 1.1.3
-Summary: 
-sphinxcontrib-serializinghtml is a sphinx extension which outputs
-"serialized" HTML files (json and pickle).
-
+Version: 1.1.4
+Summary: sphinxcontrib-serializinghtml is a sphinx extension which outputs 
"serialized" HTML files (json and pickle).
 Home-page: http://sphinx-doc.org/
 Author: Georg Brandl
 Author-email: ge...@python.org
@@ -35,3 +32,4 @@
 Classifier: Topic :: Utilities
 Requires-Python: >=3.5
 Provides-Extra: test
+Provides-Extra: lint
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib_serializinghtml.egg-info/requires.txt
 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib_serializinghtml.egg-info/requires.txt
--- 
old/sphinxcontrib-serializinghtml-1.1.3/sphinxcontrib_serializinghtml.egg-info/requires.txt
 2019-04-04 18:20:15.000000000 +0200
+++ 
new/sphinxcontrib-serializinghtml-1.1.4/sphinxcontrib_serializinghtml.egg-info/requires.txt
 2020-02-29 05:17:58.000000000 +0100
@@ -1,5 +1,8 @@
 
-[test]
-pytest
+[lint]
 flake8
 mypy
+docutils-stubs
+
+[test]
+pytest
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sphinxcontrib-serializinghtml-1.1.3/tox.ini 
new/sphinxcontrib-serializinghtml-1.1.4/tox.ini
--- old/sphinxcontrib-serializinghtml-1.1.3/tox.ini     2019-04-04 
18:10:57.000000000 +0200
+++ new/sphinxcontrib-serializinghtml-1.1.4/tox.ini     2020-01-12 
16:59:10.000000000 +0100
@@ -1,5 +1,5 @@
 [tox]
-envlist=flake8,mypy,py35,py36,py37,py38
+envlist=flake8,mypy,py35,py36,py37,py38,py39
 
 [testenv]
 usedevelop = true
@@ -16,14 +16,17 @@
 [testenv:flake8]
 description =
     Run style checks.
+extras =
+    test
+    lint
 commands=
     flake8
 
 [testenv:mypy]
 description =
     Run type checks.
-deps =
-    mypy
-    docutils-stubs
+extras =
+    test
+    lint
 commands=
     mypy sphinxcontrib/


Reply via email to