forked from OpenNMS/opennms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makerpm.sh
executable file
·292 lines (247 loc) · 8.1 KB
/
makerpm.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
#!/usr/bin/env bash
set -e
MYDIR=`dirname $0`
TOPDIR=`cd $MYDIR; pwd`
WORKDIR="$TOPDIR/target/rpm"
BRANCH=""
COMMIT=""
JAVA_HOME=`"$TOPDIR/bin/javahome.pl"`
export PATH="$TOPDIR/maven/bin:$JAVA_HOME/bin:$PATH"
cd "$TOPDIR"
BINARIES="expect rpmbuild rsync"
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 "makerpm [-h] [-a] [-s <password>] [-g <gpg-id>] [-M <major>] [-m <minor>] [-u <micro>]"
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-s <password> : sign the rpm using this password for the gpg key"
tell "\t-g <gpg_id> : signing using this gpg_id (default: opennms@opennms.org)"
tell "\t-n <name> : the name of the package"
tell "\t-x <description> : the description of the package"
tell "\t-b <branch> : the name of the branch"
tell "\t-c <commit> : the commit revision hash from git"
tell "\t-S <specfile> : the path to the rpm specification file"
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 " (unknown commit)"
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
}
function main()
{
ASSEMBLY_ONLY=false
ENABLE_SNAPSHOTS=true
SIGN=false
SIGN_PASSWORD=
SIGN_ID="opennms@opennms.org"
BUILD_RPM=true
PACKAGE_NAME="opennms"
PACKAGE_DESCRIPTION="OpenNMS"
RELEASE_MAJOR=0
local RELEASE_MINOR="$(calcMinor)"
local RELEASE_MICRO=1
while getopts adhrs:g:n:x:M:m:u:b:c:S: OPT; do
case $OPT in
a) ASSEMBLY_ONLY=true
;;
d) ENABLE_SNAPSHOTS=false
;;
s) SIGN=true
SIGN_PASSWORD="$OPTARG"
;;
r) BUILD_RPM=false
;;
g) SIGN_ID="$OPTARG"
;;
n) PACKAGE_NAME="$OPTARG"
;;
x) PACKAGE_DESCRIPTION="$OPTARG"
;;
M) RELEASE_MAJOR="$OPTARG"
;;
m) RELEASE_MINOR="$OPTARG"
;;
u) RELEASE_MICRO="$OPTARG"
;;
b) BRANCH="$OPTARG"
;;
c) COMMIT="$OPTARG"
;;
S) SPECS="$OPTARG"
;;
*) usage
;;
esac
done
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)
if $BUILD_RPM; then
if [ "$SPECS" == "" ]; then
SPECS="tools/packages/opennms/opennms.spec tools/packages/minion/minion.spec tools/packages/sentinel/sentinel.spec"
else
for spec in $SPECS
do
if [ ! -f "$spec" ]; then
die "Spec not found: $spec"
fi
done
fi
echo "==== Building OpenNMS RPMs ===="
echo
echo "Version: " $VERSION
echo "Release: " $RELEASE
echo "Specs : " $SPECS
echo "OPA VERSION: " $OPA_VERSION
echo
echo "=== Creating Working Directories ==="
run install -d -m 755 "$WORKDIR/tmp/$PACKAGE_NAME-$VERSION-$RELEASE"
run install -d -m 755 "$WORKDIR"/{BUILD,RPMS/{i386,i686,noarch},SOURCES,SPECS,SRPMS}
echo "=== Copying Source to Source Directory ==="
run rsync -aqr --exclude=.git --exclude=.svn --exclude=target --delete --delete-excluded "$TOPDIR/" "$WORKDIR/tmp/$PACKAGE_NAME-$VERSION-$RELEASE/"
if $ASSEMBLY_ONLY; then
# Include any existing target/ directory from the core/web-assets project so that webpack does not need to run again
run rsync -aqr --delete --delete-excluded "$TOPDIR/core/web-assets/" "$WORKDIR/tmp/$PACKAGE_NAME-$VERSION-$RELEASE/core/web-assets/"
fi
echo "=== Creating a tar.gz Archive of the Source in $WORKDIR/tmp/$PACKAGE_NAME-$VERSION-$RELEASE ==="
run tar zcf "$WORKDIR/SOURCES/${PACKAGE_NAME}-source-$VERSION-$RELEASE.tar.gz" -C "$WORKDIR/tmp" "${PACKAGE_NAME}-$VERSION-$RELEASE"
echo "=== Building RPMs ==="
for spec in $SPECS
do
run rpmbuild -bb \
--define "skip_compile $(skipCompile)" \
--define "enable_snapshots $(enableSnapshots)" \
--define "extrainfo $EXTRA_INFO" \
--define "extrainfo2 $EXTRA_INFO2" \
--define "_topdir $WORKDIR" \
--define "_tmppath $WORKDIR/tmp" \
--define "version $VERSION" \
--define "releasenumber $RELEASE" \
--define "_name $PACKAGE_NAME" \
--define "_descr $PACKAGE_DESCRIPTION" \
--define "opa_version $OPA_VERSION" \
$spec || die "failed to build $spec"
done
fi
if $SIGN; then
RPMS=$(echo "$WORKDIR"/RPMS/noarch/*.rpm)
#run rpmsign --define "_signature gpg" --define "_gpg_name $SIGN_ID" --resign "$RPMS"
run expect -c "set timeout -1; spawn rpmsign --define \"_signature gpg\" --define \"_gpg_name $SIGN_ID\" --resign $RPMS; match_max 100000; expect \"Enter pass phrase: \"; send -- \"${SIGN_PASSWORD}\r\"; expect eof" || \
die "RPM signing failed for $(branch)"
fi
echo "==== OpenNMS RPM Build Finished ===="
echo ""
echo "Your completed RPMs are in the $WORKDIR/RPMS/noarch directory."
}
for BIN in $BINARIES; do
EXECUTABLE=`which $BIN 2>/dev/null || :`
if [ -z "$EXECUTABLE" ] || [ ! -x "$EXECUTABLE" ]; then
echo "ERROR: $BIN not found"
exit 1
fi
done
main "$@"