diff -Nru python-xstatic-json2yaml-0.1.1.0/debian/changelog python-xstatic-json2yaml-0.1.1.0/debian/changelog --- python-xstatic-json2yaml-0.1.1.0/debian/changelog 2021-01-07 15:39:39.000000000 +0000 +++ python-xstatic-json2yaml-0.1.1.0/debian/changelog 2023-08-17 22:26:38.000000000 +0000 @@ -1,3 +1,14 @@ +python-xstatic-json2yaml (0.1.1.0-2) unstable; urgency=medium + + [ Ondřej Nový ] + * d/copyright: Use https protocol in Format field + * Use debhelper-compat instead of debian/compat. + + [ Thomas Goirand ] + * Cleans better (Closes: #1046430). + + -- Thomas Goirand Fri, 18 Aug 2023 00:26:38 +0200 + python-xstatic-json2yaml (0.1.1.0-1.1) unstable; urgency=medium * Non maintainer upload by the Reproducible Builds team. diff -Nru python-xstatic-json2yaml-0.1.1.0/debian/compat python-xstatic-json2yaml-0.1.1.0/debian/compat --- python-xstatic-json2yaml-0.1.1.0/debian/compat 2018-08-25 21:02:13.000000000 +0000 +++ python-xstatic-json2yaml-0.1.1.0/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -10 diff -Nru python-xstatic-json2yaml-0.1.1.0/debian/control python-xstatic-json2yaml-0.1.1.0/debian/control --- python-xstatic-json2yaml-0.1.1.0/debian/control 2018-08-25 21:02:13.000000000 +0000 +++ python-xstatic-json2yaml-0.1.1.0/debian/control 2023-08-17 22:26:38.000000000 +0000 @@ -5,7 +5,7 @@ Uploaders: Thomas Goirand , Build-Depends: - debhelper (>= 10), + debhelper-compat (= 10), dh-python, openstack-pkg-tools, python3-all, diff -Nru python-xstatic-json2yaml-0.1.1.0/debian/copyright python-xstatic-json2yaml-0.1.1.0/debian/copyright --- python-xstatic-json2yaml-0.1.1.0/debian/copyright 2018-08-25 21:02:13.000000000 +0000 +++ python-xstatic-json2yaml-0.1.1.0/debian/copyright 2023-08-17 22:26:38.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: xstatic-json2yaml Source: https://github.com/openstack/xstatic-json2yaml diff -Nru python-xstatic-json2yaml-0.1.1.0/debian/rules python-xstatic-json2yaml-0.1.1.0/debian/rules --- python-xstatic-json2yaml-0.1.1.0/debian/rules 2018-08-25 21:02:13.000000000 +0000 +++ python-xstatic-json2yaml-0.1.1.0/debian/rules 2023-08-17 22:26:38.000000000 +0000 @@ -7,7 +7,9 @@ dh $@ --buildsystem=python_distutils --with python3 override_dh_auto_clean: - echo "Do nothing..." + rm -rf build .stestr *.egg-info + find . -iname '*.pyc' -delete + for i in $$(find . -type d -iname __pycache__) ; do rm -rf $$i ; done override_dh_auto_build: echo "Do nothing..."