forked from skvadrik/re2c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease.sh
executable file
·43 lines (35 loc) · 1023 Bytes
/
release.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
#!/bin/bash
set -e
# checks for which there are no scripts yet
echo 'RUNME: cppcheck --enable=all --inconclusive --std=posix --quiet --force -I. src/'
echo "RUNME: uselex `find <objdir> -type f -name '*.o'`"
echo 'RUNME: configure CFLAGS="-ffunction-sections -fdata-sections" LDFLAGS="-Wl,--gc-sections -Wl,--print-gc-sections"'
if [[ $# -ne 1 ]]
then
echo "usage: ./release.sh <version>"
exit 1
fi
version="$1"
branch=`git rev-parse --abbrev-ref HEAD`
if [[ $branch != "master" ]]
then
echo "must be on branch 'master'"
exit 1
fi
# edit version in configure.in
lcontext="AC_INIT\(\[re2c\],\["
rcontext="\],\[re2c-general@lists\.sourceforge\.net\]\)"
old="[0-9]+(\.[0-9]+)*(\.dev)?"
new=$version
sed -i -E "s/$lcontext$old$rcontext/$lcontext$new$rcontext/" configure.ac
# distcheck
builddir=.build
cd re2c && ./__distcheck.sh $builddir && cd ..
# commit release
git commit -a -m "Release $version."
git tag $version
for r in `git remote`
do
git push $r master
git push --tags $r master
done