infra-deb-package-build: run mk-build-deps in separate directory

As noted, this can leave behind extra files that make generation of
the final .deb fail.

Change-Id: I2f0efe182f881da792bde686dd73d1d9efea9dad
This commit is contained in:
Ian Wienand 2023-06-05 11:21:20 +10:00
parent 6e81c37e80
commit ab0fad7f58
No known key found for this signature in database
1 changed files with 9 additions and 2 deletions

View File

@ -37,11 +37,18 @@
tar xf {{ infra_deb_project }}_${VERSION}.orig.tar.xz
mv debian ./{{ infra_deb_project }}_${VERSION}.orig
pushd {{ infra_deb_project }}_${VERSION}.orig
# run mk-build-deps in a separate copy, as it can leave behind
# files that wreck generating upload .debs
cp -r {{ infra_deb_project }}_${VERSION}.orig {{ infra_deb_project }}_${VERSION}.orig.deps
pushd {{ infra_deb_project }}_${VERSION}.orig.deps
# install build deps
mk-build-deps --install --root-cmd sudo --remove -t "apt-get -y"
# build source packages
popd
rm -rf ${VERSION}.orig.deps
# build fresh source packages
pushd {{ infra_deb_project }}_${VERSION}.orig
debuild -S -sa --no-sign
popd