forked from BoGoEngine/ibus-bogo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daily_build.sh
executable file
·43 lines (30 loc) · 1.25 KB
/
daily_build.sh
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
42
43
#!/bin/sh
# Adapted from github/error454/mplayer-webos
# wrapper around dpkg-buildpackage to generate correct changelog
# use "debian/daily-build.sh -b" to create binary packages
# and "debian/daily-build.sh -S" to create a source package only
#
# Produces something like this: 0.2.99+beta2+15+gf41910e
# This would be assembled from: <latest tag>+<number of commits from that tag>+g<sha>
version=$(LC_ALL=C git describe 2> /dev/null | sed 's/-/+/g')
# Hard-coded, change to suit your path
REPOPATH="/home/chin/dev/bogo/bogoengine.github.com/debian/unstable"
# ensure correct directory
test -r debian/control || exit 1
rm debian/changelog.dch
mv debian/changelog debian/changelog.old
echo $version > snapshot_version
dch --create --empty --package "ibus-bogo" -v "${version}" --force-distribution --distribution "unstable" "Daily build"
debuild "$@"
rm -f snapshot_version
rm -f debian/changelog
mv debian/changelog.old debian/changelog
# Send the new .deb and .dsc to the repo at bogoengine.github.com/debian/unstable
reprepro -Vb $REPOPATH includedeb unstable ../ibus-bogo_${version}_all.deb
reprepro -Vb $REPOPATH includedsc unstable ../ibus-bogo_${version}.dsc
WORKINGDIR=`pwd`
cd $REPOPATH
git add .
git commit -a -m "Daily build ${version}"
git push
cd $WORKINGDIR