New Upstream Snapshot - sphinxcontrib-devhelp

Ready changes

Summary

Merged new upstream version: 1.0.2+git20210508.1.883cdd9 (was: 1.0.2).

Resulting package

Built on 2023-01-04T21:07 (took 13m43s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots python3-sphinxcontrib.devhelp

Lintian Result

Diff

diff --git a/PKG-INFO b/PKG-INFO
index 5bca595..b38e5f1 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,15 +1,12 @@
 Metadata-Version: 2.1
 Name: sphinxcontrib-devhelp
-Version: 1.0.2
+Version: 1.0.3.dev20230104
 Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
 Home-page: http://sphinx-doc.org/
+Download-URL: https://pypi.org/project/sphinxcontrib-devhelp/
 Author: Georg Brandl
 Author-email: georg@python.org
 License: BSD
-Download-URL: https://pypi.org/project/sphinxcontrib-devhelp/
-Description: 
-        sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
-        
 Platform: any
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Console
@@ -30,5 +27,9 @@ Classifier: Topic :: Documentation :: Sphinx
 Classifier: Topic :: Text Processing
 Classifier: Topic :: Utilities
 Requires-Python: >=3.5
-Provides-Extra: test
 Provides-Extra: lint
+Provides-Extra: test
+License-File: LICENSE
+
+
+sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
diff --git a/debian/changelog b/debian/changelog
index f172aa6..ebd837c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+sphinxcontrib-devhelp (1.0.2+git20210508.1.883cdd9-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Wed, 04 Jan 2023 20:58:08 -0000
+
 sphinxcontrib-devhelp (1.0.2-3) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/patches/entry_points.patch b/debian/patches/entry_points.patch
index 4599e57..849e7a6 100644
--- a/debian/patches/entry_points.patch
+++ b/debian/patches/entry_points.patch
@@ -1,5 +1,7 @@
---- a/setup.cfg
-+++ b/setup.cfg
+Index: sphinxcontrib-devhelp.git/setup.cfg
+===================================================================
+--- sphinxcontrib-devhelp.git.orig/setup.cfg
++++ sphinxcontrib-devhelp.git/setup.cfg
 @@ -28,3 +28,6 @@ exclude = .git,.tox,.venv
  [mypy]
  ignore_missing_imports = True
diff --git a/setup.cfg b/setup.cfg
index 95b7bcc..7ff133c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [egg_info]
-tag_build = 
+tag_build = .dev-20230104
 tag_date = 0
 
 [aliases]
diff --git a/sphinxcontrib/devhelp/__init__.py b/sphinxcontrib/devhelp/__init__.py
index 27f1223..d53bd15 100644
--- a/sphinxcontrib/devhelp/__init__.py
+++ b/sphinxcontrib/devhelp/__init__.py
@@ -139,7 +139,7 @@ class DevhelpBuilder(StandaloneHTMLBuilder):
         # Dump the XML file
         xmlfile = path.join(outdir, outname + '.devhelp.gz')
         with gzip.open(xmlfile, 'w') as f:
-            tree.write(f, 'utf-8')
+            tree.write(f, 'utf-8')  # type: ignore
 
 
 def setup(app: Sphinx) -> Dict[str, Any]:
diff --git a/sphinxcontrib/devhelp/version.py b/sphinxcontrib/devhelp/version.py
index 0396b71..b3fa781 100644
--- a/sphinxcontrib/devhelp/version.py
+++ b/sphinxcontrib/devhelp/version.py
@@ -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 --git a/sphinxcontrib_devhelp.egg-info/PKG-INFO b/sphinxcontrib_devhelp.egg-info/PKG-INFO
index 5bca595..b38e5f1 100644
--- a/sphinxcontrib_devhelp.egg-info/PKG-INFO
+++ b/sphinxcontrib_devhelp.egg-info/PKG-INFO
@@ -1,15 +1,12 @@
 Metadata-Version: 2.1
 Name: sphinxcontrib-devhelp
-Version: 1.0.2
+Version: 1.0.3.dev20230104
 Summary: sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
 Home-page: http://sphinx-doc.org/
+Download-URL: https://pypi.org/project/sphinxcontrib-devhelp/
 Author: Georg Brandl
 Author-email: georg@python.org
 License: BSD
-Download-URL: https://pypi.org/project/sphinxcontrib-devhelp/
-Description: 
-        sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
-        
 Platform: any
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Console
@@ -30,5 +27,9 @@ Classifier: Topic :: Documentation :: Sphinx
 Classifier: Topic :: Text Processing
 Classifier: Topic :: Utilities
 Requires-Python: >=3.5
-Provides-Extra: test
 Provides-Extra: lint
+Provides-Extra: test
+License-File: LICENSE
+
+
+sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.
diff --git a/sphinxcontrib_devhelp.egg-info/requires.txt b/sphinxcontrib_devhelp.egg-info/requires.txt
index d7f80e8..f1bc0ab 100644
--- a/sphinxcontrib_devhelp.egg-info/requires.txt
+++ b/sphinxcontrib_devhelp.egg-info/requires.txt
@@ -1,8 +1,8 @@
 
 [lint]
+docutils-stubs
 flake8
 mypy
-docutils-stubs
 
 [test]
 pytest
diff --git a/tox.ini b/tox.ini
index 4a831a4..62aa34e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,16 @@
 [tox]
-envlist=flake8,mypy,py35,py36,py37,py38,py39
+envlist =
+    py{36,37,38,39,310-dev},
+    flake8,
+    mypy
+
+[gh-actions]
+python =
+    3.6: py36
+    3.7: py37
+    3.8: py38
+    3.9: py39
+    3.10: py310-dev
 
 [testenv]
 deps=

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in second set of .debs but not in first

-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104-nspkg.pth
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/PKG-INFO
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/dependency_links.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/entry_points.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/namespace_packages.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/not-zip-safe
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/requires.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.3.dev20230104.egg-info/top_level.txt

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2-nspkg.pth
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/PKG-INFO
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/dependency_links.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/entry_points.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/namespace_packages.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/not-zip-safe
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/requires.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/sphinxcontrib_devhelp-1.0.2.egg-info/top_level.txt

No differences were encountered in the control files

More details

Full run details