mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 02:26:16 +00:00
debian: Further improve commit package script
debian: Fix script
This commit is contained in:
parent
5eb80e7b67
commit
2267a74996
13
debian/extra/prepare-commit-package.sh
vendored
13
debian/extra/prepare-commit-package.sh
vendored
|
@ -33,5 +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/')
|
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}"
|
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"
|
git archive --format=tar "--prefix=monado_${UPSTREAM_VER}/" "${COMMIT_TO_PACKAGE}" | gzip -n > "../monado_${UPSTREAM_VER}.orig.tar.gz"
|
||||||
dch --newversion "${UPSTREAM_VER}-${PKG_REVISION}" --preserve "Automated CI build of commit ${COMMIT_TO_PACKAGE}"
|
|
||||||
|
# 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 jammy \
|
||||||
|
"Automated CI build of commit ${COMMIT_TO_PACKAGE}"
|
||||||
|
|
||||||
|
# Show changelog entry added
|
||||||
|
dpkg-parsechangelog --count 1
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue