forked from umlaeute/v4l2loopback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·101 lines (85 loc) · 2.36 KB
/
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/sh
####################################
# prepare package for release
# DONE: get current version from module source
# DONE: ChangeLog generator using git-dch
# DONE: update dkms.conf
# TODO: automatically update AUTHORS
# TODO: automatically prepare NEWS (from ChangeLog)
# TODO: automatically launch editors for ChangeLog/NEWS/AUTHORS
# TODO: automatically tag (if all went well)
CHANGELOG=ChangeLog
AUTHORS=AUTHORS
NEWS=NEWS
: ${mainbranch:=main}
error() {
echo "$@" 1>&2
}
fatal() {
error "$@"
exit 1
}
usage() {
fatal "usage: $0 [<LASTVERSION>] <CURVERSION>" 1>&2
}
getoldversion() {
dpkg-parsechangelog --count 1 -l${CHANGELOG} | grep -E "^Version:" | head -1 | cut -f2 -d' '
}
getmoduleversion() {
grep "^#define V4L2LOOPBACK_VERSION_CODE KERNEL_VERSION" v4l2loopback.c \
| sed -e 's|^#define V4L2LOOPBACK_VERSION_CODE KERNEL_VERSION||' \
-e 's|^[^0-9]*||' -e 's|[^0-9]*$||' \
-e 's|[^0-9][^0-9]*|.|g'
}
getgitbranch() {
git rev-parse --abbrev-ref HEAD
}
if [ "$(getgitbranch)" != "${mainbranch}" ]; then
fatal "current branch '$(getgitbranch)' is not '${mainbranch}'"
fi
if [ "x$2" = "x" ]; then
## guess current version
NEWVERSION=$1
OLDVERSION=$(getoldversion)
else
OLDVERSION=$1
NEWVERSION=$2
fi
if [ "x${NEWVERSION}" = "x" ]; then
NEWVERSION=$(getmoduleversion)
fi
if git tag -l v${OLDVERSION} | grep . >/dev/null
then
:
else
fatal "it seems like there is no tag 'v${OLDVERSION}'"
fi
if [ "x${OLDVERSION}" = "x" ]; then
usage
fi
echo "updating from ${OLDVERSION}"
if [ "x${NEWVERSION}" = "x" ]; then
usage
fi
if dpkg --compare-versions ${OLDVERSION} ge ${NEWVERSION}
then
fatal "version mismatch: ${NEWVERSION} is not newer than ${OLDVERSION}"
fi
echo "updating to ${NEWVERSION}"
OK=false
mkdir debian
cp "${CHANGELOG}" debian/changelog
gbp dch -R --since "v${OLDVERSION}" -N "${NEWVERSION}" --debian-branch="${mainbranch}" && cat debian/changelog > "${CHANGELOG}" && OK=true
rm -rf debian
if [ "x${OK}" = "xtrue" ]; then
sed -e "s|^PACKAGE_VERSION=\".*\"$|PACKAGE_VERSION=\"${NEWVERSION}\"|" -i dkms.conf
fi
if [ "x${OK}" = "xtrue" ]; then
echo "all went well"
echo ""
echo "- please check your ${CHANGELOG}"
echo "- please check&edit your ${NEWS}"
echo "- please check&edit your ${AUTHORS}"
echo "- and don't forget to git-tag the new version as v${NEWVERSION}"
echo " git tag v${NEWVERSION} -s -m \"Released ${NEWVERSION}\""
fi