-
Notifications
You must be signed in to change notification settings - Fork 585
/
makedeb.sh
executable file
·351 lines (298 loc) · 10 KB
/
makedeb.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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
#!/usr/bin/env bash
set -e
MYDIR=`dirname $0`
TOPDIR=`cd $MYDIR; pwd`
BRANCH=""
COMMIT=""
TRUE_BIN="$(which true)"
cd "$TOPDIR"
JAVA_HOME=`"$TOPDIR/bin/javahome.pl"`
BINARIES="dch dh dh_systemd_enable dpkg-sig dpkg-buildpackage expect po2debconf"
function exists() {
which "$1" >/dev/null 2>&1
}
function use_git() {
exists git && test -d "${TOPDIR}/.git"
}
function run()
{
if exists $1; then
"$@"
else
die "Command not found: $1"
fi
}
function die()
{
echo "$@" 1>&2
exit 1
}
function tell()
{
echo -e "$@" 1>&2
}
function usage()
{
tell "makedeb [-h] [-a] [-s <password>] [-g <gpg-id>] [-M <major>] [-m <minor>] [-u <micro>] [package]"
tell "\t-h : print this help"
tell "\t-a : assembly-only (skip the compile step)"
tell "\t-d : disable downloading snapshots when doing an assembly-only build"
tell "\t-n : no changelog (disable auto-generation of a changelog entry)"
tell "\t-s <password> : sign the deb using this password for the gpg key"
tell "\t-g <gpg_id> : signing using this gpg_id (default: [email protected])"
tell "\t-b <branch> : the name of the branch"
tell "\t-c <commit> : the commit revision hash from git"
tell "\t-M <major> : default 0 (0 means a snapshot release)"
tell "\t-m <minor> : default <datestamp> (ignored unless major is 0)"
tell "\t-u <micro> : default 1 (ignore unless major is 0)"
exit 1
}
function calcMinor()
{
if use_git; then
git log --pretty='format:%cd' --date=short | sort -u -r | head -n 1 | sed -e 's,^Date: *,,' -e 's,-,,g'
else
date '+%Y%m%d'
fi
}
function branch()
{
if [ -n "${BRANCH}" ]; then
echo "${BRANCH}"
elif [ -n "${BAMBOO_OPENNMS_BRANCH_NAME}" ]; then
echo "${BAMBOO_OPENNMS_BRANCH_NAME}"
elif [ -n "${bamboo_planRepository_branch}" ]; then
echo "${bamboo_planRepository_branch}"
elif use_git; then
run git branch | grep -E '^\*' | awk '{ print $2 }'
else
echo "source"
fi
}
function commit()
{
if [ -n "${COMMIT}" ]; then
echo "${COMMIT}"
elif [ -n "${bamboo_repository_revision_number}" ]; then
echo "${bamboo_repository_revision_number}"
elif use_git; then
run git log -1 | grep -E '^commit' | cut -d' ' -f2
else
echo ""
fi
}
function extraInfo()
{
branchname="$(branch)"
if [ -n "${branchname}" ]; then
if [ "$RELEASE_MAJOR" = "0" ] ; then
echo "This is an OpenNMS build from the ${branchname} branch. For a complete log, see:"
else
echo "This is an OpenNMS build from Git. For a complete log, see:"
fi
else
echo "This is an OpenNMS build from source."
fi
}
function extraInfo2()
{
commithash="$(commit)"
if [ -n "${commithash}" ]; then
echo " https://github.com/OpenNMS/opennms/commit/${commithash}"
else
echo ""
fi
}
function version()
{
grep '<version>' pom.xml | \
sed -e 's,^[^>]*>,,' -e 's,<.*$,,' -e 's,-[^-]*-SNAPSHOT$,,' -e 's,-SNAPSHOT$,,' -e 's,-testing$,,' -e 's,-,.,g' | \
head -n 1
}
function opa_version()
{
grep '<opennmsApiVersion>' pom.xml | \
sed -e 's,^[^>]*>,,' -e 's,<.*$,,' -e 's,-[^-]*-SNAPSHOT$,,' -e 's,-SNAPSHOT$,,' -e 's,-testing$,,' -e 's,-,.,g' | \
head -n 1
}
function skipCompile()
{
if $ASSEMBLY_ONLY; then echo 1; else echo 0; fi
}
function enableSnapshots()
{
if $ENABLE_SNAPSHOTS; then echo 1; else echo 0; fi
}
for BIN in $BINARIES; do
EXECUTABLE=`which $BIN 2>/dev/null || :`
if [ -z "$EXECUTABLE" ] || [ ! -x "$EXECUTABLE" ]; then
echo "ERROR: $BIN not found"
echo " try 'sudo apt install debhelper devscripts dpkg-dev dpkg-sig expect po-debconf'"
exit 1
fi
done
ASSEMBLY_ONLY=false
ENABLE_SNAPSHOTS=true
DO_CHANGELOG=true
SIGN=false
SIGN_PASSWORD=
BUILD_DEB=true
RELEASE_MAJOR=0
RELEASE_MINOR="$(calcMinor)"
RELEASE_MICRO=1
while getopts adhnrs:g:M:m:u:b:c: OPT; do
case $OPT in
a) ASSEMBLY_ONLY=true
;;
d) ENABLE_SNAPSHOTS=false
;;
n) DO_CHANGELOG=false
;;
s) SIGN=true
SIGN_PASSWORD="$OPTARG"
;;
r) BUILD_DEB=false
;;
g) SIGN_ID="$OPTARG"
;;
M) RELEASE_MAJOR="$OPTARG"
;;
m) RELEASE_MINOR="$OPTARG"
;;
u) RELEASE_MICRO="$OPTARG"
;;
b) BRANCH="$OPTARG"
;;
c) COMMIT="$OPTARG"
;;
*) usage
;;
esac
done
shift "$((OPTIND - 1))"
PACKAGE_NAME="$1"
RELEASE=$RELEASE_MAJOR
if [ "$RELEASE_MAJOR" = 0 ] ; then
RELEASE=${RELEASE_MAJOR}.${RELEASE_MINOR}.${RELEASE_MICRO}
fi
EXTRA_INFO=$(extraInfo)
EXTRA_INFO2=$(extraInfo2)
VERSION=$(version)
OPA_VERSION=$(opa_version)
export PATH="$TOPDIR/maven/bin:$JAVA_HOME/bin:$PATH"
export OPENNMS_SKIP_COMPILE=$(skipCompile)
export OPENNMS_ENABLE_SNAPSHOTS=$(enableSnapshots)
function build_opennms()
{
echo "==== Building Debian OpenNMS ===="
echo
echo "Version: " $VERSION
echo "Release: " $RELEASE
echo "OPA VERSION: " $OPA_VERSION
echo
sed -i "s/OPA_VERSION/$OPA_VERSION/g" debian/control
if $DO_CHANGELOG; then
echo "- adding auto-generated changelog entry"
dch -b -v "$VERSION-$RELEASE" "${EXTRA_INFO}${EXTRA_INFO2}" || die "failed to update debian/changelog"
fi
if [ -f "${HOME}/.m2/settings.xml" ]; then
export OPENNMS_SETTINGS_XML="${HOME}/.m2/settings.xml"
fi
./compile.pl -N install
dpkg-buildpackage "-p${TRUE_BIN}" -us -uc -Zgzip
}
function build_minion()
{
echo "==== Building Debian Minion ===="
echo
echo "Version: " $VERSION
echo "Release: " $RELEASE
echo "OPA VERSION: " $OPA_VERSION
echo
sed -i "s/OPA_VERSION/$OPA_VERSION/g" $TOPDIR/opennms-assemblies/minion/src/main/filtered/debian/control
local _extra_args=()
if [ "$OPENNMS_ENABLE_SNAPSHOTS" = "1" ]; then
_extra_args+=("-s")
fi
if [ "$OPENNMS_SKIP_COMPILE" = "1" ]; then
_extra_args+=("-c")
fi
tools/packages/minion/create-minion-assembly.sh "${_extra_args[@]}"
MINION_TARBALL="$(ls -1 $TOPDIR/opennms-assemblies/minion/target/org.opennms.assemblies.minion-*-minion.tar.gz 2>/dev/null || :)"
if [ -z "$MINION_TARBALL" ]; then
MINION_TARBALL="$(ls -1 "~/.m2/repository/org/opennms/assemblies/org.opennms.assemblies.minion/${VERSION}"/org.opennms.assemblies.minion-*-minion.tar.gz 2>/dev/null || :)"
fi
mkdir -p target
pushd target >/dev/null 2>&1
cp "$MINION_TARBALL" "opennms-minion_${VERSION}.orig.tar.gz"
tar -xzf "opennms-minion_${VERSION}.orig.tar.gz" || die "could not unpack opennms-minion tarball"
DIRNAME=$(echo "$MINION_TARBALL" | sed -e 's,^.*org.opennms.assemblies.,,' -e 's,-minion.tar.gz,,')
mv "${DIRNAME}" "opennms-minion-${VERSION}"
pushd "opennms-minion-${VERSION}" >/dev/null 2>&1
if $DO_CHANGELOG; then
echo "- adding auto-generated changelog entry"
dch -b -v "${VERSION}-${RELEASE}" "${EXTRA_INFO}${EXTRA_INFO2}" || die "failed to update minion debian/changelog"
fi
dpkg-buildpackage "-p${TRUE_BIN}" -us -uc -Zgzip
popd >/dev/null 2>&1
# move the build artifacts to the root
mv *.deb *.orig.tar.gz *.changes *.dsc "$TOPDIR/.."
popd >/dev/null 2>&1
}
function build_sentinel() {
echo "==== Building Debian OpenNMS ===="
echo
echo "Version: " $VERSION
echo "Release: " $RELEASE
echo "OPA VERSION: " $OPA_VERSION
echo
sed -i "s/OPA_VERSION/$OPA_VERSION/g" $TOPDIR/opennms-assemblies/sentinel/src/main/filtered/debian/control
local _extra_args=()
if [ "$OPENNMS_ENABLE_SNAPSHOTS" = "1" ]; then
_extra_args+=("-s")
fi
if [ "$OPENNMS_SKIP_COMPILE" = "1" ]; then
_extra_args+=("-c")
fi
tools/packages/sentinel/create-sentinel-assembly.sh "${_extra_args[@]}"
SENTINEL_TARBALL="$(ls -1 $TOPDIR/opennms-assemblies/sentinel/target/org.opennms.assemblies.sentinel-*-sentinel.tar.gz 2>/dev/null || :)"
if [ -z "$SENTINEL_TARBALL" ]; then
SENTINEL_TARBALL="$(ls -1 "~/.m2/repository/org/opennms/assemblies/org.opennms.assemblies.sentinel/${VERSION}"/org.opennms.assemblies.sentinel-*-sentinel.tar.gz 2>/dev/null || :)"
fi
mkdir -p target
pushd target >/dev/null 2>&1
cp "$SENTINEL_TARBALL" "opennms-sentinel_${VERSION}.orig.tar.gz"
tar -xzf "opennms-sentinel_${VERSION}.orig.tar.gz" || die "could not unpack opennms-sentinel tarball"
DIRNAME=$(echo "$SENTINEL_TARBALL" | sed -e 's,^.*org.opennms.assemblies.,,' -e 's,-sentinel.tar.gz,,')
mv "${DIRNAME}" "opennms-sentinel-${VERSION}"
pushd "opennms-sentinel-${VERSION}" >/dev/null 2>&1
dch -b -v "${VERSION}-${RELEASE}" "${EXTRA_INFO}${EXTRA_INFO2}" || die "failed to update sentinel debian/changelog"
dpkg-buildpackage "-p${TRUE_BIN}" -us -uc -Zgzip
popd >/dev/null 2>&1
# move the build artifacts to the root
mv *.deb *.orig.tar.gz *.changes *.dsc "$TOPDIR/.."
popd >/dev/null 2>&1
}
if $BUILD_DEB; then
if [ "$PACKAGE_NAME" = "opennms" ] || [ -z "$PACKAGE_NAME" ]; then
build_opennms
fi
if [ "$PACKAGE_NAME" = "minion" ] || [ -z "$PACKAGE_NAME" ]; then
build_minion
fi
if [ "$PACKAGE_NAME" = "sentinel" ] || [ -z "$PACKAGE_NAME" ]; then
build_sentinel
fi
fi
if $SIGN; then
DEBS=$(echo "$TOPDIR"/../*.deb)
which dpkg-sig >/dev/null 2>&1 || die "unable to locate dpkg-sig"
for DEB in $(echo "$TOPDIR"/../*.deb); do
run expect -c "set timeout -1; spawn dpkg-sig --sign builder -k \"$SIGN_ID\" \"$DEB\"; match_max 100000; expect \"Enter passphrase: \"; send -- \"${SIGN_PASSWORD}\r\"; expect eof" 2>/dev/null || \
die "Debian package signing of $DEB failed for $(branch)"
done
fi
echo "==== OpenNMS Debian Build Finished ===="
echo ""
echo "Your completed Debian packages are in the $TOPDIR/.. directory."