diff -Nru cloud-sptheme-1.9.4/debian/changelog cloud-sptheme-1.9.4/debian/changelog --- cloud-sptheme-1.9.4/debian/changelog 2018-04-30 19:00:08.000000000 +0000 +++ cloud-sptheme-1.9.4/debian/changelog 2019-07-31 08:21:50.000000000 +0000 @@ -1,3 +1,14 @@ +cloud-sptheme (1.9.4-2) unstable; urgency=medium + + * Team upload. + * d/control: Remove ancient X-Python-Version field + * Use 'python3 -m sphinx' instead of sphinx-build for building docs + * Use debhelper-compat instead of debian/compat. + * Use Python 3 for building docs. + * Drop Python 2 support. + + -- Ondřej Nový Wed, 31 Jul 2019 10:21:50 +0200 + cloud-sptheme (1.9.4-1) unstable; urgency=medium [ Nicolas Dandrimont ] diff -Nru cloud-sptheme-1.9.4/debian/compat cloud-sptheme-1.9.4/debian/compat --- cloud-sptheme-1.9.4/debian/compat 2018-04-30 18:57:02.000000000 +0000 +++ cloud-sptheme-1.9.4/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -11 diff -Nru cloud-sptheme-1.9.4/debian/control cloud-sptheme-1.9.4/debian/control --- cloud-sptheme-1.9.4/debian/control 2018-04-30 18:57:52.000000000 +0000 +++ cloud-sptheme-1.9.4/debian/control 2019-07-31 08:21:50.000000000 +0000 @@ -3,52 +3,18 @@ Priority: optional Maintainer: Debian Python Modules Team Uploaders: Nicolas Dandrimont -Build-Depends: debhelper (>= 11~), +Build-Depends: debhelper-compat (= 11), dh-python, - python-all, - python-mock, - python-setuptools, - python-sphinx, + python3-sphinx, python3-all, python3-mock, python3-setuptools, python3-sphinx Standards-Version: 4.1.4 -X-Python-Version: >= 2.6 Homepage: https://cloud-sptheme.readthedocs.io/ Vcs-Git: https://salsa.debian.org/python-team/modules/cloud-sptheme.git Vcs-Browser: https://salsa.debian.org/python-team/modules/cloud-sptheme -Package: python-cloud-sptheme -Architecture: all -Depends: cloud-sptheme-common (= ${source:Version}), - ${misc:Depends}, - ${python:Depends} -Description: Cloud Sphinx theme and related extensions - cloud_sptheme contains a Sphinx theme named "Cloud", and some related - Sphinx extensions. Cloud and its extensions are primarily oriented - towards generating html documentation for Python libraries. It provides - numerous small enhancements to make the html documentation more - interactive, and improve the layout on mobile devices. - . - In addition to the Cloud theme, this package provides a few extra Sphinx - extensions which may be useful when documenting Python projects; and - should be theme-agnostic: - . - cloud_sptheme.ext.autodoc_sections - Patches the sphinx.ext.autodoc to handle RST section headers inside - docstrings. - cloud_sptheme.ext.issue_tracker - Adds a special :issue: role for quickly linking to your project's - issue tracker. - cloud_sptheme.ext.escaped_samp_literals - Patches Sphinx to permit escaped {} characters within a :samp: role. - cloud_sptheme.ext.table_styling - Enhances .. table directive to support per-column text alignment and - other layout features. - . - This package contains the Python 2 version of cloud_sptheme. - Package: python3-cloud-sptheme Architecture: all Depends: cloud-sptheme-common (= ${source:Version}), diff -Nru cloud-sptheme-1.9.4/debian/python-cloud-sptheme.install cloud-sptheme-1.9.4/debian/python-cloud-sptheme.install --- cloud-sptheme-1.9.4/debian/python-cloud-sptheme.install 2018-04-24 15:30:40.000000000 +0000 +++ cloud-sptheme-1.9.4/debian/python-cloud-sptheme.install 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/usr/lib/python2.* diff -Nru cloud-sptheme-1.9.4/debian/rules cloud-sptheme-1.9.4/debian/rules --- cloud-sptheme-1.9.4/debian/rules 2018-04-24 15:30:40.000000000 +0000 +++ cloud-sptheme-1.9.4/debian/rules 2019-07-31 08:21:50.000000000 +0000 @@ -1,11 +1,11 @@ #!/usr/bin/make -f %: - dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild + dh $@ --with python3,sphinxdoc --buildsystem=pybuild override_dh_auto_build: dh_auto_build - sphinx-build $(CURDIR)/docs $(CURDIR)/html + python3 -m sphinx $(CURDIR)/docs $(CURDIR)/html override_dh_auto_clean: dh_auto_clean