-
Notifications
You must be signed in to change notification settings - Fork 50
/
do_release
executable file
·185 lines (156 loc) · 4.72 KB
/
do_release
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#!/bin/bash
#
# do a smartmontools release
# (C) 2003-11 Bruce Allen, Guido Guenther
# (C) 2006-22 Christian Franke
# $Id$
# Notes on generating releases:
# (1) run with '--checkout' and then 'cd DESTDIR/trunk/smartmontools'
# (2) update NEWS -- put in release date
# (3) update ChangeLog -- put in release date and number
# (4) to test, run without '--commit'
# (5) when satisfied, add option '--commit'
set -e
# Smartmontools Signing Key (through 2025)
# <smartmontools-support@listi.jpberlin.de>
KEYID=0xFF3AEFF5
myname=$0
usage()
{
cat <<EOF
Usage: $myname --checkout[=URL] DESTDIR
$myname [--nocheck] [--commit] RC[1-9]|FINAL
EOF
exit 1
}
# Checkout ?
checkout_url=
case "$1" in
--checkout) checkout_url="https://svn.code.sf.net/p/smartmontools/code"; shift ;;
--checkout=?*) checkout_url=${1#*=}; shift ;;
esac
if [ -n "$checkout_url" ]; then
case "$#:$1" in
1:-*) usage ;; 1:*) ;; *) usage ;;
esac
if [ -e "$1" ]; then
echo "$1: already exists"; exit 1
fi
opt="--config-option config:miscellany:use-commit-times=yes"
svn checkout $opt --depth immediates "$checkout_url" "$1"
svn update $opt --parents "$1/trunk/smartmontools"
exit 0
fi
# Release ...
COMMIT=
DIST=distcheck
RC=
while true; do case "$1" in
--commit) COMMIT=yes; shift ;;
--nocheck) DIST=dist; shift ;;
*-) usage ;;
*) break ;;
esac; done
case "$*" in
RC[1-9]) RC="$1" ;;
FINAL) ;;
*) usage ;;
esac
# Check workdir
case "`/bin/pwd`" in
*/trunk/smartmontools) WDROOT="../.."; DIRPAT="trunk" ;;
*/branches/*/smartmontools) WDROOT="../../.."; DIRPAT="branches/*" ;;
*) echo "`/bin/pwd`: no trunk or branch working dir"; exit 1 ;;
esac
if [ ! -d "$WDROOT/tags" ]; then
echo "tags directory missing"; exit 1
fi
REVX="`(cd $WDROOT && svnversion)`" || exit 1
REV="${REVX/%[PM]/}"; REV="${REV/%[PM]/}"
if [ -n "${REV//[0-9]/}" ]; then
echo "Working directory not clean: $REVX"; exit 1
fi
(cd $WDROOT && svn status) | while read s; do
# shellcheck disable=SC2254
case "`echo $s | tr -s ' '`" in
"M "$DIRPAT/smartmontools/ChangeLog) echo "$s: OK";;
"M "$DIRPAT/smartmontools/NEWS) echo "$s: OK";;
"M "$DIRPAT/smartmontools/configure.ac) echo "$s: OK";;
*) echo "$s: not allowed"; exit 1;;
esac
done
if [ $? -ne 0 ]; then
exit 1
fi
# Get release number
VERSION=`sed -n 's|^AC_INIT[^,]*, *\[\([0-9.]*\)\] *,.*$|\1|p' configure.ac`
if [ -z "$VERSION" ]; then
echo "AC_INIT not found in configure.ac"; exit 1
fi
VERSIONRC="$VERSION"
RELEASE="RELEASE_${VERSION//\./_}"
if [ "$RC" ]; then
VERSIONRC="${VERSION}-${RC/#RC/rc}"
RELEASE="${RELEASE}_${RC}"
fi
if [ -e "$WDROOT/tags/$RELEASE" ]; then
echo "tags/$RELEASE exists"; exit 1
fi
echo "r$REV: Release $VERSIONRC $RELEASE"
# Update timestamp
smartmontools_release_date=`date -u +"%Y-%m-%d"`
smartmontools_release_time=`date -u +"%T %Z"`
sed -e "s|^smartmontools_release_date=.*$|smartmontools_release_date=${smartmontools_release_date}|" \
-e "s|^smartmontools_release_time=.*$|smartmontools_release_time=\"${smartmontools_release_time}\"|" \
configure.ac > configure.tmp
mv -f configure.tmp configure.ac
# Review changes
svn diff
echo "==================================================================="
echo ">>> Continuing in 20 seconds ..."
sleep 20
set -v
# Create tag and commit
if [ "$COMMIT" = "yes" ]; then
svn mkdir $WDROOT/tags/$RELEASE
svn copy ../smartmontools $WDROOT/tags/$RELEASE/smartmontools
svn commit -m "Release $VERSIONRC $RELEASE" $WDROOT
fi
# Build
./autogen.sh
mkdir build
cd build
../configure
make $DIST || exit 1
make maintainer-clean
cd ..
TARFILE=smartmontools-$VERSIONRC.tar.gz
mv -f build/smartmontools-$VERSION.tar.gz $TARFILE
rm -rvf build
md5sum $TARFILE > $TARFILE.md5
# Sign tarball
if [ -n "$KEYID" ] && gpg --list-secret-keys $KEYID >/dev/null 2>/dev/null; then
gpg --default-key $KEYID --armor --detach-sign ./smartmontools-$VERSIONRC.tar.gz
fi
set +v
# Update configure.ac only after trunk releases
if [ -z "$RC" ] && [ "$DIRPAT" = "trunk" ]; then
# Comment out timestamp
sed -e "s|^smartmontools_release_date=\(.*\)$|smartmontools_release_date= # \1|" \
-e "s|^smartmontools_release_time=\(.*\)$|smartmontools_release_time= # \1|" \
configure.ac > configure.tmp
mv -f configure.tmp configure.ac
# Increase release number
major=${VERSION%.*}
old_minor=${VERSION##*.}
new_minor=$((old_minor+1))
echo "New Version: $major.$new_minor"
if [ "$COMMIT" = "yes" ]; then
sed "/^AC_INIT(/{s|$major\\.$old_minor|$major.$new_minor|}" configure.ac > configure.tmp
mv -f configure.tmp configure.ac
svn diff
echo "==================================================================="
echo "# TODO:"
echo "svn commit -m 'Bump release number to $major.$new_minor' configure.ac"
fi
fi