Fixed python-python -> python

This commit is contained in:
Thomas Goirand
2015-12-09 08:44:27 +00:00
parent cdf7928e7a
commit e475a4a2f4
3 changed files with 7 additions and 7 deletions

4
debian/control vendored
View File

@@ -81,7 +81,7 @@ Description: OpenStack Clustering API Client Library - Python 2.7
.
This package contains the Python 2.7 module.
Package: python3-python-senlinclient
Package: python3-senlinclient
Architecture: all
Depends: python3-babel,
python3-heatclient (>= 0.6.0),
@@ -104,7 +104,7 @@ Description: OpenStack Clustering API Client Library - Python 3.x
.
This package contains the Python 3.x module.
Package: python-python-senlinclient-doc
Package: python-senlinclient-doc
Section: doc
Architecture: all
Depends: ${misc:Depends},

View File

@@ -5,5 +5,5 @@ Abstract: Sphinx documentation for python-senlinclient
Section: Programming/Python
Format: HTML
Index: /usr/share/doc/python-python-senlinclient-doc/html/index.html
Files: /usr/share/doc/python-python-senlinclient-doc/html/*
Index: /usr/share/doc/python-senlinclient-doc/html/index.html
Files: /usr/share/doc/python-senlinclient-doc/html/*

6
debian/rules vendored
View File

@@ -13,11 +13,11 @@ export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog | grep Version: | cut -d
override_dh_auto_install:
set -e ; for pyvers in $(PYTHONS); do \
python$$pyvers setup.py install --install-layout=deb \
--root $(CURDIR)/debian/python-python-senlinclient; \
--root $(CURDIR)/debian/python-senlinclient; \
done
set -e ; for pyvers in $(PYTHON3S); do \
python$$pyvers setup.py install --install-layout=deb \
--root $(CURDIR)/debian/python3-python-senlinclient; \
--root $(CURDIR)/debian/python3-senlinclient; \
done
rm -rf $(CURDIR)/debian/python*-python-senlinclient/usr/lib/python*/dist-packages/*.pth
@@ -42,7 +42,7 @@ endif
override_dh_sphinxdoc:
ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS)))
sphinx-build -b html doc/source debian/python-python-senlinclient-doc/usr/share/doc/python-python-senlinclient-doc/html
sphinx-build -b html doc/source debian/python-senlinclient-doc/usr/share/doc/python-senlinclient-doc/html
dh_sphinxdoc -O--buildsystem=python_distutils
endif