diff -Nru oslo-sphinx-3.2.0/debian/changelog oslo-sphinx-3.2.0/debian/changelog --- oslo-sphinx-3.2.0/debian/changelog 2015-10-05 21:43:38.000000000 +0000 +++ oslo-sphinx-3.2.0/debian/changelog 2015-10-05 21:58:31.000000000 +0000 @@ -1,8 +1,8 @@ -oslo-sphinx (3.2.0-1~ubuntu15.10.1~ppa201510051743) wily; urgency=medium +oslo-sphinx (3.2.0-1~ubuntu15.10.1~ppa201510051758) wily; urgency=medium * No-change backport to wily - -- Corey Bryant Mon, 05 Oct 2015 17:43:38 -0400 + -- Corey Bryant Mon, 05 Oct 2015 17:58:31 -0400 oslo-sphinx (3.2.0-1) UNRELEASED; urgency=medium diff -Nru oslo-sphinx-3.2.0/debian/rules oslo-sphinx-3.2.0/debian/rules --- oslo-sphinx-3.2.0/debian/rules 2015-10-05 21:43:10.000000000 +0000 +++ oslo-sphinx-3.2.0/debian/rules 2015-10-05 21:53:31.000000000 +0000 @@ -16,8 +16,13 @@ rm -rf oslo.sphinx.egg-info override_dh_auto_install: - set -e && for pyvers in $(PYTHONS) $(PYTHON3S) ; do \ + set -e && for pyvers in $(PYTHONS) ; do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-oslosphinx; \ cp -rf oslosphinx/theme $(CURDIR)/debian/python-oslosphinx/usr/lib/python$$pyvers/dist-packages/oslosphinx ; \ done + set -e && for pyvers in $(PYTHON3S) ; do \ + python$$pyvers setup.py install --install-layout=deb \ + --root $(CURDIR)/debian/python3-oslosphinx; \ + cp -rf oslosphinx/theme $(CURDIR)/debian/python3-oslosphinx/usr/lib/python$$pyvers/dist-packages/oslosphinx ; \ + done