Hello community, here is the log from the commit of package python-sphinxcontrib-devhelp for openSUSE:Factory checked in at 2020-03-08 22:22:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-devhelp (Old) and /work/SRC/openSUSE:Factory/.python-sphinxcontrib-devhelp.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-devhelp" Sun Mar 8 22:22:51 2020 rev:2 rq:782224 version:1.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sphinxcontrib-devhelp/python-sphinxcontrib-devhelp.changes 2019-06-18 14:46:36.441721652 +0200 +++ /work/SRC/openSUSE:Factory/.python-sphinxcontrib-devhelp.new.26092/python-sphinxcontrib-devhelp.changes 2020-03-08 22:22:56.104032949 +0100 @@ -1,0 +2,6 @@ +Fri Mar 6 12:52:53 UTC 2020 - pgaj...@suse.com + +- version update to 1.0.2 + * Fix package metadata + +------------------------------------------------------------------- Old: ---- sphinxcontrib-devhelp-1.0.1.tar.gz New: ---- sphinxcontrib-devhelp-1.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sphinxcontrib-devhelp.spec ++++++ --- /var/tmp/diff_new_pack.WolvoD/_old 2020-03-08 22:22:58.916034684 +0100 +++ /var/tmp/diff_new_pack.WolvoD/_new 2020-03-08 22:22:58.920034686 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-sphinxcontrib-devhelp # -# 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-devhelp%{psuffix} -Version: 1.0.1 +Version: 1.0.2 Release: 0 Summary: Sphinx extension which outputs Devhelp documents License: BSD-2-Clause ++++++ sphinxcontrib-devhelp-1.0.1.tar.gz -> sphinxcontrib-devhelp-1.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-devhelp-1.0.1/CHANGES new/sphinxcontrib-devhelp-1.0.2/CHANGES --- old/sphinxcontrib-devhelp-1.0.1/CHANGES 2019-02-14 17:31:32.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/CHANGES 2020-02-29 05:14:22.000000000 +0100 @@ -1,3 +1,8 @@ +Release 1.0.2 (2019-02-29) +========================== + +* Fix package metadata has broken + Release 1.0.1 (2019-02-15) ========================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-devhelp-1.0.1/PKG-INFO new/sphinxcontrib-devhelp-1.0.2/PKG-INFO --- old/sphinxcontrib-devhelp-1.0.1/PKG-INFO 2019-02-14 17:31:58.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/PKG-INFO 2020-02-29 05:14:35.473001700 +0100 @@ -1,9 +1,7 @@ Metadata-Version: 2.1 Name: sphinxcontrib-devhelp -Version: 1.0.1 -Summary: -sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. - +Version: 1.0.2 +Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: ge...@python.org @@ -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-devhelp-1.0.1/setup.py new/sphinxcontrib-devhelp-1.0.2/setup.py --- old/sphinxcontrib-devhelp-1.0.1/setup.py 2019-01-19 16:16:23.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/setup.py 2020-02-29 05:02:39.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='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-devhelp-1.0.1/sphinxcontrib/__init__.py new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib/__init__.py --- old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib/__init__.py 2019-01-19 16:08:54.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib/__init__.py 2020-01-12 16:31:11.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-devhelp-1.0.1/sphinxcontrib/devhelp/__init__.py new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/__init__.py --- old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib/devhelp/__init__.py 2019-01-19 16:14:26.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/__init__.py 2020-01-12 16:58:33.000000000 +0100 @@ -147,7 +147,9 @@ app.add_builder(DevhelpBuilder) app.add_message_catalog(__name__, path.join(package_dir, 'locales')) - app.add_config_value('devhelp_basename', lambda self: make_filename(self.project), None) + app.add_config_value('devhelp_basename', + lambda self: make_filename(self.project), + 'devhelp') return { 'version': __version__, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib/devhelp/version.py new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/version.py --- old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib/devhelp/version.py 2019-01-19 18:53:09.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib/devhelp/version.py 2020-01-12 16:31:11.000000000 +0100 @@ -6,5 +6,5 @@ :license: BSD, see LICENSE for details. """ -__version__ = '1.0.1' +__version__ = '1.0.2' __version_info__ = tuple(map(int, __version__.split('.'))) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib_devhelp.egg-info/PKG-INFO new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/PKG-INFO --- old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib_devhelp.egg-info/PKG-INFO 2019-02-14 17:31:57.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/PKG-INFO 2020-02-29 05:14:35.000000000 +0100 @@ -1,9 +1,7 @@ Metadata-Version: 2.1 Name: sphinxcontrib-devhelp -Version: 1.0.1 -Summary: -sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. - +Version: 1.0.2 +Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. Home-page: http://sphinx-doc.org/ Author: Georg Brandl Author-email: ge...@python.org @@ -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-devhelp-1.0.1/sphinxcontrib_devhelp.egg-info/requires.txt new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/requires.txt --- old/sphinxcontrib-devhelp-1.0.1/sphinxcontrib_devhelp.egg-info/requires.txt 2019-02-14 17:31:57.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/sphinxcontrib_devhelp.egg-info/requires.txt 2020-02-29 05:14:35.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-devhelp-1.0.1/tox.ini new/sphinxcontrib-devhelp-1.0.2/tox.ini --- old/sphinxcontrib-devhelp-1.0.1/tox.ini 2019-01-19 16:08:54.000000000 +0100 +++ new/sphinxcontrib-devhelp-1.0.2/tox.ini 2020-01-12 16:58:33.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/