
Change-Id: I296a5f356ca805deda28ea984df15c0b63b43a80 Closes-Bug: #1487077 Closes-Bug: #1489506 Implements: blueprint refactor-local-mirror-scripts
39 lines
1.3 KiB
Makefile
Executable File
39 lines
1.3 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
PYTHONS:=$(shell pyversions -vr)
|
|
|
|
include /usr/share/openstack-pkg-tools/pkgos.make
|
|
export OSLO_PACKAGE_VERSION=$(shell dpkg-parsechangelog | grep Version: | cut -d' ' -f2 | sed -e 's/^[[:digit:]]*://' -e 's/[-].*//' -e 's/~/.0/' | head -n 1)
|
|
|
|
%:
|
|
dh $@ --buildsystem=python_distutils --with python2
|
|
|
|
override_dh_clean:
|
|
rm -rf build
|
|
dh_clean -O--buildsystem=python_distutils
|
|
|
|
|
|
override_dh_auto_install:
|
|
set -e ; for pyvers in $(PYTHONS); do \
|
|
python$$pyvers setup.py install --install-layout=deb \
|
|
--root $(CURDIR)/debian/python-packetary; \
|
|
done
|
|
set -e ; cd contrib/fuel_mirror/; \
|
|
for pyvers in $(PYTHONS); do \
|
|
python$$pyvers ./setup.py install --install-layout=deb \
|
|
--root $(CURDIR)/debian/fuel-mirror; \
|
|
done
|
|
|
|
override_dh_fixperms:
|
|
set -e; chmod 755 $(CURDIR)/debian/fuel-mirror/usr/bin/fuel-createmirror
|
|
|
|
override_dh_python2:
|
|
dh_python2 --no-guessing-deps
|
|
|
|
override_dh_installcatalogs:
|
|
override_dh_installemacsen override_dh_installifupdown:
|
|
override_dh_installinfo override_dh_installmenu override_dh_installmime:
|
|
override_dh_installmodules override_dh_installlogcheck:
|
|
override_dh_installpam override_dh_installppp override_dh_installudev override_dh_installwm:
|
|
override_dh_installxfonts override_dh_gconf override_dh_icons override_dh_perl override_dh_usrlocal:
|
|
override_dh_installgsettings: |