blob: 2e46ec3d11c4a3ac63ad5295b2e5b063a15cacf5 (
plain)
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
|
#!/bin/sh
#
# Copyright (C) 2023 Sébastien Helleu <flashcode@flashtux.org>
#
# This file is part of WeeChat, the extensible chat client.
#
# WeeChat is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# WeeChat is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with WeeChat. If not, see <https://www.gnu.org/licenses/>.
#
#
# Make a new WeeChat release:
# 1. bump version
# 2. git commit + tag
# 3. compile, run, test, build changelog + rn + packages
# 4. test package: unpack, compile, run, test
#
set -o errexit
release_error ()
{
[ $# -gt 0 ] && echo >&2 "ERROR: $*"
exit 1
}
release_start ()
{
ROOT_DIR="$(git rev-parse --show-toplevel)"
if [ -n "$(git status --porcelain)" ]; then
release_error "working directory not clean"
fi
VERSION=$("${ROOT_DIR}/version.sh" devel)
if git rev-parse "v${VERSION}" 2>/dev/null; then
release_error "tag v${VERSION} already exists"
fi
MSG=$(git log -1 --pretty=%B | tr -d "\n")
if [ "${MSG}" = "Version ${VERSION}" ]; then
release_error "commit for version already exists"
fi
DATE=$(date +"%Y-%m-%d")
BUILD_DIR="${ROOT_DIR}/release/${VERSION}"
if [ -d "${BUILD_DIR}" ]; then
release_error "directory ${BUILD_DIR} already exists"
fi
mkdir -p "${BUILD_DIR}"
PKG_TAR="${BUILD_DIR}/weechat-${VERSION}.tar"
CHGLOG="${BUILD_DIR}/doc/ChangeLog.html"
RN="${BUILD_DIR}/doc/ReleaseNotes.html"
}
release_bump_version ()
{
"${ROOT_DIR}/tools/bump_version.sh" stable
sed -i \
-e "s/^\(== Version ${VERSION}\) (under dev)$/\1 (${DATE})/" \
"${ROOT_DIR}/ChangeLog.adoc" \
"${ROOT_DIR}/ReleaseNotes.adoc"
}
release_commit_tag ()
{
cd "${ROOT_DIR}"
git commit -m "Version ${VERSION}" version.sh ChangeLog.adoc ReleaseNotes.adoc || release_error "git commit error, release already done?"
git tag -a "v${VERSION}" -m "WeeChat ${VERSION}"
}
release_build ()
{
cd "${BUILD_DIR}"
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="${BUILD_DIR}/install" \
-DWEECHAT_HOME="${BUILD_DIR}/home" \
-DENABLE_DOC=ON \
-DENABLE_MAN=ON \
-DENABLE_TESTS=ON \
"${ROOT_DIR}"
make install
make changelog
make rn
make test CTEST_OUTPUT_ON_FAILURE=TRUE
make dist
VERSION_WEECHAT=$("${BUILD_DIR}/install/bin/weechat" --version)
if [ "${VERSION_WEECHAT}" != "${VERSION}" ]; then
release_error "unexpected version \"${VERSION_WEECHAT}\" (expected: \"${VERSION}\")"
fi
}
release_test_pkg ()
{
cd "${BUILD_DIR}"
tar axvf "weechat-${VERSION}.tar.xz"
cd "weechat-${VERSION}"
PKG_DIR="$(pwd)"
SCRIPT_VERSION="${PKG_DIR}/version.sh"
[ "$("${SCRIPT_VERSION}" stable)" = "${VERSION}" ] || release_error "wrong stable version in ${SCRIPT_VERSION}"
[ "$("${SCRIPT_VERSION}" devel)" = "${VERSION}" ] || release_error "wrong devel version in ${SCRIPT_VERSION}"
[ "$("${SCRIPT_VERSION}" devel-full)" = "${VERSION}" ] || release_error "wrong devel-full version in ${SCRIPT_VERSION}"
mkdir build
cd build
PKG_BUILD_DIR="$(pwd)"
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX="${PKG_BUILD_DIR}/install" \
-DWEECHAT_HOME="${PKG_BUILD_DIR}/home" \
-DENABLE_DOC=ON \
-DENABLE_MAN=ON \
-DENABLE_TESTS=ON \
"${PKG_DIR}"
make install
make test CTEST_OUTPUT_ON_FAILURE=TRUE
VERSION_WEECHAT=$("${PKG_BUILD_DIR}/install/bin/weechat" --version)
if [ "${VERSION_WEECHAT}" != "${VERSION}" ]; then
release_error "unexpected version \"${VERSION_WEECHAT}\" (expected: \"${VERSION}\")"
fi
}
release_end ()
{
# display a report about the release made
echo
echo "========================= WeeChat release status ========================="
echo " version : ${VERSION}"
echo " date : ${DATE}"
echo " build dir: ${BUILD_DIR}"
echo " packages :"
for PKG in "${PKG_TAR}".*; do
echo " $PKG"
done
echo " chglog/rn:"
echo " $CHGLOG"
echo " $RN"
echo "=========================================================================="
echo
echo "*** SUCCESS! ***"
echo
}
release_start
release_bump_version
release_commit_tag
release_build
release_test_pkg
release_end
exit 0
|