mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-26 17:37:34 +00:00
debian: Further improve commit package script
debian: Fix script
This commit is contained in:
parent
ced3d6ae4a
commit
1865a876f8
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/')
|
||||
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"
|
||||
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 bookworm \
|
||||
"Automated CI build of commit ${COMMIT_TO_PACKAGE}"
|
||||
|
||||
# Show changelog entry added
|
||||
dpkg-parsechangelog --count 1
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue