-
Notifications
You must be signed in to change notification settings - Fork 186
/
build-recipe-spec
389 lines (363 loc) · 14.3 KB
/
build-recipe-spec
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
#
# spec specific functions.
#
################################################################
#
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
# Copyright (c) 2022 Andreas Stieger <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or 3 as
# published by the Free Software Foundation.
#
# This program 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 this program (see the file COPYING); if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#
################################################################
recipe_setup_spec() {
spec_setup_stages "$BUILD_RPM_BUILD_STAGE"
TOPDIR=`chroot $BUILD_ROOT su -c "rpm --eval '%_topdir'" - $BUILD_USER`
if test -z "$TOPDIR"; then
cleanup_and_exit 1 "Error: TOPDIR empty"
fi
test "$DO_INIT_TOPDIR" = false || spec_init_topdir
mkdir -p $BUILD_ROOT$TOPDIR/{BUILD,SOURCES,SPECS,SRPMS,BUILDROOT,OTHER,RPMS/noarch,RPMS/i386,RPMS/$(uname -m)}
copy_sources "$MYSRCDIR" "$BUILD_ROOT$TOPDIR/SOURCES/"
chown -hR "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR"
}
spec_get_buildtarget() {
local args=()
if test -n "$BUILD_FLAVOR" ; then
args[${#args[@]}]="--buildflavor"
args[${#args[@]}]="$BUILD_FLAVOR"
fi
if test -n "$OBS_PACKAGE" ; then
args[${#args[@]}]="--obspackage"
args[${#args[@]}]="$OBS_PACKAGE"
fi
queryrecipe "${args[@]}" --dist "$BUILD_DIST" --configdir "$CONFIG_DIR" --archpath "$BUILD_ARCH" "$BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE" buildtarget
}
recipe_prepare_spec() {
# fixup specfile
args=()
if test -n "$RELEASE" ; then
args[${#args[@]}]="--release"
args[${#args[@]}]="$RELEASE"
fi
if test -n "$BUILD_FLAVOR" ; then
args[${#args[@]}]="--buildflavor"
args[${#args[@]}]="$BUILD_FLAVOR"
fi
if test -n "$OBS_PACKAGE" ; then
args[${#args[@]}]="--obspackage"
args[${#args[@]}]="$OBS_PACKAGE"
fi
if test -n "$BUILD_VCSURL" ; then
args[${#args[@]}]="--vcs"
args[${#args[@]}]="$BUILD_VCSURL"
fi
if test -n "$CHANGELOG" -a -f "$BUILD_ROOT/.build-changelog" ; then
args[${#args[@]}]="--changelog"
args[${#args[@]}]="$BUILD_ROOT/.build-changelog"
fi
substitutedeps "${args[@]}" --root "$BUILD_ROOT" --dist "$BUILD_DIST" --archpath "$BUILD_ARCH" --configdir "$CONFIG_DIR" "$BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE" "$BUILD_ROOT/.spec.new" || cleanup_and_exit 1
# report specfile changes
if test -f $BUILD_ROOT/.spec.new ; then
if ! cmp -s $BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE $BUILD_ROOT/.spec.new ; then
echo -----------------------------------------------------------------
echo "I have the following modifications for $RECIPEFILE:"
sed -e "/^%changelog/q" $BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE > $BUILD_ROOT/.spec.t1
sed -e "/^%changelog/q" $BUILD_ROOT/.spec.new > $BUILD_ROOT/.spec.t2
diff $BUILD_ROOT/.spec.t1 $BUILD_ROOT/.spec.t2
rm -f $BUILD_ROOT/.spec.t1 $BUILD_ROOT/.spec.t2
mv $BUILD_ROOT/.spec.new $BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE
else
rm -f $BUILD_ROOT/.spec.new
fi
fi
# fix rpmrc if we are compiling for i686
test -f $BUILD_ROOT/usr/lib/rpm/rpmrc_i586 && mv $BUILD_ROOT/usr/lib/rpm/rpmrc_i586 $BUILD_ROOT/usr/lib/rpm/rpmrc
if test -e $BUILD_ROOT/usr/lib/rpm/rpmrc -a "$BUILD_ARCH" != "${BUILD_ARCH#i686}" ; then
mv $BUILD_ROOT/usr/lib/rpm/rpmrc $BUILD_ROOT/usr/lib/rpm/rpmrc_i586
sed -e 's/^buildarchtranslate: athlon.*/buildarchtranslate: athlon: i686/' -e 's/^buildarchtranslate: i686.*/buildarchtranslate: i686: i686/' < $BUILD_ROOT/usr/lib/rpm/rpmrc_i586 > $BUILD_ROOT/usr/lib/rpm/rpmrc
fi
# extract optflags from configuration
queryconfig --dist "$BUILD_DIST" --configdir "$CONFIG_DIR" --archpath "$BUILD_ARCH" optflags ${BUILD_DEBUG:+debug} > $BUILD_ROOT/root/.rpmrc
test $BUILD_USER = abuild && cp -p $BUILD_ROOT/root/.rpmrc $BUILD_ROOT/home/abuild/.rpmrc
if test -z "$ABUILD_TARGET"; then
ABUILD_TARGET=$(spec_get_buildtarget)
test -z "$ABUILD_TARGET" && ABUILD_TARGET=$(queryconfig target --dist "$BUILD_DIST" --configdir "$CONFIG_DIR" --archpath "$BUILD_ARCH" )
test -z "$ABUILD_TARGET" || echo "build target is $ABUILD_TARGET"
fi
}
spec_is_empty_dir() {
local d
for d in "$1"/* ; do
test -e "$d" && return 1
done
return 0
}
spec_init_topdir() {
local d keepbuild keepbuildroot
case "${rpmstages[0]}" in
-b[ci]\ --short-circuit) keepbuild=BUILD ;;
--noprep\ -b[ciba]) keepbuild=BUILD ;;
-bb\ --short-circuit | -bl) keepbuild=BUILD keepbuildroot=BUILDROOT ;;
esac
test -n "$RPM_BUILD_IN_PLACE" && unset keepbuild
if test -n "$keepbuild$keepbuildroot" ; then
for d in $keepbuild $keepbuildroot ; do
spec_is_empty_dir "$BUILD_ROOT$TOPDIR/$d" && cleanup_and_exit 1 "need files in $TOPDIR/$d for '${rpmstages[0]}'"
done
for d in "$BUILD_ROOT$TOPDIR"/* "$BUILD_ROOT$TOPDIR"/.[^.]* ; do
test "$d" = "$BUILD_ROOT$TOPDIR/$keepbuild" -o "$d" = "$BUILD_ROOT$TOPDIR/$keepbuildroot" && continue
rm -rf "$d"
done
else
rm -rf "$BUILD_ROOT$TOPDIR"
fi
}
spec_setup_stages() {
local stage="$1"
test "$stage#-b[a-z]" != "$stage" && stage="${stage#-b}" # compat
local xstage=pciba origstage="$stage"
case $stage in
"") stage=pciba ;;
[lr]) ;;
[pciba]) stage="${xstage%$stage*}$stage" ;;
[pcibalr]=) stage="${stage%=}" ;;
[pciba]+) stage="${stage%+}${xstage#*${stage%+}}" ;;
s+ | s= | s) stage=s ;;
*) cleanup_and_exit 1 "unknown stage '$stage'" ;;
esac
stage=${stage//s/a}
# drop p/a stages in build-in-place mode unless requested
test -n "$RPM_NOPREP" -a "$stage" != p -a "$origstage" = "${origstage/p/}" && stage="${stage#p}"
test -n "$RPM_BUILD_IN_PLACE" -a "$stage" != a -a "$origstage" = "${origstage/[as]/}" && stage="${stage%a}"
rpmstages=()
case $stage in
p | pc | pci | pcib | pciba) rpmstages[${#rpmstages[@]}]="-b${stage: -1}" ; stage= ;;
c | ci | cib | ciba) rpmstages[${#rpmstages[@]}]="--noprep -b${stage: -1}" ; stage= ;;
esac
while test -n "$stage" ; do
local opt="-b${stage:0:1}"
case "${stage:0:1}" in
a) opt="-bs" ;;
[cib]) opt="$opt --short-circuit" ;;
esac
rpmstages[${#rpmstages[@]}]="$opt"
stage=${stage:1}
done
}
recipe_build_spec() {
rpmbuild=rpmbuild
test -x $BUILD_ROOT/usr/bin/rpmbuild || rpmbuild=rpm
test "$BUILDTYPE" = debbuild && rpmbuild=debbuild
HAVE_DYNAMIC_BUILDREQUIRES=
if grep -E '^%generate_buildrequires' "$BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE" >/dev/null ; then
HAVE_DYNAMIC_BUILDREQUIRES=true
fi
# XXX: move _srcdefattr to macro file?
rpmbopts=("--define" "_srcdefattr (-,root,root)")
if test -n "$BUILD_TOOL_OPTS" ; then
for opt in ${BUILD_TOOL_OPTS[@]}; do
rpmbopts[${#rpmbopts[@]}]=$opt
done
fi
if test "$DO_CHECKS" != true ; then
if chroot "$BUILD_ROOT" "$rpmbuild" --nocheck --help >/dev/null 2>&1; then
rpmbopts[${#rpmbopts[@]}]="--nocheck"
else
echo "warning: --nocheck is not supported by this $rpmbuild version"
fi
fi
if test "$rpmbuild" == "debbuild" ; then
rpmbopts[${#rpmbopts[@]}]="-vv"
fi
if test "$rpmbuild" == "rpmbuild" ; then
# use only --nosignature for rpm v4
rpmbopts[${#rpmbopts[@]}]="--nosignature"
fi
if test -n "$RPM_BUILD_IN_PLACE" ; then
rpmbopts[${#rpmbopts[@]}]="--build-in-place"
fi
if test -n "$ABUILD_TARGET" ; then
rpmbopts[${#rpmbopts[@]}]="--target=$ABUILD_TARGET"
fi
# sysroot packages are not in the database
if test -n "$ABUILD_TARGET" -a -d "$BUILD_ROOT/.build.sysroot" ; then
rpmbopts[${#rpmbopts[@]}]="--nocheck"
rpmbopts[${#rpmbopts[@]}]="--nodeps"
fi
if test -n "$BUILD_DEBUG" ; then
rpmbopts[${#rpmbopts[@]}]='--define'
rpmbopts[${#rpmbopts[@]}]="_build_create_debug 1"
fi
# OBS Debuginfo flag support for Red Hat family
if test -z "$BUILD_DEBUG" ; then
# only when rpmbuild knows --undefine
if chroot $BUILD_ROOT $rpmbuild --undefine --help >& /dev/null; then
rpmbopts[${#rpmbopts[@]}]='--undefine'
rpmbopts[${#rpmbopts[@]}]="_enable_debug_packages"
fi
fi
if test -n "$DISTURL" ; then
rpmbopts[${#rpmbopts[@]}]='--define'
rpmbopts[${#rpmbopts[@]}]="disturl $DISTURL"
fi
if test -n "$RSYNCDONE" ; then
rpmbopts[${#rpmbopts[@]}]='--define'
rpmbopts[${#rpmbopts[@]}]="RSYNCDONE 1"
fi
if test -n "$(queryconfig --dist "$BUILD_DIST" --configdir "$CONFIG_DIR" --archpath "$BUILD_ARCH" buildflags define_specfile)" ; then
rpmbopts[${#rpmbopts[@]}]='--define'
rpmbopts[${#rpmbopts[@]}]="_build_specfile $TOPDIR/SOURCES/$RECIPEFILE"
fi
buildrootoverride=$(queryconfig --dist "$BUILD_DIST" --configdir "$CONFIG_DIR" --archpath "$BUILD_ARCH" buildflags rpm-buildroot-override)
if test -n "$buildrootoverride" ; then
rpmbopts[${#rpmbopts[@]}]='--buildroot'
rpmbopts[${#rpmbopts[@]}]="$buildrootoverride"
fi
GEN_BUILDREQS_PACKS=()
if test -n "$HAVE_DYNAMIC_BUILDREQUIRES" ; then
# query dynamic build requires
rm -f "$BUILD_ROOT$TOPDIR/SRPMS/"*.buildreqs.nosrc.rpm
toshellscript $rpmbuild \
--nodeps \
"${definesnstuff[@]}" \
-br \
"${rpmbopts[@]}" \
"$TOPDIR/SOURCES/$RECIPEFILE" \
> $BUILD_ROOT/.build.command
chmod 755 $BUILD_ROOT/.build.command
chroot $BUILD_ROOT su -c /.build.command - $BUILD_USER < /dev/null
st=$?
if test "$st" != 0 -a "$st" != 11 ; then
return
fi
: > $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs
if test "$st" = 11 ; then
reqsfile=
for i in "$BUILD_ROOT$TOPDIR/SRPMS/"*.buildreqs.nosrc.rpm ; do
test -f "$i" && reqsfile=${i##*/}
done
test -n "$reqsfile" || cleanup_and_exit 1 "no buildreqs.nosrc.rpm file?"
chroot $BUILD_ROOT rpm -qp --requires "$TOPDIR/SRPMS/$reqsfile" | grep -v '^rpmlib(' | sort -u > $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs_tmp
chroot $BUILD_ROOT rpmspec -q --srpm --requires "$TOPDIR/SOURCES/$RECIPEFILE" >> $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs_tmp || cleanup_and_exit 1 "rpm -q --spec failed"
sort < $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs_tmp | uniq -u > $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs
rm -f $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs_tmp
while read db ; do
GEN_BUILDREQS_PACKS[${#GEN_BUILDREQS_PACKS[@]}]="$db"
done < $BUILD_ROOT$TOPDIR/OTHER/_generated_buildreqs
fi
rm -f "$BUILD_ROOT$TOPDIR/SRPMS/"*.buildreqs.nosrc.rpm
fi
for rpmstage in "${rpmstages[@]}" ; do
# su involves a shell which would require even more
# complicated quoting to bypass than this
toshellscript $rpmbuild \
"${definesnstuff[@]}" \
$rpmstage \
"${rpmbopts[@]}" \
"$TOPDIR/SOURCES/$RECIPEFILE" \
> $BUILD_ROOT/.build.command
chmod 755 $BUILD_ROOT/.build.command
check_exit
local build_command="/.build.command"
test -n "$RPM_BUILD_IN_PLACE" && build_command="cd /.build.packages/SOURCES && $build_command"
chroot $BUILD_ROOT su -c "$build_command" - $BUILD_USER < /dev/null
st=$?
test "$st" = 0 || break
done
test "$st" = 0 && BUILD_SUCCEEDED=true
test "$st" = 11 -a -n "$HAVE_DYNAMIC_BUILDREQUIRES" && BUILD_SUCCEEDED=genbuildreqs
}
recipe_resultdirs_spec() {
echo RPMS SRPMS
}
recipe_cleanup_spec() {
:
}
recipe_unpack_srcrpm() {
local srpm="$1"
test -n "$LIST_STATE" || echo "processing src rpm $srpm ..."
MYSRCDIR="$BUILD_ROOT/.build-srcdir"
rm -rf "$MYSRCDIR"
mkdir -p "$MYSRCDIR"
cd "$MYSRCDIR" || cleanup_and_exit 1
$BUILD_DIR/unrpm -q "$srpm" || cleanup_and_exit 1 "Could not unpack $srpm."
for RECIPEFILE in *.spec ; do : ; done
RECIPEPATH="$MYSRCDIR/$RECIPEFILE"
}
# post build functions... move somewhere else?
recipe_check_file_owners() {
echo "... checking for files with abuild user/group"
BADFILE=
while read un gn fn ; do
if test "$un" = abuild -o "$gn" = abuild -o "$un" = ${ABUILD_UID} -o "$gn" = ${ABUILD_GID} ; then
echo " $un $gn $fn"
BADFILE=true
fi
done < <(rpm -qp --qf '[%{FILEUSERNAME} %{FILEGROUPNAME} %{FILENAMES}\n]' $RPMS)
if test -n "$BADFILE" ; then
cleanup_and_exit 1 "please fix your filelist (e.g. add defattr)"
fi
}
recipe_run_rpmlint() {
# SUSE builds are using a special rpmlint binary which is not
# pulling in additional dependencies
local rpmlint="/opt/testing/bin/rpmlint"
if ! test -x "$BUILD_ROOT$rpmlint" ; then
# default rpmlint place as fallback
rpmlint="/usr/bin/rpmlint"
fi
if ! test -x "$BUILD_ROOT$rpmlint" ; then
return
fi
LINT_RPM_FILE_LIST=($(find $BUILD_ROOT/$TOPDIR/RPMS \
\( -name "*-debuginfo-*" -o -name "*-debugsource-*" \
-o -name "*-32bit-*" -o -name "*-64bit-*" \
-o -name "*-x86-*" -o -name "*-ia32-*" \) -prune \
-o -type f -name '*.rpm' -print))
SRPM_FILE_LIST=($(find $BUILD_ROOT/$TOPDIR/SRPMS -type f -name "*.rpm"))
echo
echo "RPMLINT report:"
echo "==============="
rpmlint_logfile=$TOPDIR/OTHER/rpmlint.log
rm -f "$BUILD_ROOT$rpmlint_logfile"
ret=0
chroot $BUILD_ROOT su -s $rpmlint "$BUILD_USER" -- \
--info ${LINT_RPM_FILE_LIST[*]#$BUILD_ROOT} \
${SRPM_FILE_LIST[*]#$BUILD_ROOT} > >(tee "$BUILD_ROOT$rpmlint_logfile") 2>&1 || ret=1
echo
if test "$ret" = 1 ; then
cleanup_and_exit 1
fi
}
recipe_compare_oldpackages() {
if test -x "$BUILD_ROOT/usr/lib/build/same-build-result.sh" ; then
echo "... comparing built packages with the former built"
if chroot $BUILD_ROOT /usr/lib/build/same-build-result.sh /.build.oldpackages "$TOPDIR/RPMS" "$TOPDIR/SRPMS"; then
chroot $BUILD_ROOT touch /.build/.same_result_marker
chroot $BUILD_ROOT touch /.build.packages/same_result_marker
# dirty build service hack. return exit status 2 to bs_worker for unchanged builds
case "$REASON" in
Building\ *\ for\ project\ *\ repository\ *\ srcmd5\ *) exitcode=2 ;;
esac
fi
fi
}
recipe_create_deltarpms() {
if test -x "$BUILD_ROOT/usr/bin/makedeltarpm" -a -x $BUILD_ROOT/usr/lib/build/mkdrpms ; then
echo "... creating delta rpms"
ds=("$BUILD_ROOT/$TOPDIR"/RPMS/* "$BUILD_ROOT$TOPDIR/SRPMS")
chroot $BUILD_ROOT /usr/lib/build/mkdrpms /.build.oldpackages "${ds[@]#$BUILD_ROOT}"
fi
}