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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
|
#!/bin/bash
# Script to build a package. It uses init_buildsystem to setup a chroot
# building tree. This script needs a directory as parameter. This directory
# has to include sources and a recipe file.
#
# BUILD_ROOT here the packages will be built
#
################################################################
#
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
#
# 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
#
################################################################
# some VMs do not allow to specify the init process...
if test "$0" = /sbin/init ; then
exec /.build/build "$@"
fi
test -z "$BUILD_DIR" -a -e /.build/build.data -a -z "$BUILD_IGNORE_2ND_STAGE" && BUILD_DIR=/.build
test -z "$BUILD_DIR" && BUILD_DIR=/usr/lib/build
test -z "$BUILD_ROOT" && BUILD_ROOT=/var/tmp/build-root
test -z "$CONFIG_DIR" && CONFIG_DIR="$BUILD_DIR/configs"
export BUILD_ARCH BUILD_HOST_ARCH BUILD_ROOT BUILD_RPMS BUILD_DIR BUILD_DEBUG
export BUILD_DIST
icecream=0
definesnstuff=()
repos=()
old_packages=()
# slurp in vm support
. "$BUILD_DIR/build-vm"
# slurp in recipe support
. "$BUILD_DIR/build-recipe"
# slurp in package binary support
. "$BUILD_DIR/build-pkg"
# need to restore build root owner for non-root builds
browner=
# Default uid:gid for the build user
ABUILD_UID=399
ABUILD_GID=399
DO_INIT=true
DO_BUILD=true
DO_INIT_TOPDIR=true
DO_LINT=
DO_CHECKS=true
SHORT_CIRCUIT=false
NO_TOPDIR_CLEANUP=false
CLEAN_BUILD=
KEEP_PACKS=
RECIPEFILES=()
SRCDIR=
BUILD_JOBS=
ABUILD_TARGET=
CREATE_BASELIBS=
USEUSEDFORBUILD=
LIST_STATE=
RUNNING_IN_VM=
RPMLIST=
RELEASE=
REASON=
NOROOTFORBUILD=
LOGFILE=
KILL=
CHANGELOG=
BUILD_DEBUG=
INCARNATION=
DISTURL=
LINKSOURCES=
OVERLAY=
RSYNCSRC=
RSYNCDEST=
RSYNCDONE=
SIGNDUMMY=
DO_STATISTICS=
RUN_SHELL=
CCACHE=
DLNOSIGNATURE=
CACHE_DIR=/var/cache/build
USEHIGHERDEPS=
# This is for insserv
export YAST_IS_RUNNING=instsys
unset LANGUAGE
unset LANG
export LC_ALL=POSIX
umask 022
echo_help () {
cat << EOT
Some comments for build
-----------------------
With build you can create binary packages. They will be built in a chroot
system. This chroot system will be setup automatically. Normally you can
simply call build with a spec file as parameter - nothing else has to be
set.
If you want to set the directory were the chroot system will be setup
(at the moment it uses $BUILD_ROOT),
simply set the the environment variable BUILD_ROOT.
Example:
export BUILD_ROOT=/var/tmp/mybuildroot
Normally build builds the complete package including src.rpm (rpmbuild -ba).
If you want let build only make the binary package, simply set
export BUILD_RPM_BUILD_STAGE=-bb
(or -bc, -bp, -bi, ... see "Maximum RPM" for more details [*]).
When the build command succeeds, the rpm files can be found under
$BUILD_ROOT/usr/src/packages/RPMS/
Known Parameters:
--help You already got it :)
--kill Instead of starting a build kill the one currently
running.
--shell Instead of starting a build start a root shell in
the build root.
--clean Delete old build root before initializing it
--no-init Skip initialization of build root and start with build
immediately.
--no-checks Do not run checks (postbuild and %check)
--lint Run rpmlint after build.
--logfile logfile
Capture build output to logfile. Defaults to
.build.log in the build root for non-VM builds.
--repo PATH_OR_URL
Use package repository at PATH_OR_URL. Supported formats
are rpm-md, yast2, debian, and arch linux.
Alternatively zypp://NAME specifies the zypp
repository NAME. The repo must be refreshed with zypp
so package meta data is available locally. With emtpy
NAME all enabled repositories are used.
--rpms path1:path2:...
Specify path where to find the RPMs for the build system
--arch arch1:arch2:...
Specify what architectures to select from the RPMs
--verify Run verify when initializing the build root
--extra-packs pack
-X pack
Also install package 'pack'
--root rootdir
Use 'rootdir' to setup chroot environment
--cachedir cachedir
Use 'cachedir' to cache remote repo's packages. The
default cache dir is /var/cache/build, every repo
given by --repo corresponds to a subdir named
as md5sum of its repo url, for example:
/var/cache/build/3e8ea9b47808629414a0cebc33ea285e
--oldpackages oldpackagesdir
Define a directory with a former build
--baselibs Create -32bit/-64bit/-x86 rpms for other architectures
--list-state
List rpms that would be used to create a fresh build root.
Does not create the build root or perform a build.
--dist dist
Distribution to use
--with X
Enable feature X for build
--without X
Disable feature X for build
--define 'X Y'
Define macro X with value Y
--release release
Override Release in spec file
--stage -bSTAGE
Set stage for rpmbuild. Defaults to -ba.
--target platform
Set target platform for rpmbuild
--jobs N Use N parallel processes during build.
Sets %jobs and %_smp_mflags macros and
defines the number of CPUs to use for
VMs.
--threads N sets number of threads for VM
--ccache
Use ccache to speed up rebuilds
--icecream N
Use N parallel build jobs with icecream
--overlay OVERLAY
Copy overlay filesystem to buildroot after installing
all RPMs. This must be a valid directory.
--rsync-src RSYNCSRC
Copy overlay folder (RSYNCSRC) to a folder (RSYNCDEST)
inside the buildroot using rsync.
It will "%define RSYNCDONE 1" for handling %setup in your
specfile. E.g.:
%prep
%if 0%{?RSYNCDONE}
%setup -n aaa_base -T -D -b 5 -b 7
%else
%setup -n aaa_base -b 5 -b 7
%endif
--rsync-dest RSYNCDEST
Copy overlay folder (RSYNCSRC) to a folder (RSYNCDEST)
inside the buildroot using rsync.
--uid uid:gid
Specify the uid and gid to use for the abuild user.
This is useful if you are hacking in the buildroot.
This must be set to the same value if the buildroot is re-used.
--statistics
monitor used resources during build inside VM
--kvm
Use KVM to secure build process. Your hardware needs to support
virtualization
--xen
Use XEN to secure build process, you to run in a XEN Dom0 environment.
--lxc
Use Linux Containers to isolate the process. This may not be 100% safe.
--openstack
Cloud build
--ec2
Cloud build
--emulator
Use any generic emulator to isolate the build process. You need to write
an emulator/emulator.sh script and put it next to the build script sources.
--emulator-script SCRIPT
specify another emulator instead of emulator.sh
--vm-type TYPE
Use virtual machine instead of chroot
TYPE is one of xen|kvm|uml|qemu|lxc|zvm|openstack|ec2|docker|pvm
--vm-worker GUEST
GUEST is a z/VM build worker controlled by the controlling
z/VM build machine.
--vm-worker-nr N
Each worker in z/VM needs a uniq number. This is needed to
calculate uniq device addresses for root and swap device.
--vm-region NAME
EC2 only: defines amazon control server
--vm-server NAME
openstack only: defines control server name
--vm-disk FILE
Use FILE as disk for virtual machine.
Defaults to \$BUILD_ROOT.img if unset
--vm-swap FILE
Use FILE as swap space for virtual machine. The swap space is
also used for retrieving packages from the VM so its size must
be sufficiently large
--vm-disk-size SIZEINMB
--vm-swap-size SIZEINMB
--vm-disk-filesystem TYPE
Defaults for automatic setup of VM root/swap files
--vm-memory SIZEINMB
Set amount of RAM for VMs
--vm-hugetlbfs HUGETLBFSPATH
Use hugetlb for memory management, path to mounted hugetlbfs.
--vm-kernel FILE
--vm-initrd FILE
Kernel and initrd to use for VM (kvm and qemu only)
--vm-user USERNAME
User name to run qemu/kvm process
--vm-telnet PORT
Is forwarding PORT to a telnet session inside of the VM.
Specify also needed extra packages via -x parameter, usually:
--vm-telnet 1234 -x telnet-server -x net-tools
And connect from the host via
telnet 1234
NOTE: The telnet server gets started after all packages got installed.
--vm-net OPTION
--vm-netdev OPTION
--vm-device OPTION
KVM only: Attach kvm option
Available options are -net, -netdev, -device
(This options in kvm can not guarantee reproducible builds)
--debug
Enable creation of a debuginfo package
Remember to have fun!
[*] Maximum RPM: http://www.rpm.org/max-rpm/
EOT
}
usage () {
echo "Usage: `basename $0` [--no-init|--clean|--rpms path|--verify|--help] [dir-to-build|recipe-to-build]"
cleanup_and_exit 1
}
#
# cleanup_and_exit
# return values: 0 -> success, new packages built
# 1 -> error, build failed
# 2 -> successfull build, but no changes to former built packages
# 3 -> something wrong with build host
#
cleanup_and_exit () {
trap EXIT
test -z "$1" && set 0
rm -f "$BUILD_ROOT"/.repo.config
rm -f "$BUILD_ROOT"/exit
if test "$1" -eq 1 -a -x /bin/df ; then
echo
echo "$HOST failed \"build $RECIPEFILE\" at `date --utc`."
echo
# okay, it failed, but maybe because disk space?
if df "$BUILD_ROOT" 2>/dev/null | grep -q "100%"; then
df "$BUILD_ROOT" 2>/dev/null
echo
echo "$HOST ran out of disk space. Please try again."
echo
set 3
fi
fi
if test -n "$RUNNING_IN_VM" ; then
echo "$1" > /.build/_exitcode
test -n "$browner" && chown "$browner" "$BUILD_ROOT"
vm_shutdown "$1"
else
umount -n "$BUILD_ROOT"/proc/sys/fs/binfmt_misc 2> /dev/null || true
umount -n "$BUILD_ROOT"/proc 2>/dev/null || true
while true
do
umount -n "$BUILD_ROOT"/dev/pts 2>/dev/null
if test $? -ne 0; then
break
fi
done
umount -n "$BUILD_ROOT"/dev/shm 2>/dev/null || true
umount -n "$BUILD_ROOT"/sys 2>/dev/null || true
test -n "$VM_IMAGE" -a "$VM_IMAGE" != 1 && umount "$BUILD_ROOT" 2>/dev/null || true
test -n "$VM_TYPE" && vm_cleanup
fi
exit $1
}
fail_exit() {
cleanup_and_exit 1
}
shellquote() {
for arg ; do
arg=${arg/\\/\\\\}
arg=${arg/\$/\\\$}
arg=${arg/\"/\\\"}
arg=${arg/\`/\\\`}
echo -n " \"$arg\""
done
}
# create a shell script from command line. Used for preserving arguments
# through /bin/su -c
toshellscript() {
echo "#!/bin/sh -x"
echo -n exec
shellquote "$@"
echo
}
setupccache() {
if test -n "$CCACHE" ; then
if mkdir -p "$BUILD_ROOT"/var/lib/build/ccache/bin; then
for i in $(ls "$BUILD_ROOT"/usr/bin | grep -E '^(cc|gcc|[cg][+][+])([-]?[234][.]?[0-9])*$'); do
# ln -sf /usr/bin/ccache $BUILD_ROOT/var/lib/build/ccache/bin/$i
rm -f "$BUILD_ROOT"/var/lib/build/ccache/bin/$i
test -e "$BUILD_ROOT"/usr/bin/$i || continue
echo '#! /bin/sh' > "$BUILD_ROOT"/var/lib/build/ccache/bin/$i
echo "test -e /usr/bin/$i || exit 1" >> "$BUILD_ROOT"/var/lib/build/ccache/bin/$i
echo 'export PATH=/usr/lib/icecc/bin:/opt/icecream/bin:/usr/bin:$PATH' >> "$BUILD_ROOT"/var/lib/build/ccache/bin/$i
echo "ccache $i \"\$@\"" >> "$BUILD_ROOT"/var/lib/build/ccache/bin/$i
chmod 755 "$BUILD_ROOT"/var/lib/build/ccache/bin/$i
echo "Installed ccache wrapper as $BUILD_ROOT/var/lib/build/ccache/bin/$i"
done
fi
mkdir -p "$BUILD_ROOT/.ccache"
chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT/.ccache"
echo "export CCACHE_DIR=/.ccache" > "$BUILD_ROOT"/etc/profile.d/build_ccache.sh
echo 'export PATH=/var/lib/build/ccache/bin:$PATH' >> "$BUILD_ROOT"/etc/profile.d/build_ccache.sh
else
rm -f "$BUILD_ROOT"/var/lib/build/ccache/bin/{gcc,g++,cc,c++}
fi
}
setupicecream() {
local icecreamdir=/var/run/icecream
if test "$(readlink "$BUILD_ROOT/var/run")" = /run ; then
icecreamdir=/run/icecream
fi
if test "$icecream" -eq 0 ; then
rm -rf "$BUILD_ROOT$icecreamdir"
rm -f "$BUILD_ROOT/etc/profile.d/build_icecream.sh"
return 0
fi
if ! chroot "$BUILD_ROOT" rpm -q icecream >/dev/null 2>/dev/null; then
echo "*** icecream package not installed ***"
return 1
fi
echo "using icecream with $icecream jobs"
if test -z "$CCACHE" ; then
echo 'export PATH=/usr/lib/icecc/bin:/opt/icecream/bin:$PATH' > "$BUILD_ROOT"/etc/profile.d/build_icecream.sh
else
echo 'export CCACHE_PATH=/usr/lib/icecc/bin:/opt/icecream/bin' > "$BUILD_ROOT"/etc/profile.d/build_icecream.sh
fi
local icecc_vers=(`shopt -s nullglob; echo "$BUILD_ROOT"$icecreamdir/*.tar.{bz2,gz}`)
icecc_vers=${icecc_vers//"$BUILD_ROOT"/}
# XXX use changelog like autobuild does instead?
# only run create-env if compiler or glibc changed
if test -z "$icecc_vers" \
-o ! -e "$BUILD_ROOT/$icecc_vers" \
-o "$BUILD_ROOT/usr/bin/gcc" -nt "$BUILD_ROOT/$icecc_vers" \
-o "$BUILD_ROOT/usr/bin/g++" -nt "$BUILD_ROOT/$icecc_vers" \
-o "$BUILD_ROOT/usr/bin/as" -nt "$BUILD_ROOT/$icecc_vers" \
-o "$BUILD_ROOT/lib/libc.so.6" -nt "$BUILD_ROOT/$icecc_vers"
then
rm -rf "$BUILD_ROOT$icecreamdir"
mkdir -p "$BUILD_ROOT$icecreamdir"
if test -e "$BUILD_ROOT"/usr/bin/create-env ; then
createenv=/usr/bin/create-env
elif test -e "$BUILD_ROOT"/usr/lib/icecc/icecc-create-env ; then
createenv="/usr/lib/icecc/icecc-create-env /usr/bin/gcc /usr/bin/g++" # XXX
elif test -e "$BUILD_ROOT"/usr/lib64/icecc/icecc-create-env ; then
createenv="/usr/lib64/icecc/icecc-create-env /usr/bin/gcc /usr/bin/g++" # XXX
else
echo "create-env not found"
return 1
fi
echo "creating new env in '$icecreamdir'"
chroot "$BUILD_ROOT" bash -c "cd $icecreamdir; $createenv" || cleanup_and_exit 1
icecc_vers=(`shopt -s nullglob; echo "$BUILD_ROOT"/$icecreamdir/*.tar.{bz2,gz}`)
icecc_vers=${icecc_vers//"$BUILD_ROOT"/}
echo "created icecream environment $icecc_vers"
else
echo "reusing existing icecream environment $icecc_vers"
fi
if test -n "$icecc_vers" ; then
echo "export ICECC_VERSION=$icecc_vers" >> "$BUILD_ROOT"/etc/profile.d/build_icecream.sh
fi
}
setmemorylimit() {
if test -n "$VM_IMAGE" -o -n "$RUNNING_IN_VM" ; then
return
fi
arch=`uname -p`
if [ $arch == "x86_64" ];then
echo "on X86_64, no limit mem size"
return
fi
local mem
local limit
while read mem; do
case "$mem" in
MemTotal:*)
set -- $mem
eval "limit=\$(($2/3*4))"
;;
SwapTotal:*)
set -- $mem
eval "limit=\$(($2/3*4+$limit))"
;;
esac
done < <(cat /proc/meminfo) # cat for proc stuff
ulimit -v $limit
echo "Memory limit set to ${limit}KB"
}
create_baselibs() {
local pkgs=()
local line
BASELIBS_CFG=
if test "$BUILDTYPE" == arch || test "$BUILDTYPE" = collax ; then
return
fi
if test "$BUILDTYPE" == dsc ; then
pkgs=($DEBS)
else # spec and kiwi
if test -e "$BUILD_ROOT"$TOPDIR/SOURCES/baselibs.conf ; then
BASELIBS_CFG="-c $TOPDIR/SOURCES/baselibs.conf"
fi
if test -e "$BUILD_ROOT"/usr/lib/build/baselibs_global.conf; then
BASELIBS_GLOBAL="-c /usr/lib/build/baselibs_global.conf"
fi
pkgs=($RPMS)
fi
mount -n -tproc none "$BUILD_ROOT"/proc 2> /dev/null
# don't use -R as extracted sources, build root etc might be below $TOPDIR
chown "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR"/* "$BUILD_ROOT$TOPDIR"/RPMS/* || true
local mkbaselibs="/usr/lib/build/mkbaselibs"
local whichone=''
# $BUILD_DIR is set to /.build when using a vm. So we need to
# hardcode /usr/lib/build instead of $BUILD_DIR to prefer
# mkbaselibs from the distro.
if test -f "$BUILD_ROOT"$mkbaselibs; then
if test -z "$BASELIBS_CFG" -a -e "$BUILD_ROOT"/usr/lib/build/baselibs.conf ; then
BASELIBS_CFG="-c /usr/lib/build/baselibs.conf"
fi
else
if test "$CREATE_BASELIBS" = 'internal'; then
echo "Warning: mkbaselibs missing in build root, skipping baselibs"
return
fi
# use external version
whichone=" (external)"
mkbaselibs="/.mkbaselibs/mkbaselibs"
rm -rf "$BUILD_ROOT/.mkbaselibs"
mkdir -p "$BUILD_ROOT/.mkbaselibs"
cp -f $BUILD_DIR/mkbaselibs "$BUILD_ROOT"/.mkbaselibs/
if test "$BUILDTYPE" == "dsc" ; then
cp -f $BUILD_DIR/baselibs_global-deb.conf "$BUILD_ROOT"/.mkbaselibs/baselibs_g.conf
cp -f "$BUILD_ROOT"$TOPDIR/SOURCES/baselibs-deb.conf "$BUILD_ROOT"/.mkbaselibs/baselibs-deb.conf
BASELIBS_CFG="-c /.mkbaselibs/baselibs-deb.conf"
else
cp -f $BUILD_DIR/baselibs_global.conf "$BUILD_ROOT"/.mkbaselibs/baselibs_g.conf
if test -z "$BASELIBS_CFG" -a -e $BUILD_DIR/baselibs.conf; then
cp -f $BUILD_DIR/baselibs.conf "$BUILD_ROOT"/.mkbaselibs/baselibs.conf
BASELIBS_CFG="-c /.mkbaselibs/baselibs.conf"
fi
fi
if test -e "$BUILD_ROOT"/.mkbaselibs/baselibs_g.conf; then
BASELIBS_GLOBAL="-c /.mkbaselibs/baselibs_g.conf"
fi
fi
echo "... creating baselibs$whichone"
pkgs_origin=(`echo ${pkgs[*]} | sed 's/\"//g'`)
while read line
do
chroot "$BUILD_ROOT" su -c "$mkbaselibs $BASELIBS_GLOBAL $BASELIBS_CFG $line" - $BUILD_USER || cleanup_and_exit 1
done < <(IFS=$'\n'; echo "${pkgs_origin[*]#$BUILD_ROOT}" | xargs -n 1024)
rm -rf "$BUILD_ROOT/.mkbaselibs"
}
copy_oldpackages() {
local i=0
local d
local dest
test -z "$RUNNING_IN_VM" || return 0
if test -z "$old_packages" ; then
rm -rf "$BUILD_ROOT"/.build.oldpackages*
return 0
fi
for d in "${old_packages[@]}"; do
dest="$BUILD_ROOT/.build.oldpackages"
test "$i" = 0 || dest="$dest$i"
if test -d "$d" -a "$d" != "$dest" ; then
rm -rf "$dest"
mkdir -p "$dest"
cp -L $d/* "$dest"
: $((++i))
fi
done
}
become_root_or_fail() {
if test ! -w /root ; then
echo "You have to be root to use $0" >&2
exit 1
fi
cleanup_and_exit 1
}
mkdir_build_root() {
# strip trailing slash
test "$BUILD_ROOT" != / && BUILD_ROOT="${BUILD_ROOT%/}"
if test -d "$BUILD_ROOT" ; then
# check if it is owned by root
if test -z "$RUNNING_IN_VM" -a \! -O "$BUILD_ROOT" -a "`stat -c %u "$BUILD_ROOT"`" -ne 0 ; then
echo "BUILD_ROOT=$BUILD_ROOT must be owned by root. Exit..."
cleanup_and_exit 1
fi
else
test "$BUILD_ROOT" != "${BUILD_ROOT%/*}" && mkdir -p "${BUILD_ROOT%/*}"
if ! mkdir "$BUILD_ROOT" ; then
echo "can not create BUILD_ROOT=$BUILD_ROOT. Exit..."
cleanup_and_exit 1
fi
fi
if test ! -w "$BUILD_ROOT" ; then
echo "Error: BUILD_ROOT=$BUILD_ROOT not writeable, try --clean."
cleanup_and_exit 3
fi
rm -rf "$BUILD_ROOT/.build.packages"
if test -z "$VM_TYPE" -a -z "$RUNNING_IN_VM" ; then
# don't touch this in VM
rm -rf "$BUILD_ROOT/.build"
mkdir -p "$BUILD_ROOT/.build"
fi
}
copy_overlay() {
if test -d "$OVERLAY"; then
pushd $OVERLAY
echo "Copying overlay to BUILD_ROOT"
tar -cpf - . | (cd "$BUILD_ROOT" ; tar -xvf -)
popd
else
echo "OVERLAY ($OVERLAY) is no directory - skipping"
fi
}
run_rsync() {
if test -n "$RSYNCDEST" ; then
if test -d "$RSYNCSRC" ; then
if ! test -d "$BUILD_ROOT/$RSYNCDEST" ; then
echo "ATTENTION! Creating missing target directory ("$BUILD_ROOT"/$RSYNCDEST)."
mkdir -p "$BUILD_ROOT"/$RSYNCDEST
fi
echo "Running rsync ..."
rsync -av $RSYNCSRC/* "$BUILD_ROOT"/$RSYNCDEST/
chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT/$RSYNCDEST"
RSYNCDONE=true
echo "... done"
else
echo "RSYNCSRC is not a directory - skipping"
fi
else
echo "RSYNCSRC given, but not RSYNCDEST - skipping"
fi
}
hide_passwords()
{
local i j
r=()
rm -f "$BUILD_ROOT"/.repo.config
for i in "${repos[@]}"; do
if [ "$i" == "--repo" -o "$i" == "--repository" ]; then
r=("${r[@]}" "$i")
else
echo $i |grep -E "^http[s]?:\/\/[^\/]*\/?" >/dev/null && echo $i >> "$BUILD_ROOT"/.repo.config
j=$(echo $i | sed -e "s#://[^@]*@#://#")
r=("${r[@]}" "$j")
fi
done
repos=("${r[@]}")
# echo ${repos[@]}
}
#### main ####
trap fail_exit EXIT
shopt -s nullglob
export PATH=$BUILD_DIR:/sbin:/usr/sbin:/bin:/usr/bin:$PATH
if vm_detect_2nd_stage ; then
set "/.build-srcdir/$RECIPEFILE"
export PATH=/.build:$PATH
fi
. $BUILD_DIR/common_functions || exit 1
export HOST
needarg() {
if test -z "$ARG" ; then
echo "$PARAM needs an agrument" >&2
cleanup_and_exit 1
fi
}
while test -n "$1"; do
PARAM="$1"
ARG="$2"
test "$ARG" = "${ARG#-}" || ARG=
shift
case $PARAM in
*-*=*)
ARG=${PARAM#*=}
PARAM=${PARAM%%=*}
set -- "----noarg=$PARAM" "$@"
;;
esac
case ${PARAM/#--/-} in
-help|-h)
echo_help
cleanup_and_exit
;;
-noinit|-no-init)
test "$DO_INIT" = false && DO_INIT_TOPDIR=false
DO_INIT=false
;;
-no-build)
DO_BUILD=false
;;
-nochecks|-no-checks)
DO_CHECKS=false
;;
-clean)
CLEAN_BUILD='--clean'
;;
-kill)
KILL=true
;;
-rpms)
needarg
BUILD_RPMS="$ARG"
shift
;;
-arch)
needarg
BUILD_ARCH="$ARG"
shift
;;
-verify)
export VERIFY_BUILD_SYSTEM=true
;;
-target)
needarg
ABUILD_TARGET="$ARG"
shift
;;
-jobs)
needarg
BUILD_JOBS="$ARG"
shift
;;
-threads)
needarg
BUILD_THREADS="$ARG"
shift
;;
-extrapacks|-extra-packs|-X)
needarg
BUILD_EXTRA_PACKS="$BUILD_EXTRA_PACKS $ARG"
shift
;;
-lint)
DO_LINT=true
;;
-baselibs)
CREATE_BASELIBS=true
;;
-baselibs-internal)
CREATE_BASELIBS=internal
;;
-keep-packs)
KEEP_PACKS="--keep-packs"
;;
-root)
needarg
BUILD_ROOT="$ARG"
shift
;;
-cachedir)
needarg
CACHE_DIR="$ARG"
shift
;;
-oldpackages)
needarg
old_packages=("${old_packages[@]}" "$ARG")
shift
;;
-dist)
needarg
BUILD_DIST="$ARG"
shift
;;
-release)
needarg
RELEASE="$ARG"
shift
;;
-logfile)
needarg
LOGFILE="$ARG"
shift
;;
-reason)
needarg
REASON="$ARG"
shift
;;
-norootforbuild)
NOROOTFORBUILD=true
;;
-short-circuit)
SHORT_CIRCUIT=true
;;
-no-topdir-cleanup)
NO_TOPDIR_CLEANUP=true
;;
-useusedforbuild)
USEUSEDFORBUILD="--useusedforbuild"
;;
-configdir)
needarg
CONFIG_DIR="$ARG"
shift
;;
-list*state)
LIST_STATE=true
;;
-define|-with|-without)
needarg
PARAM="-${PARAM/#--/-}"
definesnstuff[${#definesnstuff[@]}]="$PARAM"
definesnstuff[${#definesnstuff[@]}]="$ARG"
shift
;;
-repository|-repo)
needarg
repos[${#repos[@]}]="--repository"
repos[${#repos[@]}]="$ARG"
shift
;;
-icecream)
needarg
icecream="$ARG"
test "$icecream" -gt 0 && BUILD_JOBS="$ARG"
shift
;;
-ccache)
CCACHE=true
;;
-statistics)
DO_STATISTICS=1
;;
-debug)
BUILD_DEBUG=1
;;
-incarnation)
needarg
INCARNATION=$ARG
shift
;;
-disturl)
needarg
DISTURL=$ARG
shift
;;
-linksources)
LINKSOURCES=true
;;
-changelog)
CHANGELOG=true
;;
-overlay)
needarg
OVERLAY=$ARG
shift
;;
-rsync-src)
needarg
RSYNCSRC=$ARG
shift
;;
-rsync-dest)
needarg
RSYNCDEST=$ARG
shift
;;
-uid)
needarg
ABUILD_ID="$ARG"
if test -n "${ABUILD_ID//[0-9:]/}" ; then
echo "--uid argument must be uid:gid"
cleanup_and_exit
fi
ABUILD_UID=${ABUILD_ID%:*}
ABUILD_GID=${ABUILD_ID#*:}
shift
;;
-rpmlist)
needarg
RPMLIST="--rpmlist $ARG"
BUILD_RPMS=
shift
;;
-shell)
RUN_SHELL=1
shift
;;
-signdummy)
SIGNDUMMY=1
;;
-nosignature)
DLNOSIGNATURE="--nosignature"
;;
---noarg)
echo "$ARG does not take an argument"
cleanup_and_exit
;;
-use-higher-deps)
USEHIGHERDEPS="--use-higher-deps"
;;
-*)
if vm_parse_options "$@" ; then
set -- "${nextargs[@]}"
elif recipe_parse_options "$@" ; then
set -- "${nextargs[@]}"
else
echo "Unknown option '$PARAM'. Exit."
cleanup_and_exit 1
fi
;;
*)
RECIPEFILES[${#RECIPEFILES[@]}]="$PARAM"
;;
esac
done
if [ "$SHORT_CIRCUIT" = true -a -z "$BUILD_RPM_BUILD_STAGE" ]; then
echo "--short-circuit needs a stage (use --stage)"
cleanup_and_exit 1
fi
if test -n "$KILL" ; then
test -z "$SRCDIR" || usage
if test -n "$VM_IMAGE" -a -n "$VM_SWAP" -a -n "$VM_TYPE"; then
# mark job as failed so that we don't extract packages
if test "$VM_TYPE" != zvm ; then
echo -n "BUILDSTATUS1" >"$VM_SWAP"
fi
fi
(set -C; > "$BUILD_ROOT/exit" 2>/dev/null || true)
if test -n "$VM_TYPE" ; then
vm_kill
else
if ! $BUILD_DIR/killchroot -s 9 "$BUILD_ROOT" ; then
echo "could not kill build in $BUILD_ROOT"
cleanup_and_exit 1
fi
fi
cleanup_and_exit 0
fi
if test -n "$CLEAN_BUILD" ; then
DO_INIT=true
DO_INIT_TOPDIR=true
fi
if test -n "$VM_TYPE" -a -z "$RUNNING_IN_VM" ; then
vm_verify_options
fi
if test -z "$RPMLIST" -a -z "$RUNNING_IN_VM" ; then
if test -z "$repos" -a -z "$BUILD_RPMS" ; then
repos=(--repository 'zypp://')
fi
else
repos=()
fi
set_build_arch
expand_recipe_directories
if test -n "$LIST_STATE" ; then
BUILD_ROOT=`mktemp -d /var/tmp/build-list-state-XXXXXX`
test -d "$BUILD_ROOT" || cleanup_and_exit 3
RECIPEFILE=$RECIPEFILES # only one specified anyways
if test "$RECIPEFILE" != "${RECIPEFILE%.src.rpm}" ; then
MYSRCDIR="$BUILD_ROOT/usr/src/packages/SOURCES"
recipe_unpack_srcrpm
RECIPEFILE="$MYSRCDIR/$RECIPEFILE"
fi
init_buildsystem --configdir "$CONFIG_DIR" --cachedir "$CACHE_DIR" --list-state "${definesnstuff[@]}" "${repos[@]}" $DLNOSIGNATURE $KEEP_PACKS $USEHIGHERDEPS $USEUSEDFORBUILD $RECIPEFILE $BUILD_EXTRA_PACKS
ERR=$?
rm -rf "$BUILD_ROOT"
cleanup_and_exit $ERR
fi
# do vm setup if needed
if test -z "$RUNNING_IN_VM" -a -n "$VM_TYPE" -a -n "$VM_IMAGE" ; then
vm_setup
fi
mkdir_build_root
hide_passwords
if test "$BUILD_ROOT" = / ; then
browner="$(stat -c %u /)"
fi
rm -f "$BUILD_ROOT"/exit
if test -w /root ; then
mkdir -p "$BUILD_ROOT"/proc
mkdir -p "$BUILD_ROOT"/sys
mkdir -p "$BUILD_ROOT"/dev/pts
mount -n -tproc none "$BUILD_ROOT"/proc || true
mount -n -tdevpts -omode=0620,gid=5 none "$BUILD_ROOT"/dev/pts
fi
if test -z "$VM_IMAGE" -a -z "$LOGFILE" ; then
if test -z "$RUNNING_IN_VM"; then
LOGFILE="$BUILD_ROOT/.build.log"
else
# lxc and docker are special cases: vm shares logfile with host
case "$VM_TYPE" in
lxc|docker)
;;
*)
LOGFILE="$BUILD_ROOT/.build.log"
;;
esac
fi
fi
if test -n "$LOGFILE" -a -z "$RUN_SHELL" ; then
echo "logging output to $LOGFILE..."
rm -f $LOGFILE
touch $LOGFILE
# set start time, to be substracted for build log timestamps
STARTTIME=`perl -e 'print time()'`
if test -n "$RUNNING_IN_VM" ; then
# no additional timestamps in inner vm build system
exec 1> >(exec -a 'build logging' tee -a $LOGFILE) 2>&1
elif test -n "$VM_IMAGE" ; then
# external run of virtualization build
exec 1> >(exec -a 'build logging' perl -e 'open(F,">>",$ARGV[0])||die("$ARGV[0]: $!\n");$|=1;select(F);$|=1;while(<STDIN>){my $p=sprintf("[%5ds] ", time()-'$STARTTIME');print STDOUT $p.$_;s/^\r//s;s/\r\n/\n/gs;print F $p.$_}' $LOGFILE) 2>&1
else
# plain chroot
exec 1> >(exec -a 'build logging' perl -e 'open(F,">>",$ARGV[0])||die("$ARGV[0]: $!\n");$|=1;select(F);$|=1;while(<STDIN>){my $p=sprintf("[%5ds] ", time()-'$STARTTIME');print STDOUT $p.$_;print F $p.$_}' $LOGFILE) 2>&1
fi
fi
setmemorylimit
#
# say hello
#
test -z "$HOST" && HOST=`hostname`
if test -z "$RUNNING_IN_VM" ; then
echo Using BUILD_ROOT=$BUILD_ROOT
test -n "$BUILD_RPMS" && echo Using BUILD_RPMS=$BUILD_RPMS
echo Using BUILD_ARCH=$BUILD_ARCH
test -n "$VM_TYPE" && echo "Doing $VM_TYPE build${VM_IMAGE:+ in $VM_IMAGE}"
echo
fi
test "$BUILD_ARCH" = all && BUILD_ARCH=
BUILD_USER_ABUILD_USED=
for RECIPEFILE in "${RECIPEFILES[@]}" ; do
SRCDIR="${RECIPEFILE%/*}"
RECIPEFILE="${RECIPEFILE##*/}"
recipe_set_buildtype
if test -z "$RUNNING_IN_VM" ; then
echo
echo "$HOST started \"build $RECIPEFILE\" at `date --utc`."
echo
test -n "$REASON" && echo "$REASON"
echo
TIME_START_TIME=`date +%s` # for statistics
fi
#
# first setup building directory...
#
cd "$SRCDIR"
if ! test -s "$RECIPEFILE" ; then
echo "$RECIPEFILE is empty. This should not happen..."
cleanup_and_exit 1
fi
MYSRCDIR="$SRCDIR"
# special hack to build from a .src.rpm
test "$RECIPEFILE" != "${RECIPEFILE%.src.rpm}" && recipe_unpack_srcrpm
echo "processing recipe $MYSRCDIR/$RECIPEFILE ..."
ADDITIONAL_PACKS=
test -z "$BUILD_EXTRA_PACKS" || ADDITIONAL_PACKS="$ADDITIONAL_PACKS $BUILD_EXTRA_PACKS"
test -z "$CREATE_BASELIBS" || ADDITIONAL_PACKS="$ADDITIONAL_PACKS build"
test -z "$CCACHE" || ADDITIONAL_PACKS="$ADDITIONAL_PACKS ccache"
test "$icecream" = 0 || ADDITIONAL_PACKS="$ADDITIONAL_PACKS icecream gcc-c++"
test -z "$DO_LINT" || ADDITIONAL_PACKS="$ADDITIONAL_PACKS rpmlint-Factory"
test "$VMDISK_FILESYSTEM" = xfs && ADDITIONAL_PACKS="$ADDITIONAL_PACKS libblkid1"
test "$VM_TYPE" = zvm && ADDITIONAL_PACKS="$ADDITIONAL_PACKS udev libcap2"
# we need to do this before the vm is started
if test -n "$CHANGELOG" -a -z "$RUNNING_IN_VM" ; then
rm -f "$BUILD_ROOT"/.build-changelog
case $RECIPEFILE in
*.dsc) CFFORMAT=debian ;;
*) CFFORMAT=rpm ;;
esac
echo "running changelog2spec --target $CFFORMAT --file $MYSRCDIR/$RECIPEFILE"
if ! $BUILD_DIR/changelog2spec --target $CFFORMAT --file "$MYSRCDIR/$RECIPEFILE" > "$BUILD_ROOT"/.build-changelog ; then
rm -f "$BUILD_ROOT"/.build-changelog
fi
fi
if test -n "$VM_TYPE" -a -z "$RUNNING_IN_VM"; then
vm_first_stage
cleanup_and_exit 0
fi
if test "$DO_INIT" = true ; then
start_time=`date +%s`
#
# create legacy .buildenv file
#
test -z "$INCARNATION" && INCARNATION=0
echo "BUILD_INCARNATION=$INCARNATION" > "$BUILD_ROOT"/.buildenv
CREATE_BUILD_BINARIES=
test "$BUILDTYPE" = preinstallimage && mkdir -p "$BUILD_ROOT"/.preinstall_image
egrep '^#[ ]*needsbinariesforbuild[ ]*$' >/dev/null <$MYSRCDIR/$RECIPEFILE && CREATE_BUILD_BINARIES=--create-build-binaries
test "$BUILDTYPE" = mock && CREATE_BUILD_BINARIES=--create-build-binaries
test "$BUILDTYPE" = debootstrap && CREATE_BUILD_BINARIES=--create-build-binaries
test "$BUILDTYPE" = livebuild && CREATE_BUILD_BINARIES=--create-build-binaries
test "$BUILDTYPE" = snapcraft && CREATE_BUILD_BINARIES=--create-build-binaries
set -- init_buildsystem --configdir "$CONFIG_DIR" --cachedir "$CACHE_DIR" "${definesnstuff[@]}" "${repos[@]}" $CLEAN_BUILD $DLNOSIGNATURE $KEEP_PACKS $USEHIGHERDEPS $USEUSEDFORBUILD $CREATE_BUILD_BINARIES $RPMLIST "$MYSRCDIR/$RECIPEFILE" $ADDITIONAL_PACKS
echo "$* ..."
start_time=`date +%s`
"$@" || cleanup_and_exit 1
check_exit
TIME_INSTALL=$(( `date +%s` - $start_time ))
unset start_time
# arbitrary limit of 10MB
if test $((`stat -f -c "%a*%S/1024/1024" "$BUILD_ROOT"`)) -lt 10; then
# ensure that old stat is not failing (RHEL4)
if df "$BUILD_ROOT" 2>/dev/null | grep -q "100%"; then
df -h "$BUILD_ROOT"
echo "build does not work on a completely full filesystem"
cleanup_and_exit 1
fi
fi
mount -n -tproc none "$BUILD_ROOT"/proc || true
mount -n -tdevpts -omode=0620,gid=5 none "$BUILD_ROOT"/dev/pts
copy_oldpackages
fi
# hack to process preinstallimages early
if test "$BUILDTYPE" = preinstallimage ; then
recipe_build
continue
fi
if test -z "$BUILD_DIST" -a -e "$BUILD_ROOT/.guessed_dist" ; then
read BUILD_DIST < "$BUILD_ROOT"/.guessed_dist
fi
#
# install dummy sign program if needed
#
test -f "$BUILD_ROOT"/usr/bin/sign_installed && mv "$BUILD_ROOT"/usr/bin/sign_installed "$BUILD_ROOT"/usr/bin/sign
if test -n "$SIGNDUMMY" ; then
test -f "$BUILD_ROOT"/usr/bin/sign && mv "$BUILD_ROOT"/usr/bin/sign "$BUILD_ROOT"/usr/bin/sign_installed
cp "$BUILD_DIR"/signdummy "$BUILD_ROOT"/usr/bin/sign
chmod 755 "$BUILD_ROOT"/usr/bin/sign
fi
#
# check if we want to build with the abuild user
#
BUILD_USER=abuild
if test -x "$BUILD_ROOT"/bin/rpm ; then
SUSE_VERSION=`chroot "$BUILD_ROOT" /bin/rpm --eval '%{?suse_version}' 2>/dev/null`
test -n "$SUSE_VERSION" -a "${SUSE_VERSION:-0}" -le 1020 && BUILD_USER=root
fi
if test "$BUILD_USER" = abuild ; then
egrep '^#[ ]*needsrootforbuild[ ]*$' >/dev/null <$RECIPEFILE && BUILD_USER=root
else
egrep '^#[ ]*norootforbuild[ ]*$' >/dev/null <$RECIPEFILE && BUILD_USER=abuild
fi
test -n "$NOROOTFORBUILD" && BUILD_USER=abuild
# appliance builds must run as root
if test "$BUILDTYPE" = kiwi ; then
imagetype=$(perl -I$BUILD_DIR -MBuild::Kiwi -e Build::Kiwi::show $RECIPEFILE imagetype)
test "$imagetype" = product || BUILD_USER=root
fi
# fixup passwd/group
if test $BUILD_USER = abuild ; then
if ! egrep '^abuild:' >/dev/null <"$BUILD_ROOT"/etc/passwd ; then
echo "abuild:x:${ABUILD_UID}:${ABUILD_GID}:Autobuild:/home/abuild:/bin/bash" >>"$BUILD_ROOT"/etc/passwd
echo 'abuild:*:::::::' >>"$BUILD_ROOT"/etc/shadow # This is needed on Mandriva 2009
echo 'abuild:*::' >>"$BUILD_ROOT"/etc/gshadow # This is needed on Ubuntu
echo "abuild:x:${ABUILD_GID}:" >>"$BUILD_ROOT"/etc/group
mkdir -p "$BUILD_ROOT"/home/abuild
chown "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT"/home/abuild
else
if ! egrep "^abuild:x?:${ABUILD_UID}:${ABUILD_GID}" >/dev/null <"$BUILD_ROOT"/etc/passwd ; then
sed -i '/^abuild:/d' "$BUILD_ROOT"/etc/passwd
sed -i '/^abuild:/d' "$BUILD_ROOT"/etc/group
echo "abuild:x:${ABUILD_UID}:${ABUILD_GID}:Autobuild:/home/abuild:/bin/bash" >>"$BUILD_ROOT"/etc/passwd
echo "abuild:x:${ABUILD_GID}:" >>"$BUILD_ROOT"/etc/group
chown "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT"/home/abuild -R
fi
fi
if test -f "$BUILD_ROOT"/etc/shadow ; then
sed -i -e "s@^root::@root:*:@" "$BUILD_ROOT"/etc/shadow
fi
if test -f "$BUILD_ROOT"/etc/gshadow ; then
sed -i -e "s@^root::@root:*:@" "$BUILD_ROOT"/etc/gshadow
fi
BUILD_USER_ABUILD_USED=true
else
# building as root
ABUILD_UID=0
ABUILD_GID=0
if egrep '^abuild:' >/dev/null <"$BUILD_ROOT"/etc/passwd ; then
rm -rf "$BUILD_ROOT/home/abuild"
sed -i -e '/^abuild:/d' "$BUILD_ROOT"/etc/passwd
sed -i -e '/^abuild:/d' "$BUILD_ROOT"/etc/group
if test -f "$BUILD_ROOT"/etc/shadow ; then
sed -i -e '/^abuild:/d' "$BUILD_ROOT"/etc/shadow
fi
if test -f "$BUILD_ROOT"/etc/gshadow ; then
sed -i -e '/^abuild:/d' "$BUILD_ROOT"/etc/gshadow
fi
fi
fi
mount -n -tproc none "$BUILD_ROOT"/proc 2> /dev/null
mount -n -tdevpts -omode=0620,gid=5 none "$BUILD_ROOT"/dev/pts 2> /dev/null
# needed for POSIX semaphores
test -d "$BUILD_ROOT"/dev/shm || rm -f "$BUILD_ROOT"/dev/shm
mkdir -p "$BUILD_ROOT"/dev/shm
mount -n -ttmpfs none "$BUILD_ROOT"/dev/shm 2> /dev/null
if test -n "$RUNNING_IN_VM" ; then
if test -x /sbin/ip ; then
ip addr add 127.0.0.1/8 dev lo
ip addr add ::1/128 dev lo
ip link set lo up
else
ifconfig lo 127.0.0.1 up
ifconfig lo add ::1/128
fi
if test -n "$VM_TELNET"; then
VM_TELNET_DEVICE=$( cd /sys/class/net/; echo * )
VM_TELNET_DEVICE=${VM_TELNET_DEVICE#lo }
VM_TELNET_DEVICE=${VM_TELNET_DEVICE%% *}
if test -z "$VM_TELNET_DEVICE"; then
echo "ERROR: no network device found for telnet server"
cleanup_and_exit 1
fi
if test -x /sbin/ip ; then
ip addr add 10.0.2.15/8 dev ${VM_TELNET_DEVICE}
ip addr add ::1/24 dev ${VM_TELNET_DEVICE}
ip link set ${VM_TELNET_DEVICE} up
else
if ! test -x /sbin/ifconfig ; then
echo "ERROR: /usr/sbin/in.telnetd is not running, please specify right package via -x option"
cleanup_and_exit 1
fi
ifconfig ${VM_TELNET_DEVICE} 10.0.2.15 up
ifconfig ${VM_TELNET_DEVICE} add ::1/24
fi
fi
if test -n "$VM_NETDEVOPT"; then
let LASTIP="${VM_WORKER_NR:-0}"+10
if test -x /sbin/ip ; then
ip addr add 10.0.2.$LASTIP/24 dev eth0
ip link set eth0 up
else
ifconfig eth0 10.0.2.$LASTIP netmask 255.255.255.0 up
fi
route add default gw 10.0.2.2 eth0
fi
if test -n "$MYHOSTNAME" ; then
hostname "$MYHOSTNAME"
fi
if test -n "$VM_TELNET"; then
echo WARNING: telnet option used, setting up telnet server ${VM_TELNET_DEVICE}
if test -x /usr/sbin/in.telnetd; then
( /usr/sbin/in.telnetd -L /.build/telnet_login_wrapper -debug 23 & )
else
echo "ERROR: /usr/sbin/in.telnetd is not running, please specify right package via -x option"
cleanup_and_exit 1
fi
fi
fi
setupicecream
setupccache
# fill build directories with sources. Also sets TOPDIR
recipe_setup
# strip prefix from autogenerated files of source services.
for i in "$BUILD_ROOT"$TOPDIR/SOURCES/_service\:* ; do
mv "$i" "${i%/*}/${i##*:}"
done
RECIPEFILE="${RECIPEFILE##*:}"
# create .build.packages link
rm -f "$BUILD_ROOT"/.build.packages
ln -s ${TOPDIR#/} "$BUILD_ROOT"/.build.packages
# nasty hack to prevent rpath on known paths
# FIXME: do this only for suse
if test -d "$BUILD_ROOT/etc/profile.d" ; then
echo "export SUSE_IGNORED_RPATHS=/etc/ld.so.conf" > "$BUILD_ROOT/etc/profile.d/buildsystem.sh"
fi
cd "$BUILD_ROOT"$TOPDIR/SOURCES || cleanup_and_exit 1
for i in *.obscpio ; do
test -e "$i" || continue
echo "Unpacking $i ..."
echo "#!/bin/sh -e" > "$BUILD_ROOT"/.unpack.command
shellquote cd "$TOPDIR/SOURCES" >> "$BUILD_ROOT"/.unpack.command
echo >> "$BUILD_ROOT"/.unpack.command
echo -n 'cpio --extract --owner="'$BUILD_USER'" --unconditional --preserve-modification-time --make-directories <' >> "$BUILD_ROOT"/.unpack.command
shellquote "$i" >> "$BUILD_ROOT"/.unpack.command
echo >> "$BUILD_ROOT"/.unpack.command
shellquote rm -f "$i" >> "$BUILD_ROOT"/.unpack.command
echo >> "$BUILD_ROOT"/.unpack.command
chmod 0755 "$BUILD_ROOT"/.unpack.command
chroot "$BUILD_ROOT" su -c /.unpack.command - $BUILD_USER
rm -f "$BUILD_ROOT"/.unpack.command
done
if test -e _service; then
echo "Running build time source services..."
$BUILD_DIR/runservices --buildroot "$BUILD_ROOT" || cleanup_and_exit 1
fi
# get rid of old src dir, it is no longer needed and just wastes space
test "$MYSRCDIR" = "$BUILD_ROOT"/.build-srcdir && rm -rf "$MYSRCDIR"
# patch recipes
recipe_prepare
# hmmm
chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR"
echo -----------------------------------------------------------------
if test "$BUILD_USER" = root ; then
echo ----- building $RECIPEFILE
else
echo ----- building $RECIPEFILE "(user $BUILD_USER)"
fi
echo -----------------------------------------------------------------
echo -----------------------------------------------------------------
BUILD_SUCCEEDED=false
if test -n "$OVERLAY" ; then
copy_overlay
fi
if test -n "$RSYNCSRC" ; then
run_rsync
fi
start_time=`date +%s`
recipe_build
if test "$DO_STATISTICS" = 1; then
mkdir -p $TOPDIR/OTHER
echo "TIME_main_build: $(( `date +%s` - $start_time ))" >> $TOPDIR/OTHER/_statistics
fi
unset start_time
test "$BUILD_SUCCEEDED" = true || cleanup_and_exit 1
test -d "$SRCDIR" && cd "$SRCDIR"
done
if test -n "$RUNNING_IN_VM" -a -n "$DO_STATISTICS" ; then
touch /.build/_statistics.exit
fi
RPMS=`find "$BUILD_ROOT"/$TOPDIR/RPMS -type f -name "*.rpm" 2>/dev/null | sed 's/.*/\"&\"/g' || true`
DEBS=`find "$BUILD_ROOT"/$TOPDIR/DEBS -type f -name "*.deb" 2>/dev/null | sed 's/.*/\"&\"/g' || true`
if test -n "$RPMS" -a -n "$BUILD_USER_ABUILD_USED" ; then
recipe_check_file_owners
fi
if test -n "$RPMS" -a -d "$BUILD_ROOT/usr/lib/build/checks" ; then
export DO_RPM_REMOVE=true
# find package name
export PNAME=
for SRPM in "$BUILD_ROOT"/$TOPDIR/SRPMS/*src.rpm ; do
test -f "$SRPM" && PNAME=`rpm --nodigest --nosignature -qp --qf "%{NAME}" $SRPM`
done
mount -n -tproc none "$BUILD_ROOT"/proc 2> /dev/null
for CHECKSCRIPT in "$BUILD_ROOT"/usr/lib/build/checks/* ; do
echo "... running ${CHECKSCRIPT##*/}"
$CHECKSCRIPT || cleanup_and_exit 1
done
umount -n "$BUILD_ROOT"/proc 2>/dev/null || true
fi
# checkscripts may have deleted some binaries
RPMS=`find "$BUILD_ROOT"/$TOPDIR/RPMS -type f -name "*.rpm" 2>/dev/null | sed 's/.*/\"&\"/g' || true`
DEBS=`find "$BUILD_ROOT"/$TOPDIR/DEBS -type f -name "*.deb" 2>/dev/null | sed 's/.*/\"&\"/g' || true`
if test -n "$RPMS" -a "$DO_CHECKS" != false ; then
recipe_run_rpmlint
fi
if test \( -n "$RPMS" -o -n "$DEBS" \) -a -n "$CREATE_BASELIBS"; then
create_baselibs
fi
exitcode=0
# post build work
# TODO: don't hardcode. instead run scripts in a directory as it's done for the checks
if test -n "$RPMS" -a -d "$BUILD_ROOT/.build.oldpackages" ; then
recipe_compare_oldpackages
# no need to create deltas if the build is the same
if test ! -e "$BUILD_ROOT"/.build/.same_result_marker ; then
recipe_create_deltarpms
fi
fi
if test -n "$RUNNING_IN_VM" ; then
vm_wrapup_build $(recipe_resultdirs) OTHER
fi
echo
echo "$HOST finished \"build $RECIPEFILE\" at `date --utc`."
echo
cleanup_and_exit "$exitcode"
|