forked from fvwmorg/fvwm3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkrelease.sh
executable file
·80 lines (63 loc) · 2.49 KB
/
mkrelease.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
# mkrelease -- script to help ease the burden of creating a fvwm3 release.
#
# Originally published December 2020. Released under the same licesne as
# fvwm3 itself.
function die()
{
echo "$@" >&2
exit 1
}
[ -z "$(git status --untracked-files=no --porcelain)" ] && {
echo "*** Working tree is clean, continuing..."
} || {
die "Repo contains uncommitted changes"
}
current_ver="$(git describe --tags --abbrev=0)"
current_tag="$(git describe --tags --abbrev=0)"
pre_tag="${current_tag%.*}"
current_tag="${current_tag##*.}"
next_version=$((current_tag += 1))
next_version="${pre_tag}.${current_tag}"
[ -z "$next_version" ] && die "Couldn't determine next version"
[ -n "$1" ] && {
next_version="$1"
echo "*** overriding next version as: $next_version"
}
next_release_branch="release/$next_version"
git rev-parse --verify "$next_release_branch" &>/dev/null && \
die "Branch $next_release_branch already exists..."
echo "*** creating release branch as: release/$next_version"
git pull --quiet && git switch --quiet -c release/$next_version master || \
die "Couldn't create release/$next_version from master"
echo "*** updating configure.ac:"
echo "*** new version ($next_version)..."
sed -i -e "/AC_INIT/ s/$current_ver/$next_version/" configure.ac || \
die "Unable to update configure.ac to next version"
echo "*** released to yes"
sed -i -e 's/ISRELEASED="no"/ISRELEASED="yes"/' configure.ac || \
die "Unable to update configure.ac to released"
echo "*** updating release dates"
reldatelong="$(date -d "now" +"%e %B %y")"
reldateshort="$(date -d "now" +"%d-%b-%y")"
reldatenum="$(date -d "now" +"%y-%m-%d")"
sed -i -e "/^RELDATELONG=/cRELDATELONG=\"$reldatelong\"" configure.ac
sed -i -e "/^RELDATESHORT=/cRELDATESHORT=\"$reldateshort\"" configure.ac
sed -i -e "/^RELDATENUM=/cRELDATENUM=\"$reldatenum\"" configure.ac
echo
echo "*** generating release tarball"
make dist &>/dev/null || die "Couldn't generate dist tarball"
echo "*** test compiling release tarball"
cp ./fvwm3-${next_version}.tar.gz /tmp && {
(cd /tmp && {
tar xzf ./fvwm3-${next_version}.tar.gz && \
(cd fvwm3-${next_version} && \
./configure --enable-mandoc &>/dev/null && \
make -j$(nproc) &>/dev/null || \
die "Unable to compile fvwm3 dist")
})
}
fvwm3_ver="$(/tmp/fvwm3-$next_version/fvwm/fvwm3 --version | head -n 1)"
[ -z "$fvwm3_ver" ] && die "Couldn't determine fvwm3 version"
echo "*** version reports as: $fvwm3_ver"
rm -fr /tmp/fvwm3-${next_version} && rm -f /tmp/fvwm3-${next_version}*.tar.gz