dpkg-repo: repackage in TMP/pkg, use TMP as output directory

This avoids the deb file containing itself, and having a /builder-... installed.
This commit is contained in:
Hannes Mehnert 2022-03-07 18:37:17 +01:00
parent 65f29ad8aa
commit 9ab6921105

View file

@ -97,14 +97,18 @@ cleanup () {
trap cleanup EXIT
dpkg-deb -R "${FILENAME}" "${TMP}"
PKG_ROOT="${TMP}/pkg"
mkdir "${PKG_ROOT}"
dpkg-deb -R "${FILENAME}" "${PKG_ROOT}"
VERSION=$(dpkg-deb -f "${FILENAME}" Version)
NEW_VERSION="${VERSION}"-"${BUILD_TIME}"-"${SHA}"
sed -i "" -e "s/Version:.*/Version: ${NEW_VERSION}/g" "${TMP}/DEBIAN/control"
sed -i "" -e "s/Version:.*/Version: ${NEW_VERSION}/g" "${PKG_ROOT}/DEBIAN/control"
dpkg-deb --build "${TMP}" "${TMP}"
dpkg-deb --build "${PKG_ROOT}" "${TMP}"
if ! aptly repo show "${PLATFORM}" > /dev/null 2>&1; then
aptly repo create --distribution="${PLATFORM}" "${PLATFORM}"