Hello community,
here is the log from the commit of package python-sphinxcontrib-qthelp for
openSUSE:Factory checked in at 2020-03-08 22:22:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-qthelp (Old)
and /work/SRC/openSUSE:Factory/.python-sphinxcontrib-qthelp.new.26092
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-qthelp"
Sun Mar 8 22:22:50 2020 rev:2 rq:782222 version:1.0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-sphinxcontrib-qthelp/python-sphinxcontrib-qthelp.changes
2019-06-18 14:47:02.557716439 +0200
+++
/work/SRC/openSUSE:Factory/.python-sphinxcontrib-qthelp.new.26092/python-sphinxcontrib-qthelp.changes
2020-03-08 22:22:54.576032006 +0100
@@ -1,0 +2,6 @@
+Fri Mar 6 11:15:26 UTC 2020 - [email protected]
+
+- version update to 1.0.3
+ * Fix package metadata
+
+-------------------------------------------------------------------
Old:
----
sphinxcontrib-qthelp-1.0.2.tar.gz
New:
----
sphinxcontrib-qthelp-1.0.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-sphinxcontrib-qthelp.spec ++++++
--- /var/tmp/diff_new_pack.nXmdcM/_old 2020-03-08 22:22:55.104032332 +0100
+++ /var/tmp/diff_new_pack.nXmdcM/_new 2020-03-08 22:22:55.108032334 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-sphinxcontrib-qthelp
#
-# 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-qthelp%{psuffix}
-Version: 1.0.2
+Version: 1.0.3
Release: 0
Summary: Sphinx extension which outputs QtHelp
License: BSD-2-Clause
++++++ sphinxcontrib-qthelp-1.0.2.tar.gz -> sphinxcontrib-qthelp-1.0.3.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/sphinxcontrib-qthelp-1.0.2/CHANGES
new/sphinxcontrib-qthelp-1.0.3/CHANGES
--- old/sphinxcontrib-qthelp-1.0.2/CHANGES 2019-02-24 11:10:19.000000000
+0100
+++ new/sphinxcontrib-qthelp-1.0.3/CHANGES 2020-02-29 05:18:51.000000000
+0100
@@ -1,3 +1,8 @@
+Release 1.0.3 (2019-02-29)
+==========================
+
+* Fix package metadata has broken
+
Release 1.0.2 (2019-02-24)
==========================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/sphinxcontrib-qthelp-1.0.2/PKG-INFO
new/sphinxcontrib-qthelp-1.0.3/PKG-INFO
--- old/sphinxcontrib-qthelp-1.0.2/PKG-INFO 2019-02-24 11:27:33.000000000
+0100
+++ new/sphinxcontrib-qthelp-1.0.3/PKG-INFO 2020-02-29 05:19:04.475273800
+0100
@@ -1,9 +1,7 @@
Metadata-Version: 2.1
Name: sphinxcontrib-qthelp
-Version: 1.0.2
-Summary:
-sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
-
+Version: 1.0.3
+Summary: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp
document.
Home-page: http://sphinx-doc.org/
Author: Georg Brandl
Author-email: [email protected]
@@ -33,3 +31,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-qthelp-1.0.2/setup.py
new/sphinxcontrib-qthelp-1.0.3/setup.py
--- old/sphinxcontrib-qthelp-1.0.2/setup.py 2019-02-24 09:46:42.000000000
+0100
+++ new/sphinxcontrib-qthelp-1.0.3/setup.py 2020-02-29 05:01:18.000000000
+0100
@@ -9,8 +9,11 @@
extras_require = {
'test': [
'pytest',
+ ],
+ 'lint': [
'flake8',
'mypy',
+ 'docutils-stubs',
],
}
@@ -35,7 +38,7 @@
license='BSD',
author='Georg Brandl',
author_email='[email protected]',
- 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-qthelp-1.0.2/sphinxcontrib/__init__.py
new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/__init__.py
--- old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib/__init__.py 2019-02-24
09:46:42.000000000 +0100
+++ new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/__init__.py 2020-01-12
16:33:12.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-qthelp-1.0.2/sphinxcontrib/qthelp/__init__.py
new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/__init__.py
--- old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib/qthelp/__init__.py
2019-02-24 11:10:19.000000000 +0100
+++ new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/__init__.py
2020-01-12 16:58:51.000000000 +0100
@@ -260,7 +260,7 @@
app.add_builder(QtHelpBuilder)
app.add_message_catalog(__name__, path.join(package_dir, 'locales'))
- app.add_config_value('qthelp_basename', lambda self:
make_filename(self.project), None)
+ app.add_config_value('qthelp_basename', lambda self:
make_filename(self.project), 'html')
app.add_config_value('qthelp_namespace', None, 'html', [str])
app.add_config_value('qthelp_theme', 'nonav', 'html')
app.add_config_value('qthelp_theme_options', {}, 'html')
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib/qthelp/version.py
new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/version.py
--- old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib/qthelp/version.py
2019-02-24 09:46:42.000000000 +0100
+++ new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib/qthelp/version.py
2020-01-12 16:33:12.000000000 +0100
@@ -6,5 +6,5 @@
:license: BSD, see LICENSE for details.
"""
-__version__ = '1.0.2'
+__version__ = '1.0.3'
__version_info__ = tuple(map(int, __version__.split('.')))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib_qthelp.egg-info/PKG-INFO
new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/PKG-INFO
--- old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib_qthelp.egg-info/PKG-INFO
2019-02-24 11:27:32.000000000 +0100
+++ new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/PKG-INFO
2020-02-29 05:19:04.000000000 +0100
@@ -1,9 +1,7 @@
Metadata-Version: 2.1
Name: sphinxcontrib-qthelp
-Version: 1.0.2
-Summary:
-sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.
-
+Version: 1.0.3
+Summary: sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp
document.
Home-page: http://sphinx-doc.org/
Author: Georg Brandl
Author-email: [email protected]
@@ -33,3 +31,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-qthelp-1.0.2/sphinxcontrib_qthelp.egg-info/requires.txt
new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/requires.txt
--- old/sphinxcontrib-qthelp-1.0.2/sphinxcontrib_qthelp.egg-info/requires.txt
2019-02-24 11:27:32.000000000 +0100
+++ new/sphinxcontrib-qthelp-1.0.3/sphinxcontrib_qthelp.egg-info/requires.txt
2020-02-29 05:19:04.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-qthelp-1.0.2/tox.ini
new/sphinxcontrib-qthelp-1.0.3/tox.ini
--- old/sphinxcontrib-qthelp-1.0.2/tox.ini 2019-02-24 11:24:59.000000000
+0100
+++ new/sphinxcontrib-qthelp-1.0.3/tox.ini 2020-01-12 16:58:51.000000000
+0100
@@ -1,5 +1,5 @@
[tox]
-envlist=flake8,mypy,py35,py36,py37,py38
+envlist=flake8,mypy,py35,py36,py37,py38,py39
[testenv]
deps=
@@ -15,14 +15,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/