Koha/debian/build-git-snapshot
Robin Sheat 8b3a2ecebd Bug 5479 - Update package building scripts
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
2010-12-12 22:45:42 +13:00

64 lines
1.1 KiB
Bash
Executable file

#!/bin/sh
#
# This script will build a .deb from a git snapshot of koha.
# Don't use it for building actual versions for uploading to Debian.
#
# To use:
# - commit any changes into git
# - run this script
set -e
die()
{
echo "$@"
exit 1
}
everything_is_commited()
{
if git status --short | grep -q '^'
then
return 1
else
return 0
fi
}
latest_sha1() {
git rev-parse --short=8 HEAD
}
newversion() {
printf '3.3-1~git%s.%s' $(date +%Y%m%d%H%M%S) $(latest_sha1)
}
adjust_debian_changelog() {
dch --force-distribution -D squeeze-dev -v "$1" \
"Building git snapshot."
dch -r "Building git snapshot."
}
reset_debian_changelog() {
git checkout -- debian/changelog
}
build_package() {
git archive --format=tar --prefix="koha-$1/" HEAD |
gzip -9 > "../koha_$1.tar.gz"
pdebuild $2
}
if ! everything_is_commited
then
die "cannot build: uncommited changes"
fi
version="$(newversion)"
if [ -n "$1" ]
then
pdebuildopts="--buildresult $1"
fi
adjust_debian_changelog "$version"
build_package "$version" "$pdebuildopts"
reset_debian_changelog