Added check-uuid to the update-alternative handling.
This commit is contained in:
1
debian/changelog
vendored
1
debian/changelog
vendored
@@ -3,6 +3,7 @@ python-tempest-lib (0.11.0-1) experimental; urgency=medium
|
|||||||
[ Thomas Goirand ]
|
[ Thomas Goirand ]
|
||||||
* New upstream release.
|
* New upstream release.
|
||||||
* Fixed (build-)depends for this release.
|
* Fixed (build-)depends for this release.
|
||||||
|
* Added check-uuid to the update-alternative handling.
|
||||||
|
|
||||||
[ Corey Bryant ]
|
[ Corey Bryant ]
|
||||||
* d/control: Update uploaders.
|
* d/control: Update uploaders.
|
||||||
|
1
debian/python-tempest-lib.postinst
vendored
1
debian/python-tempest-lib.postinst
vendored
@@ -4,6 +4,7 @@ set -e
|
|||||||
|
|
||||||
if [ "$1" = "configure" ] ; then
|
if [ "$1" = "configure" ] ; then
|
||||||
update-alternatives --install /usr/bin/skip-tracker skip-tracker /usr/bin/python2-skip-tracker 300
|
update-alternatives --install /usr/bin/skip-tracker skip-tracker /usr/bin/python2-skip-tracker 300
|
||||||
|
update-alternatives --install /usr/bin/check-uuid check-uuid /usr/bin/python2-check-uuid 300
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
1
debian/python-tempest-lib.postrm
vendored
1
debian/python-tempest-lib.postrm
vendored
@@ -5,6 +5,7 @@ set -e
|
|||||||
if [ "$1" = "remove" ] || [ "$1" = "disappear" ]; then
|
if [ "$1" = "remove" ] || [ "$1" = "disappear" ]; then
|
||||||
update-alternatives --remove subunit-trace /usr/bin/python2-subunit-trace
|
update-alternatives --remove subunit-trace /usr/bin/python2-subunit-trace
|
||||||
update-alternatives --remove skip-tracker /usr/bin/python2-skip-tracker
|
update-alternatives --remove skip-tracker /usr/bin/python2-skip-tracker
|
||||||
|
update-alternatives --remove check-uuid /usr/bin/python2-check-uuid
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
1
debian/python-tempest-lib.prerm
vendored
1
debian/python-tempest-lib.prerm
vendored
@@ -5,6 +5,7 @@ set -e
|
|||||||
if [ "$1" = "remove" ] ; then
|
if [ "$1" = "remove" ] ; then
|
||||||
update-alternatives --remove subunit-trace /usr/bin/python2-subunit-trace
|
update-alternatives --remove subunit-trace /usr/bin/python2-subunit-trace
|
||||||
update-alternatives --remove skip-tracker /usr/bin/python2-skip-tracker
|
update-alternatives --remove skip-tracker /usr/bin/python2-skip-tracker
|
||||||
|
update-alternatives --remove check-uuid /usr/bin/python2-check-uuid
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
1
debian/python3-tempest-lib.postinst
vendored
1
debian/python3-tempest-lib.postinst
vendored
@@ -4,6 +4,7 @@ set -e
|
|||||||
|
|
||||||
if [ "$1" = "configure" ] ; then
|
if [ "$1" = "configure" ] ; then
|
||||||
update-alternatives --install /usr/bin/skip-tracker skip-tracker /usr/bin/python3-skip-tracker 200
|
update-alternatives --install /usr/bin/skip-tracker skip-tracker /usr/bin/python3-skip-tracker 200
|
||||||
|
update-alternatives --install /usr/bin/check-uuid check-uuid /usr/bin/python3-check-uuid 200
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
1
debian/python3-tempest-lib.postrm
vendored
1
debian/python3-tempest-lib.postrm
vendored
@@ -5,6 +5,7 @@ set -e
|
|||||||
if [ "$1" = "remove" ] || [ "$1" = "disappear" ]; then
|
if [ "$1" = "remove" ] || [ "$1" = "disappear" ]; then
|
||||||
update-alternatives --remove subunit-trace /usr/bin/python3-subunit-trace
|
update-alternatives --remove subunit-trace /usr/bin/python3-subunit-trace
|
||||||
update-alternatives --remove skip-tracker /usr/bin/python3-skip-tracker
|
update-alternatives --remove skip-tracker /usr/bin/python3-skip-tracker
|
||||||
|
update-alternatives --remove check-uuid /usr/bin/python3-check-uuid
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
1
debian/python3-tempest-lib.prerm
vendored
1
debian/python3-tempest-lib.prerm
vendored
@@ -5,6 +5,7 @@ set -e
|
|||||||
if [ "$1" = "remove" ] ; then
|
if [ "$1" = "remove" ] ; then
|
||||||
update-alternatives --remove subunit-trace /usr/bin/python3-subunit-trace
|
update-alternatives --remove subunit-trace /usr/bin/python3-subunit-trace
|
||||||
update-alternatives --remove skip-tracker /usr/bin/python3-skip-tracker
|
update-alternatives --remove skip-tracker /usr/bin/python3-skip-tracker
|
||||||
|
update-alternatives --remove check-uuid /usr/bin/python3-check-uuid
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#DEBHELPER#
|
#DEBHELPER#
|
||||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@@ -21,7 +21,9 @@ override_dh_install:
|
|||||||
--root $(CURDIR)/debian/python3-tempest-lib; \
|
--root $(CURDIR)/debian/python3-tempest-lib; \
|
||||||
done
|
done
|
||||||
mv $(CURDIR)/debian/python-tempest-lib/usr/bin/skip-tracker $(CURDIR)/debian/python-tempest-lib/usr/bin/python2-skip-tracker
|
mv $(CURDIR)/debian/python-tempest-lib/usr/bin/skip-tracker $(CURDIR)/debian/python-tempest-lib/usr/bin/python2-skip-tracker
|
||||||
|
mv $(CURDIR)/debian/python-tempest-lib/usr/bin/check-uuid $(CURDIR)/debian/python-tempest-lib/usr/bin/python2-check-uuid
|
||||||
mv $(CURDIR)/debian/python3-tempest-lib/usr/bin/skip-tracker $(CURDIR)/debian/python3-tempest-lib/usr/bin/python3-skip-tracker
|
mv $(CURDIR)/debian/python3-tempest-lib/usr/bin/skip-tracker $(CURDIR)/debian/python3-tempest-lib/usr/bin/python3-skip-tracker
|
||||||
|
mv $(CURDIR)/debian/python3-tempest-lib/usr/bin/check-uuid $(CURDIR)/debian/python3-tempest-lib/usr/bin/python3-check-uuid
|
||||||
rm -rf $(CURDIR)/debian/python*-tempest-lib/usr/lib/python*/dist-packages/*.pth
|
rm -rf $(CURDIR)/debian/python*-tempest-lib/usr/lib/python*/dist-packages/*.pth
|
||||||
|
|
||||||
override_dh_python3:
|
override_dh_python3:
|
||||||
|
Reference in New Issue
Block a user