-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sh
executable file
·485 lines (377 loc) · 11.2 KB
/
build.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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
#!/bin/bash -e
# BEGIN COPYRIGHT BLOCK
# (C) 2018 Red Hat, Inc.
# All rights reserved.
# END COPYRIGHT BLOCK
SCRIPT_PATH=$(readlink -f "$0")
SCRIPT_NAME=$(basename "$SCRIPT_PATH")
SRC_DIR=$(dirname "$SCRIPT_PATH")
NAME=idm-console-framework
WORK_DIR=
JAVA_DIR=/usr/share/java
SOURCE_TAG=
SPEC_TEMPLATE="$SRC_DIR/idm-console-framework.spec"
SPEC_FILE=
WITH_TIMESTAMP=
WITH_COMMIT_ID=
DIST=
VERBOSE=
DEBUG=
usage() {
echo "Usage: $SCRIPT_NAME [OPTIONS] <target>"
echo
echo "Options:"
echo " --name=<name> Package name (default: $NAME)."
echo " --work-dir=<path> Working directory (default: ~/build/$NAME)."
echo " --java-dir=<path> Java directory (default: $JAVA_DIR)"
echo " --source-tag=<tag> Generate RPM sources from a source tag."
echo " --spec=<file> Use the specified RPM spec (default: $SPEC_TEMPLATE)."
echo " --with-timestamp Append timestamp to release number."
echo " --with-commit-id Append commit ID to release number."
echo " --dist=<name> Distribution name (e.g. fc28)."
echo " -v,--verbose Run in verbose mode."
echo " --debug Run in debug mode."
echo " --help Show help message."
echo
echo "Target:"
echo " dist Build binaries (default)."
echo " install Install binaries."
echo " src Generate RPM sources."
echo " spec Generate RPM spec."
echo " srpm Build SRPM package."
echo " rpm Build RPM packages."
}
generate_rpm_sources() {
PREFIX="idm-console-framework-$FULL_VERSION"
TARBALL="$PREFIX.tar.gz"
if [ "$SOURCE_TAG" != "" ] ; then
if [ "$VERBOSE" = true ] ; then
echo "Generating $TARBALL from $SOURCE_TAG tag"
fi
git -C "$SRC_DIR" \
archive \
--format=tar.gz \
--prefix $PREFIX/ \
-o "$WORK_DIR/SOURCES/$TARBALL" \
$SOURCE_TAG
if [ "$SOURCE_TAG" != "HEAD" ] ; then
TAG_ID=`git -C "$SRC_DIR" rev-parse $SOURCE_TAG`
HEAD_ID=`git -C "$SRC_DIR" rev-parse HEAD`
if [ "$TAG_ID" != "$HEAD_ID" ] ; then
generate_patch
fi
fi
return
fi
if [ "$VERBOSE" = true ] ; then
echo "Generating $TARBALL"
fi
tar czf "$WORK_DIR/SOURCES/$TARBALL" \
--transform "s,^./,$PREFIX/," \
--exclude .git \
--exclude .svn \
--exclude .swp \
--exclude .metadata \
--exclude build \
--exclude .tox \
--exclude dist \
--exclude MANIFEST \
--exclude *.pyc \
--exclude __pycache__ \
-C "$SRC_DIR" \
.
}
generate_patch() {
PATCH="idm-console-framework-$VERSION-$RELEASE.patch"
if [ "$VERBOSE" = true ] ; then
echo "Generating $PATCH for all changes since $SOURCE_TAG tag"
fi
git -C "$SRC_DIR" \
format-patch \
--stdout \
$SOURCE_TAG \
> "$WORK_DIR/SOURCES/$PATCH"
}
generate_rpm_spec() {
if [ "$VERBOSE" = true ] ; then
echo "Creating $SPEC_FILE"
fi
cp "$SPEC_TEMPLATE" "$SPEC_FILE"
# hard-code package name
sed -i "s/^\(Name: *\).*\$/\1${NAME}/g" "$SPEC_FILE"
# hard-code timestamp
if [ "$TIMESTAMP" != "" ] ; then
sed -i "s/%undefine *timestamp/%global timestamp $TIMESTAMP/g" "$SPEC_FILE"
fi
# hard-code commit ID
if [ "$COMMIT_ID" != "" ] ; then
sed -i "s/%undefine *commit_id/%global commit_id $COMMIT_ID/g" "$SPEC_FILE"
fi
# hard-code patch
if [ "$PATCH" != "" ] ; then
sed -i "s/# Patch: idm-console-framework-VERSION-RELEASE.patch/Patch: $PATCH/g" "$SPEC_FILE"
fi
# rpmlint "$SPEC_FILE"
}
while getopts v-: arg ; do
case $arg in
v)
VERBOSE=true
;;
-)
LONG_OPTARG="${OPTARG#*=}"
case $OPTARG in
name=?*)
NAME="$LONG_OPTARG"
;;
work-dir=?*)
WORK_DIR=$(readlink -f "$LONG_OPTARG")
;;
java-dir=?*)
JAVA_DIR=$(readlink -f "$LONG_OPTARG")
;;
source-tag=?*)
SOURCE_TAG="$LONG_OPTARG"
;;
spec=?*)
SPEC_TEMPLATE="$LONG_OPTARG"
;;
with-timestamp)
WITH_TIMESTAMP=true
;;
with-commit-id)
WITH_COMMIT_ID=true
;;
dist=?*)
DIST="$LONG_OPTARG"
;;
verbose)
VERBOSE=true
;;
debug)
VERBOSE=true
DEBUG=true
;;
help)
usage
exit
;;
'')
break # "--" terminates argument processing
;;
name* | work-dir* | java-dir* | source-tag* | spec* | dist*)
echo "ERROR: Missing argument for --$OPTARG option" >&2
exit 1
;;
*)
echo "ERROR: Illegal option --$OPTARG" >&2
exit 1
;;
esac
;;
\?)
exit 1 # getopts already reported the illegal option
;;
esac
done
# remove parsed options and args from $@ list
shift $((OPTIND-1))
if [ "$#" -lt 1 ] ; then
BUILD_TARGET=dist
else
BUILD_TARGET=$1
fi
if [ "$NAME" = "" ] ; then
NAME="idm-console-framework"
fi
if [ "$WORK_DIR" = "" ] ; then
WORK_DIR="$HOME/build/$NAME"
fi
if [ "$DEBUG" = true ] ; then
echo "NAME: $NAME"
echo "WORK_DIR: $WORK_DIR"
echo "JAVA_DIR: $JAVA_DIR"
echo "BUILD_TARGET: $BUILD_TARGET"
fi
if [ "$BUILD_TARGET" != "dist" ] &&
[ "$BUILD_TARGET" != "install" ] &&
[ "$BUILD_TARGET" != "src" ] &&
[ "$BUILD_TARGET" != "spec" ] &&
[ "$BUILD_TARGET" != "srpm" ] &&
[ "$BUILD_TARGET" != "rpm" ] ; then
echo "ERROR: Invalid build target: $BUILD_TARGET" >&2
exit 1
fi
################################################################################
# Initialization
################################################################################
if [ "$VERBOSE" = true ] ; then
echo "Initializing $WORK_DIR"
fi
mkdir -p "$WORK_DIR"
cd "$WORK_DIR"
if [ "$SPEC_TEMPLATE" = "" ] ; then
SPEC_TEMPLATE="$SRC_DIR/idm-console-framework.spec"
fi
VERSION="`rpmspec -P "$SPEC_TEMPLATE" | grep "^Version:" | awk '{print $2;}'`"
if [ "$DEBUG" = true ] ; then
echo "VERSION: $VERSION"
fi
################################################################################
# Build binaries
################################################################################
if [ "$BUILD_TARGET" = "dist" ] ; then
if [ "$VERBOSE" = "true" ] ; then
echo "Building $NAME-$VERSION"
fi
OPTIONS=()
if [ "$VERBOSE" = "true" ] ; then
OPTIONS+=(-v)
fi
OPTIONS+=(-f "$SRC_DIR/build.xml")
OPTIONS+=(-Dbuilt.dir="$WORK_DIR")
echo ant "${OPTIONS[@]}"
ant "${OPTIONS[@]}"
echo
echo "Build artifacts:"
echo "- $WORK_DIR/release/jars/idm-console-framework.jar"
echo
echo "To install the build: $0 install"
echo "To create RPM packages: $0 rpm"
echo
exit
fi
################################################################################
# Install binaries
################################################################################
if [ "$BUILD_TARGET" = "install" ] ; then
if [ "$VERBOSE" = true ] ; then
echo "Installing $NAME-$VERSION"
fi
echo install -d $JAVA_DIR
install -d $JAVA_DIR
echo install -m 644 $WORK_DIR/release/jars/idm-console-framework.jar $JAVA_DIR
install -m 644 $WORK_DIR/release/jars/idm-console-framework.jar $JAVA_DIR
exit
fi
################################################################################
# Prepare RPM build
################################################################################
RELEASE="`rpmspec -P "$SPEC_TEMPLATE" --undefine dist | grep "^Release:" | awk '{print $2;}'`"
if [ "$DEBUG" = true ] ; then
echo "RELEASE: $RELEASE"
fi
spec=$(<"$SPEC_TEMPLATE")
regex=$'%global *phase *([^\n]+)'
if [[ $spec =~ $regex ]] ; then
PHASE="${BASH_REMATCH[1]}"
RELEASE=$RELEASE.$PHASE
fi
if [ "$DEBUG" = true ] ; then
echo "PHASE: $PHASE"
fi
if [ "$WITH_TIMESTAMP" = true ] ; then
TIMESTAMP=$(date -u +"%Y%m%d%H%M%S%Z")
RELEASE="$RELEASE.$TIMESTAMP"
fi
if [ "$DEBUG" = true ] ; then
echo "TIMESTAMP: $TIMESTAMP"
fi
if [ "$WITH_COMMIT_ID" = true ]; then
COMMIT_ID=$(git -C "$SRC_DIR" rev-parse --short=8 HEAD)
RELEASE="$RELEASE.$COMMIT_ID"
fi
if [ "$DEBUG" = true ] ; then
echo "COMMIT_ID: $COMMIT_ID"
fi
if [ "$DEBUG" = true ] ; then
echo "RELEASE: $RELEASE"
fi
FULL_VERSION="$VERSION"
if [ "$PHASE" != "" ]; then
FULL_VERSION="$FULL_VERSION-$PHASE"
fi
if [ "$DEBUG" = true ] ; then
echo "FULL_VERSION: $FULL_VERSION"
fi
echo "Building $NAME-$VERSION-$RELEASE$"
rm -rf BUILD
rm -rf RPMS
rm -rf SOURCES
rm -rf SPECS
rm -rf SRPMS
mkdir BUILD
mkdir RPMS
mkdir SOURCES
mkdir SPECS
mkdir SRPMS
################################################################################
# Generate RPM sources
################################################################################
SPEC_FILE="$WORK_DIR/SPECS/$NAME.spec"
generate_rpm_sources
echo "RPM sources:"
find "$WORK_DIR/SOURCES" -type f -printf " %p\n"
if [ "$BUILD_TARGET" = "src" ] ; then
exit
fi
################################################################################
# Generate RPM spec
################################################################################
generate_rpm_spec
echo "RPM spec:"
find "$WORK_DIR/SPECS" -type f -printf " %p\n"
if [ "$BUILD_TARGET" = "spec" ] ; then
exit
fi
################################################################################
# Build source package
################################################################################
OPTIONS=()
OPTIONS+=(--quiet)
OPTIONS+=(--define "_topdir ${WORK_DIR}")
if [ "$DIST" != "" ] ; then
OPTIONS+=(--define "dist .$DIST")
fi
if [ "$DEBUG" = true ] ; then
echo "rpmbuild -bs" "${OPTIONS[@]}" "$SPEC_FILE"
fi
# build SRPM with user-provided options
rpmbuild -bs "${OPTIONS[@]}" "$SPEC_FILE"
rc=$?
if [ $rc != 0 ]; then
echo "ERROR: Unable to build SRPM package"
exit 1
fi
SRPM=`find "$WORK_DIR/SRPMS" -type f`
echo "SRPM package:"
echo " $SRPM"
if [ "$BUILD_TARGET" = "srpm" ] ; then
exit
fi
################################################################################
# Build binary packages
################################################################################
OPTIONS=()
if [ "$VERBOSE" = true ] ; then
OPTIONS+=(--define "_verbose 1")
fi
OPTIONS+=(--define "_topdir ${WORK_DIR}")
if [ "$DEBUG" = true ] ; then
echo "rpmbuild --rebuild ${OPTIONS[@]} $SRPM"
fi
# rebuild RPM with hard-coded options in SRPM
rpmbuild --rebuild "${OPTIONS[@]}" "$SRPM"
rc=$?
if [ $rc != 0 ]; then
echo "ERROR: Unable to build RPM packages"
exit 1
fi
# install SRPM to restore sources and spec file removed during rebuild
rpm -i --define "_topdir $WORK_DIR" "$SRPM"
# flatten folder
find "$WORK_DIR/RPMS" -mindepth 2 -type f -exec mv -i '{}' "$WORK_DIR/RPMS" ';'
# remove empty subfolders
find "$WORK_DIR/RPMS" -mindepth 1 -type d -delete
echo "RPM packages:"
find "$WORK_DIR/RPMS" -type f -printf " %p\n"