blob: 963c139def43a3029cd00af55624a1efb893b32c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/bin/bash
if [ ! -d debian -o ! -d src ]; then
echo "this script must be run from the root of the source tree (the directory with debian and src in it)"
exit 1
fi
source scripts/githelper.sh
githelper $1
GIT_VERSION=$(scripts/get-version-from-git $GIT_BRANCH)
if [ $? -ne 0 ]; then
echo "error determining version!"
exit 1
fi
DEB_VERSION=`git show HEAD:debian/changelog | head -1 | sed 's/.*(\(.*\)).*/\1/'`
NEW_DEB_VERSION=$(echo $GIT_VERSION | sed -r 's/-pre/~pre/; s/-/./g')
NEW_DEB_VERSION="1:${NEW_DEB_VERSION/v/}"
if [ "$NEW_DEB_VERSION" = "$DEB_VERSION" ]; then
echo "no changes since the version at the top of the debian/changelog file"
echo "not modifying debian/changelog"
exit 0
fi
set -e
(
echo "linuxcnc ($NEW_DEB_VERSION) $(lsb_release -cs); urgency=low"
echo
git log --pretty=format:" * %w(72,0,6)%s" $GIT_TAG..
echo
echo
echo " -- buildbot <buildbot@example.com> $(date -R)"
echo
git show HEAD:debian/changelog
) > debian/changelog
dch -r --nomultimaint ""
|