Hello community, here is the log from the commit of package python-sphinxcontrib-applehelp for openSUSE:Factory checked in at 2020-03-08 22:22:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sphinxcontrib-applehelp (Old) and /work/SRC/openSUSE:Factory/.python-sphinxcontrib-applehelp.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sphinxcontrib-applehelp" Sun Mar 8 22:22:54 2020 rev:2 rq:782534 version:1.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sphinxcontrib-applehelp/python-sphinxcontrib-applehelp.changes 2019-06-18 14:46:29.953722948 +0200 +++ /work/SRC/openSUSE:Factory/.python-sphinxcontrib-applehelp.new.26092/python-sphinxcontrib-applehelp.changes 2020-03-08 22:23:00.224035491 +0100 @@ -1,0 +2,6 @@ +Fri Mar 6 12:57:06 UTC 2020 - pgaj...@suse.com + +- version update to 1.0.2 + * Fix package metadata + +------------------------------------------------------------------- Old: ---- sphinxcontrib-applehelp-1.0.1.tar.gz New: ---- sphinxcontrib-applehelp-1.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sphinxcontrib-applehelp.spec ++++++ --- /var/tmp/diff_new_pack.woh3yE/_old 2020-03-08 22:23:00.896035905 +0100 +++ /var/tmp/diff_new_pack.woh3yE/_new 2020-03-08 22:23:00.896035905 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-sphinxcontrib-applehelp # -# 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,24 +27,24 @@ %endif %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-sphinxcontrib-applehelp%{psuffix} -Version: 1.0.1 +Version: 1.0.2 Release: 0 Summary: Sphinx extension which outputs Apple help books License: BSD-2-Clause Group: Development/Languages/Python URL: https://github.com/sphinx-doc/sphinxcontrib-applehelp Source: https://files.pythonhosted.org/packages/source/s/sphinxcontrib-applehelp/sphinxcontrib-applehelp-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: gettext +BuildRequires: python-rpm-macros +Requires: python-Sphinx +BuildArch: noarch %if %{with test} BuildRequires: %{python_module Sphinx} BuildRequires: %{python_module pytest} BuildRequires: %{python_module sphinxcontrib-applehelp >= %{version}} %endif -BuildRequires: %{python_module setuptools} -BuildRequires: gettext-tools -Requires: python-Sphinx -BuildRequires: fdupes -BuildRequires: python-rpm-macros -BuildArch: noarch %python_subpackages %description ++++++ sphinxcontrib-applehelp-1.0.1.tar.gz -> sphinxcontrib-applehelp-1.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-applehelp-1.0.1/CHANGES new/sphinxcontrib-applehelp-1.0.2/CHANGES --- old/sphinxcontrib-applehelp-1.0.1/CHANGES 2019-02-14 17:29:28.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/CHANGES 2020-02-29 05:11:23.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-applehelp-1.0.1/PKG-INFO new/sphinxcontrib-applehelp-1.0.2/PKG-INFO --- old/sphinxcontrib-applehelp-1.0.1/PKG-INFO 2019-02-14 17:29:53.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/PKG-INFO 2020-02-29 05:12:29.340732800 +0100 @@ -1,9 +1,7 @@ Metadata-Version: 2.1 Name: sphinxcontrib-applehelp -Version: 1.0.1 -Summary: -sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books - +Version: 1.0.2 +Summary: sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books 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-applehelp-1.0.1/setup.py new/sphinxcontrib-applehelp-1.0.2/setup.py --- old/sphinxcontrib-applehelp-1.0.1/setup.py 2019-01-20 08:53:49.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/setup.py 2020-02-29 04:55:25.000000000 +0100 @@ -9,9 +9,12 @@ 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-applehelp-1.0.1/sphinxcontrib/__init__.py new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib/__init__.py --- old/sphinxcontrib-applehelp-1.0.1/sphinxcontrib/__init__.py 2019-01-20 08:45:37.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib/__init__.py 2020-01-12 04:53:34.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-applehelp-1.0.1/sphinxcontrib/applehelp/__init__.py new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib/applehelp/__init__.py --- old/sphinxcontrib-applehelp-1.0.1/sphinxcontrib/applehelp/__init__.py 2019-01-26 04:52:53.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib/applehelp/__init__.py 2020-01-12 05:21:11.000000000 +0100 @@ -255,7 +255,7 @@ 'applehelp') app.add_config_value('applehelp_indexer_path', '/usr/bin/hiutil', 'applehelp') app.add_config_value('applehelp_codesign_path', '/usr/bin/codesign', 'applehelp') - app.add_config_value('applehelp_disable_external_tools', False, None) + app.add_config_value('applehelp_disable_external_tools', False, 'applehelp') return { 'version': __version__, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sphinxcontrib-applehelp-1.0.1/sphinxcontrib/applehelp/version.py new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib/applehelp/version.py --- old/sphinxcontrib-applehelp-1.0.1/sphinxcontrib/applehelp/version.py 2019-02-05 16:44:00.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib/applehelp/version.py 2020-01-12 04:53:34.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-applehelp-1.0.1/sphinxcontrib_applehelp.egg-info/PKG-INFO new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib_applehelp.egg-info/PKG-INFO --- old/sphinxcontrib-applehelp-1.0.1/sphinxcontrib_applehelp.egg-info/PKG-INFO 2019-02-14 17:29:52.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib_applehelp.egg-info/PKG-INFO 2020-02-29 05:12:29.000000000 +0100 @@ -1,9 +1,7 @@ Metadata-Version: 2.1 Name: sphinxcontrib-applehelp -Version: 1.0.1 -Summary: -sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books - +Version: 1.0.2 +Summary: sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books 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-applehelp-1.0.1/sphinxcontrib_applehelp.egg-info/requires.txt new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib_applehelp.egg-info/requires.txt --- old/sphinxcontrib-applehelp-1.0.1/sphinxcontrib_applehelp.egg-info/requires.txt 2019-02-14 17:29:52.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/sphinxcontrib_applehelp.egg-info/requires.txt 2020-02-29 05:12:29.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-applehelp-1.0.1/tox.ini new/sphinxcontrib-applehelp-1.0.2/tox.ini --- old/sphinxcontrib-applehelp-1.0.1/tox.ini 2019-01-20 08:45:37.000000000 +0100 +++ new/sphinxcontrib-applehelp-1.0.2/tox.ini 2020-01-12 05:21:11.000000000 +0100 @@ -1,5 +1,5 @@ [tox] -envlist=flake8,mypy,py35,py36,py37,py38 +envlist=flake8,mypy,py35,py36,py37,py38,py39 [testenv] deps= @@ -12,17 +12,25 @@ commands= pytest --durations 25 {posargs} +[testenv:py39] +deps = + {[testenv]deps} + git+https://github.com/html5lib/html5lib-python + [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/