debian: Fix script

This commit is contained in:
Rylie Pavlik 2024-05-03 12:48:48 -05:00
parent 5d46afd65c
commit d9af765f9c

View file

@ -33,11 +33,16 @@ set -e
UPSTREAM_VER=$(git describe --exclude "v0*" "$COMMIT_TO_PACKAGE" | sed -E -e 's/^v//' -e 's/-([0-9]+)-g([0-9a-f])/+git\1.\2/')
echo "Computed package version ${UPSTREAM_VER}"
git archive --format=tar "--prefix=monado_${UPSTREAM_VER}/" "${COMMIT_TO_PACKAGE}" | gzip -n > "../monado_${UPSTREAM_VER}.orig.tar.gz"
# Show hash of the orig.tar.gz for easy comparison
sha256sum "../monado_${UPSTREAM_VER}.orig.tar.gz"
dch --newversion "${UPSTREAM_VER}-${PKG_REVISION}" \
--preserve \
--force-distribution \
--distribution focal \
--release \
"Automated CI build of commit ${COMMIT_TO_PACKAGE}"
# Show changelog entry added
dpkg-parsechangelog --count 1
)