-
Notifications
You must be signed in to change notification settings - Fork 0
/
_log.txt
8048 lines (8046 loc) · 703 KB
/
_log.txt
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
[ 0s] Using BUILD_ROOT=/var/cache/obs/worker/root_18/.mount
[ 0s] Using BUILD_ARCH=riscv64
[ 0s] Doing kvm build in /var/cache/obs/worker/root_18/root
[ 0s]
[ 0s]
[ 0s] i03-ch2a started "build python-cotengra.spec" at Thu Mar 14 09:06:05 UTC 2024.
[ 0s]
[ 0s] Building python-cotengra-test for project 'home:wangyuxuan' repository 'openSUSE_Factory_RISCV' arch 'riscv64' srcmd5 'e42162f36cd584ca5873f5606cd1fa62'
[ 0s]
[ 0s] processing recipe /var/cache/obs/worker/root_18/.build-srcdir/python-cotengra.spec ...
[ 0s] running changelog2spec --target rpm --file /var/cache/obs/worker/root_18/.build-srcdir/python-cotengra.spec
[ 0s] init_buildsystem --configdir /var/run/obs/worker/18/build/configs --cachedir /var/cache/build --prepare --clean --rpmlist /var/cache/obs/worker/root_18/.build.rpmlist /var/cache/obs/worker/root_18/.build-srcdir/python-cotengra.spec build ...
[ 1s] cycle: rpm-config-SUSE -> rpm
[ 1s] breaking dependency rpm-config-SUSE -> rpm
[ 1s] [1/34] preinstalling filesystem...
[ 1s] [2/34] preinstalling permissions...
[ 1s] [3/34] preinstalling glibc...
[ 1s] [4/34] preinstalling diffutils...
[ 1s] [5/34] preinstalling fillup...
[ 1s] [6/34] preinstalling libacl1...
[ 1s] [7/34] preinstalling libattr1...
[ 1s] [8/34] preinstalling libbz2-1...
[ 1s] [9/34] preinstalling libcap2...
[ 1s] [10/34] preinstalling libgcc_s1...
[ 1s] [11/34] preinstalling libgpg-error0...
[ 1s] [12/34] preinstalling liblua5_4-5...
[ 1s] [13/34] preinstalling liblzma5...
[ 1s] [14/34] preinstalling libpcre2-8-0...
[ 1s] [15/34] preinstalling libpopt0...
[ 1s] [16/34] preinstalling libz1...
[ 1s] [17/34] preinstalling libzstd1...
[ 1s] [18/34] preinstalling attr...
[ 1s] [19/34] preinstalling libgcrypt20...
[ 1s] [20/34] preinstalling libncurses6...
[ 1s] [21/34] preinstalling libselinux1...
[ 1s] [22/34] preinstalling libelf1...
[ 1s] [23/34] preinstalling libreadline8...
[ 1s] [24/34] preinstalling sed...
[ 1s] [25/34] preinstalling tar...
[ 1s] [26/34] preinstalling bash...
[ 1s] [27/34] preinstalling bash-sh...
[ 1s] [28/34] preinstalling qemu-linux-user...
[ 2s] [29/34] preinstalling grep...
[ 2s] [30/34] preinstalling pam...
[ 2s] [31/34] preinstalling coreutils...
[ 2s] [32/34] preinstalling aaa_base...
[ 2s] [33/34] preinstalling rpm-config-SUSE...
[ 2s] [34/34] preinstalling rpm...
[ 2s]
[ 2s] [1/9] preinstalling kernel-obs-build...
[ 2s] [2/9] preinstalling libblkid1...
[ 2s] [3/9] preinstalling libcrypt1...
[ 2s] [4/9] preinstalling libdb-4_8...
[ 2s] [5/9] preinstalling libsmartcols1...
[ 2s] [6/9] preinstalling libuuid1...
[ 2s] [7/9] preinstalling libmount1...
[ 2s] [8/9] preinstalling perl-base...
[ 2s] [9/9] preinstalling util-linux...
[ 2s] copying packages...
[ 3s] reordering...cycle: libncurses6 -> terminfo-base
[ 3s] breaking dependency terminfo-base -> libncurses6
[ 3s] cycle: binutils -> libctf0
[ 3s] breaking dependency binutils -> libctf0
[ 3s] cycle: python310-base -> libpython3_10-1_0
[ 3s] breaking dependency python310-base -> libpython3_10-1_0
[ 3s] cycle: python311-base -> libpython3_11-1_0
[ 3s] breaking dependency python311-base -> libpython3_11-1_0
[ 3s] cycle: python312-base -> libpython3_12-1_0
[ 3s] breaking dependency python312-base -> libpython3_12-1_0
[ 3s] cycle: python39-base -> libpython3_9-1_0
[ 3s] breaking dependency python39-base -> libpython3_9-1_0
[ 3s] cycle: rpm-config-SUSE -> rpm
[ 3s] breaking dependency rpm-config-SUSE -> rpm
[ 3s] done
[ 3s] Detected virtio-serial support
[ 3s] QEMU 7.1.0 detected: Skipping iothreads because of bsc#1204082
[ 4s] booting kvm...
[ 4s] ### VM INTERACTION START ###
[ 4s] Using virtio-serial support and enabling console input
[ 4s] /usr/bin/qemu-kvm -nodefaults -no-reboot -nographic -vga none -cpu host -M pc,accel=kvm,usb=off,dump-guest-core=off,vmport=off -sandbox on -bios /usr/share/qemu/qboot.rom -object rng-random,filename=/dev/random,id=rng0 -device virtio-rng-pci,rng=rng0 -runas qemu -net none -kernel /var/cache/obs/worker/root_18/.mount/boot/kernel -initrd /var/cache/obs/worker/root_18/.mount/boot/initrd -append root=/dev/disk/by-id/virtio-0 rootfstype=ext4 rootflags=noatime elevator=noop nmi_watchdog=0 rw ia32_emulation=1 oops=panic panic=1 quiet console=hvc0 init=/.build/initvm.x86_64 -m 16384 -drive file=/var/cache/obs/worker/root_18/root,format=raw,if=none,id=disk,cache=unsafe,aio=io_uring -device virtio-blk-pci,drive=disk,serial=0 -drive file=/var/cache/obs/worker/root_18/swap,format=raw,if=none,id=swap,cache=unsafe,aio=io_uring -device virtio-blk-pci,drive=swap,serial=1 -device virtio-serial,max_ports=2 -device virtconsole,chardev=virtiocon0 -chardev stdio,mux=on,id=virtiocon0 -mon chardev=virtiocon0 -chardev socket,id=monitor,server=on,wait=off,path=/var/cache/obs/worker/root_18/root.qemu/monitor -mon chardev=monitor,mode=readline -smp 4
[ 5s] [ 0.819040][ T1] systemd[1]: Failed to start Virtual Console Setup.
[ 5s] [[0;1;31mFAILED[0m] Failed to start [0;1;39mVirtual Console Setup[0m.
[ 5s] [ 1.071550] dracut-pre-udev[311]: sh: line 1: /usr/lib/module-init-tools/unblacklist: No such file or directory
[ 6s] [[0;1;31mFAILED[0m] Failed to start [0;1;39mVirtual Console Setup[0m.
[ 7s] ### VM INTERACTION END ###
[ 7s] 2nd stage started in virtual machine
[ 7s] machine type: riscv64
[ 7s] Linux version: 6.7.9-1-default #1 SMP PREEMPT_DYNAMIC Thu Mar 7 06:07:11 UTC 2024 (6049de6)
[ 7s] Time: Thu Mar 14 09:06:11 UTC 2024
[ 7s] Increasing log level from now on...
[ 7s] [ 2.796439][ T411] sysrq: Changing Loglevel
[ 7s] [ 2.796530][ T411] sysrq: Loglevel set to 4
[ 7s] Enable sysrq operations
[ 7s] Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
[ 7s] no label, UUID=56ac12e9-a7d7-4a1a-a761-35a9c146bb3e
[ 7s] swapon: /dev/vdb: found signature [pagesize=4096, signature=swap]
[ 7s] swapon: /dev/vdb: pagesize=4096, swapsize=4294967296, devsize=4294967296
[ 7s] swapon /dev/vdb
[ 8s] WARNING: udev not running, creating extra device nodes
[ 8s] logging output to //.build.log...
[ 8s] processing recipe /.build-srcdir/python-cotengra.spec ...
[ 8s] init_buildsystem --configdir /.build/configs --cachedir /var/cache/build /.build-srcdir/python-cotengra.spec build ...
[ 8s] initializing rpm db...
[ 9s] querying package ids...
[ 22s] [1/396] cumulate compat-usrmerge-tools-84.87-5.4
[ 22s] [2/396] cumulate crypto-policies-20230920.570ea89-3.1
[ 22s] [3/396] cumulate file-magic-5.45-2.1
[ 22s] [4/396] cumulate kernel-obs-build-6.7.9-1.1
[ 22s] [5/396] cumulate pkgconf-m4-2.1.1-1.1
[ 22s] [6/396] cumulate python-rpm-macros-20240202.501440e-1.1
[ 22s] [7/396] cumulate python310-pyparsing-3.1.1-2.1
[ 22s] [8/396] cumulate python312-pyparsing-3.1.1-2.1
[ 22s] [9/396] cumulate python39-pyparsing-3.1.1-2.1
[ 22s] [10/396] cumulate system-user-root-20190513-2.3
[ 22s] [11/396] cumulate filesystem-84.87-15.1
[ 22s] [12/396] cumulate glibc-2.39-3.1
[ 22s] [13/396] cumulate diffutils-3.10-1.2
[ 22s] [14/396] cumulate fillup-1.42-281.1
[ 22s] [15/396] cumulate libXau6-1.0.11-1.2
[ 22s] [16/396] cumulate libacl1-2.3.2-1.1
[ 22s] [17/396] cumulate libalternatives1-1.2+30.a5431e9-1.1
[ 22s] [18/396] cumulate libatomic1-14.0.1+git8957-1.1
[ 22s] [19/396] cumulate libattr1-2.5.2-1.1
[ 22s] [20/396] cumulate libaudit1-3.1.1-1.2
[ 22s] [21/396] cumulate libblkid1-2.39.3-4.1
[ 22s] [22/396] cumulate libbrotlicommon1-1.1.0-1.1
[ 22s] [23/396] cumulate libbz2-1-1.0.8-5.2
[ 22s] [24/396] cumulate libcap-ng0-0.8.4-1.2
[ 22s] [25/396] cumulate libcap2-2.69-1.2
[ 22s] [26/396] cumulate libcrypt1-4.4.36-1.2
[ 22s] [27/396] cumulate libeconf0-0.6.2-1.1
[ 22s] [28/396] cumulate libexpat1-2.6.1-1.1
[ 22s] [29/396] cumulate libffi8-3.4.4-2.2
[ 22s] [30/396] cumulate libgcc_s1-14.0.1+git8957-1.1
[ 22s] [31/396] cumulate libgdbm6-1.23-3.2
[ 22s] [32/396] cumulate libgmp10-6.3.0-3.1
[ 22s] [33/396] cumulate libgomp1-14.0.1+git8957-1.1
[ 22s] [34/396] cumulate libgpg-error0-1.48-1.1
[ 22s] [35/396] cumulate libitm1-14.0.1+git8957-1.1
[ 22s] [36/396] cumulate libjbig2-2.1-5.1
[ 22s] [37/396] cumulate libjpeg8-8.3.2-79.1
[ 22s] [38/396] cumulate liblcms2-2-2.16-1.1
[ 22s] [39/396] cumulate liblua5_4-5-5.4.6-3.2
[ 22s] [40/396] cumulate liblzma5-5.6.0-1.1
[ 22s] [41/396] cumulate libmpdec3-2.5.1-2.3
[ 22s] [42/396] cumulate libopenjp2-7-2.5.2-1.1
[ 22s] [43/396] cumulate libpcre2-8-0-10.43-1.1
[ 22s] [44/396] cumulate libpkgconf4-2.1.1-1.1
[ 22s] [45/396] cumulate libpopt0-1.19-1.3
[ 22s] [46/396] cumulate libseccomp2-2.5.5-1.2
[ 22s] [47/396] cumulate libsharpyuv0-1.3.2-2.1
[ 22s] [48/396] cumulate libsmartcols1-2.39.3-4.1
[ 22s] [49/396] cumulate libsqlite3-0-3.44.2-1.1
[ 22s] [50/396] cumulate libuuid1-2.39.3-4.1
[ 22s] [51/396] cumulate libyaml-0-2-0.2.5-2.2
[ 22s] [52/396] cumulate libz1-1.3.1-1.1
[ 22s] [53/396] cumulate libzstd1-1.5.5-5.2
[ 22s] [54/396] cumulate patch-2.7.6-7.1
[ 22s] [55/396] cumulate update-alternatives-1.22.5-1.1
[ 22s] [56/396] cumulate alts-1.2+30.a5431e9-1.1
[ 22s] [57/396] cumulate attr-2.5.2-1.1
[ 22s] [58/396] cumulate libbrotlidec1-1.1.0-1.1
[ 22s] [59/396] cumulate libctf-nobfd0-2.42-2.1
[ 22s] [60/396] cumulate libgcrypt20-1.10.3-3.2
[ 22s] [61/396] cumulate libgdbm_compat4-1.23-3.2
[ 22s] [62/396] cumulate libgfortran5-14.0.1+git8957-1.1
[ 22s] [63/396] cumulate libimagequant0-2.18.0-1.2
[ 22s] [64/396] cumulate libisl23-0.26-1.2
[ 22s] [65/396] cumulate libmpfr6-4.2.1-1.2
[ 22s] [66/396] cumulate libpng16-16-1.6.43-1.1
[ 22s] [67/396] cumulate libselinux1-3.6-1.2
[ 22s] [68/396] cumulate libstdc++6-14.0.1+git8957-1.1
[ 22s] [69/396] cumulate libsystemd0-mini-254.9-2.1
[ 22s] [70/396] cumulate libwebp7-1.3.2-2.1
[ 22s] [71/396] cumulate libxcb1-1.16.1-2.1
[ 22s] [72/396] cumulate perl-base-5.38.2-2.1
[ 22s] [73/396] cumulate pkgconf-2.1.1-1.1
[ 22s] [74/396] cumulate chkstat-1699_20240307-1.1
[ 22s] [75/396] cumulate libelf1-0.190-1.2
[ 22s] [76/396] cumulate libfdisk1-2.39.3-4.1
[ 23s] [77/396] cumulate libopenssl3-3.1.4-5.1
[ 23s] [78/396] cumulate libmagic1-5.45-2.1
[ 23s] [79/396] cumulate build-mkbaselibs-20240221-1.1
[ 23s] [80/396] cumulate rpm-build-perl-4.19.1.1-3.1
[ 23s] [81/396] cumulate dwz-0.15-3.1
[ 23s] [82/396] cumulate findutils-4.9.0-4.1
[ 23s] [83/396] cumulate libprocps8-3.3.17-17.1
[ 23s] [84/396] cumulate libwebpdemux2-1.3.2-2.1
[ 23s] [85/396] cumulate libwebpmux3-1.3.2-2.1
[ 23s] [86/396] cumulate fdupes-2.2.1-1.3
[ 23s] [87/396] cumulate file-5.45-2.1
[ 23s] [88/396] cumulate libasan8-14.0.1+git8957-1.1
[ 23s] [89/396] cumulate libdb-4_8-4.8.30-43.1
[ 23s] [90/396] cumulate libmount1-2.39.3-4.1
[ 23s] [91/396] cumulate libmpc3-1.3.1-1.4
[ 23s] [92/396] cumulate libubsan1-14.0.1+git8957-1.1
[ 23s] [93/396] cumulate sed-4.9-2.2
[ 23s] [94/396] cumulate tar-1.35-2.1
[ 23s] [95/396] cumulate libfreetype6-2.13.2-2.1
[ 23s] [96/396] cumulate libdw1-0.190-1.2
[ 23s] [97/396] cumulate libtiff6-4.6.0-4.1
[ 23s] [98/396] cumulate libasm1-0.190-1.2
[ 23s] [99/396] cumulate cpp13-13.2.1+git8285-2.1
[ 23s] [100/396] cumulate perl-5.38.2-2.1
[ 23s] [101/396] cumulate brp-check-suse-84.87+git20230324.8680ce4-1.1
[ 23s] [102/396] cumulate terminfo-base-6.4.20240224-32.1
[ 23s] [103/396] cumulate libncurses6-6.4.20240224-32.1
[ 23s] [104/396] cumulate libreadline8-8.2.10-1.2
[ 23s] [105/396] cumulate ncurses-utils-6.4.20240224-32.1
[ 23s] [106/396] cumulate procps-3.3.17-17.1
[ 23s] [107/396] cumulate bash-5.2.26-11.1
[ 23s] [108/396] cumulate bash-sh-5.2.26-11.1
[ 23s] [109/396] cumulate timezone-2024a-1.1
[ 23s] [110/396] cumulate qemu-linux-user-8.2.1-71.1
[ 23s] [111/396] cumulate cpio-2.15-2.1
[ 23s] [112/396] cumulate cpp-13-2.1
[ 23s] [113/396] cumulate gzip-1.13-3.1
[ 23s] [114/396] cumulate make-4.4.1-3.1
[ 23s] [115/396] cumulate which-2.21-5.3
[ 23s] [116/396] cumulate bzip2-1.0.8-5.2
[ 23s] [117/396] cumulate gettext-runtime-mini-0.22.5-1.1
[ 23s] [118/396] cumulate grep-3.11-2.1
[ 23s] [119/396] cumulate pkgconf-pkg-config-2.1.1-1.1
[ 23s] [120/396] cumulate rpm-config-SUSE-20240214-1.1
[ 23s] [121/396] cumulate xz-5.6.0-1.1
[ 23s] [122/396] cumulate gawk-5.3.0-1.2
[ 23s] [123/396] cumulate libblas3-3.9.0-9.1
[ 23s] [124/396] cumulate lua54-5.4.6-3.2
[ 23s] [125/396] cumulate binutils-2.42-2.1
[ 23s] [126/396] cumulate coreutils-9.4-5.1
[ 23s] [127/396] cumulate elfutils-0.190-1.2
[ 23s] [128/396] cumulate python310-base-3.10.13-5.1
[ 23s] [129/396] cumulate python311-base-3.11.8-4.1
[ 23s] [130/396] cumulate python312-base-3.12.2-4.1
[ 23s] [131/396] cumulate python39-base-3.9.18-5.1
[ 23s] [132/396] cumulate compat-usrmerge-build-84.87-5.4
[ 23s] [133/396] cumulate python310-Cycler-0.12.1-1.2
[ 23s] [134/396] cumulate python310-appdirs-1.4.4-5.2
[ 23s] [135/396] cumulate python310-attrs-23.2.0-1.4
[ 23s] [136/396] cumulate python310-autoray-0.6.8-1.2
[ 23s] [137/396] cumulate python310-click-8.1.7-1.2
[ 23s] [138/396] cumulate python310-cloudpickle-2.2.1-2.3
[ 23s] [139/396] cumulate python310-exceptiongroup-1.2.0-1.2
[ 23s] [140/396] cumulate python310-execnet-2.0.2-1.2
[ 23s] [141/396] cumulate python310-iniconfig-2.0.0-4.2
[ 23s] [142/396] cumulate python310-locket-1.0.0-4.6
[ 23s] [143/396] cumulate python310-olefile-0.46-4.3
[ 23s] [144/396] cumulate python310-packaging-23.2-1.4
[ 23s] [145/396] cumulate python310-pluggy-1.3.0-1.4
[ 23s] [146/396] cumulate python310-tomli-2.0.1-2.3
[ 23s] [147/396] cumulate python310-toolz-0.12.0-1.5
[ 23s] [148/396] cumulate python310-typing_extensions-4.10.0-1.1
[ 23s] [149/396] cumulate python310-zipp-3.17.0-1.2
[ 23s] [150/396] cumulate python311-Cycler-0.12.1-1.2
[ 23s] [151/396] cumulate python311-appdirs-1.4.4-5.2
[ 23s] [152/396] cumulate python311-attrs-23.2.0-1.4
[ 23s] [153/396] cumulate python311-autoray-0.6.8-1.2
[ 23s] [154/396] cumulate python311-click-8.1.7-1.2
[ 23s] [155/396] cumulate python311-cloudpickle-2.2.1-2.3
[ 23s] [156/396] cumulate python311-exceptiongroup-1.2.0-1.2
[ 23s] [157/396] cumulate python311-execnet-2.0.2-1.2
[ 23s] [158/396] cumulate python311-iniconfig-2.0.0-4.2
[ 23s] [159/396] cumulate python311-locket-1.0.0-4.6
[ 23s] [160/396] cumulate python311-olefile-0.46-4.3
[ 23s] [161/396] cumulate python311-packaging-23.2-1.3
[ 23s] [162/396] cumulate python311-pluggy-1.3.0-1.4
[ 23s] [163/396] cumulate python311-pyparsing-3.1.1-2.1
[ 23s] [164/396] cumulate python311-tomli-2.0.1-2.3
[ 23s] [165/396] cumulate python311-toolz-0.12.0-1.5
[ 23s] [166/396] cumulate python311-typing_extensions-4.10.0-1.1
[ 23s] [167/396] cumulate python311-zipp-3.17.0-1.2
[ 23s] [168/396] cumulate python312-Cycler-0.12.1-1.2
[ 23s] [169/396] cumulate python312-appdirs-1.4.4-5.2
[ 23s] [170/396] cumulate python312-attrs-23.2.0-1.4
[ 23s] [171/396] cumulate python312-autoray-0.6.8-1.2
[ 23s] [172/396] cumulate python312-click-8.1.7-1.2
[ 23s] [173/396] cumulate python312-cloudpickle-2.2.1-2.3
[ 23s] [174/396] cumulate python312-exceptiongroup-1.2.0-1.2
[ 23s] [175/396] cumulate python312-execnet-2.0.2-1.2
[ 23s] [176/396] cumulate python312-iniconfig-2.0.0-4.2
[ 23s] [177/396] cumulate python312-locket-1.0.0-4.6
[ 23s] [178/396] cumulate python312-olefile-0.46-4.3
[ 23s] [179/396] cumulate python312-packaging-23.2-1.4
[ 23s] [180/396] cumulate python312-pluggy-1.3.0-1.4
[ 23s] [181/396] cumulate python312-tomli-2.0.1-2.3
[ 23s] [182/396] cumulate python312-toolz-0.12.0-1.5
[ 23s] [183/396] cumulate python312-typing_extensions-4.10.0-1.1
[ 23s] [184/396] cumulate python312-zipp-3.17.0-1.2
[ 23s] [185/396] cumulate python39-Cycler-0.12.1-1.2
[ 23s] [186/396] cumulate python39-appdirs-1.4.4-5.2
[ 23s] [187/396] cumulate python39-attrs-23.2.0-1.4
[ 23s] [188/396] cumulate python39-autoray-0.6.8-1.2
[ 23s] [189/396] cumulate python39-click-8.1.7-1.2
[ 23s] [190/396] cumulate python39-cloudpickle-2.2.1-2.3
[ 23s] [191/396] cumulate python39-exceptiongroup-1.2.0-1.2
[ 23s] [192/396] cumulate python39-execnet-2.0.2-1.2
[ 23s] [193/396] cumulate python39-iniconfig-2.0.0-4.2
[ 23s] [194/396] cumulate python39-locket-1.0.0-4.6
[ 23s] [195/396] cumulate python39-olefile-0.46-4.3
[ 23s] [196/396] cumulate python39-packaging-23.2-1.4
[ 23s] [197/396] cumulate python39-pluggy-1.3.0-1.4
[ 23s] [198/396] cumulate python39-tomli-2.0.1-2.3
[ 23s] [199/396] cumulate python39-toolz-0.12.0-1.5
[ 23s] [200/396] cumulate python39-typing_extensions-4.10.0-1.1
[ 23s] [201/396] cumulate python39-zipp-3.17.0-1.2
[ 23s] [202/396] cumulate systemd-rpm-macros-24-1.2
[ 23s] [203/396] cumulate libpython3_10-1_0-3.10.13-5.1
[ 23s] [204/396] cumulate libpython3_11-1_0-3.11.8-4.1
[ 23s] [205/396] cumulate libpython3_12-1_0-3.12.2-4.1
[ 23s] [206/396] cumulate libpython3_9-1_0-3.9.18-5.1
[ 23s] [207/396] cumulate libxcrypt-devel-4.4.36-1.2
[ 23s] [208/396] cumulate linux-glibc-devel-6.7-1.2
[ 23s] [209/396] cumulate python310-MarkupSafe-2.1.5-1.1
[ 23s] [210/396] cumulate python310-pyrsistent-0.20.0-1.2
[ 23s] [211/396] cumulate python310-setuptools-69.0.3-1.1
[ 23s] [212/396] cumulate python310-six-1.16.0-4.2
[ 23s] [213/396] cumulate python311-MarkupSafe-2.1.5-1.1
[ 23s] [214/396] cumulate python311-pyrsistent-0.20.0-1.2
[ 23s] [215/396] cumulate python311-setuptools-69.0.3-1.1
[ 23s] [216/396] cumulate python311-six-1.16.0-4.2
[ 23s] [217/396] cumulate python312-MarkupSafe-2.1.5-1.1
[ 23s] [218/396] cumulate python312-pyrsistent-0.20.0-1.2
[ 23s] [219/396] cumulate python312-setuptools-69.0.3-1.1
[ 23s] [220/396] cumulate python312-six-1.16.0-4.2
[ 23s] [221/396] cumulate python39-MarkupSafe-2.1.5-1.1
[ 23s] [222/396] cumulate python39-pyrsistent-0.20.0-1.2
[ 23s] [223/396] cumulate python39-setuptools-69.0.3-1.1
[ 23s] [224/396] cumulate python39-six-1.16.0-4.2
[ 23s] [225/396] cumulate glibc-locale-base-2.39-3.1
[ 23s] [226/396] cumulate libctf0-2.42-2.1
[ 23s] [227/396] cumulate python310-PyYAML-6.0.1-3.1
[ 23s] [228/396] cumulate python310-psutil-5.9.7-1.2
[ 23s] [229/396] cumulate python310-pybind11-2.11.1-1.2
[ 23s] [230/396] cumulate python310-pytz-2023.4-1.1
[ 23s] [231/396] cumulate python310-rpds-py-0.7.1-2.3
[ 23s] [232/396] cumulate python310-tqdm-4.66.1-3.2
[ 23s] [233/396] cumulate python310-wheel-0.42.0-1.2
[ 23s] [234/396] cumulate python311-PyYAML-6.0.1-3.1
[ 23s] [235/396] cumulate python311-psutil-5.9.7-1.2
[ 23s] [236/396] cumulate python311-pybind11-2.11.1-1.2
[ 23s] [237/396] cumulate python311-pytz-2023.4-1.1
[ 23s] [238/396] cumulate python311-rpds-py-0.7.1-2.3
[ 23s] [239/396] cumulate python311-tqdm-4.66.1-3.2
[ 23s] [240/396] cumulate python311-wheel-0.42.0-1.2
[ 23s] [241/396] cumulate python312-PyYAML-6.0.1-3.1
[ 23s] [242/396] cumulate python312-psutil-5.9.7-1.2
[ 23s] [243/396] cumulate python312-pybind11-2.11.1-1.2
[ 23s] [244/396] cumulate python312-pytz-2023.4-1.1
[ 23s] [245/396] cumulate python312-rpds-py-0.7.1-2.3
[ 23s] [246/396] cumulate python312-tqdm-4.66.1-3.2
[ 23s] [247/396] cumulate python312-wheel-0.42.0-1.2
[ 23s] [248/396] cumulate python39-PyYAML-6.0.1-3.1
[ 23s] [249/396] cumulate python39-psutil-5.9.7-1.2
[ 23s] [250/396] cumulate python39-pybind11-2.11.1-1.2
[ 23s] [251/396] cumulate python39-pytz-2023.4-1.1
[ 23s] [252/396] cumulate python39-rpds-py-0.7.1-2.3
[ 23s] [253/396] cumulate python39-tqdm-4.66.1-3.2
[ 23s] [254/396] cumulate python39-wheel-0.42.0-1.2
[ 23s] [255/396] cumulate libcblas3-3.9.0-9.1
[ 23s] [256/396] cumulate python310-3.10.13-5.1
[ 23s] [257/396] cumulate python310-kiwisolver-1.4.5-1.2
[ 23s] [258/396] cumulate python310-pip-23.3.2-3.1
[ 23s] [259/396] cumulate python311-3.11.8-4.1
[ 23s] [260/396] cumulate python311-kiwisolver-1.4.5-1.2
[ 23s] [261/396] cumulate python311-pip-23.3.2-3.1
[ 23s] [262/396] cumulate python312-3.12.2-4.1
[ 23s] [263/396] cumulate python312-kiwisolver-1.4.5-1.2
[ 23s] [264/396] cumulate python312-pip-23.3.2-3.1
[ 23s] [265/396] cumulate python39-3.9.18-5.1
[ 23s] [266/396] cumulate python39-kiwisolver-1.4.5-1.2
[ 23s] [267/396] cumulate python39-pip-23.3.2-3.1
[ 23s] [268/396] cumulate gettext-tools-mini-0.22.5-1.1
[ 23s] [269/396] cumulate libopenblas_serial0-0.3.26-1.1
[ 23s] [270/396] cumulate permissions-config-1699_20240307-1.1
[ 23s] [271/396] cumulate polkit-default-privs-1550+20240307.987ebab-1.1
[ 23s] [272/396] cumulate python310-gmpy2-2.1.5-6.2
[ 23s] [273/396] cumulate python311-gmpy2-2.1.5-6.2
[ 23s] [274/396] cumulate python312-gmpy2-2.1.5-6.2
[ 23s] [275/396] cumulate python39-gmpy2-2.1.5-6.2
[ 23s] [276/396] cumulate liblapack3-3.9.0-9.1
[ 23s] [277/396] cumulate aaa_base-84.87+git20240202.9526d46-1.1
[ 23s] [278/396] cumulate debugedit-5.0-5.3
[ 23s] [279/396] cumulate rpm-4.19.1.1-3.1
[ 23s] [280/396] cumulate aaa_base-malloccheck-84.87+git20240202.9526d46-1.1
[ 23s] [281/396] cumulate permissions-1699_20240307-1.1
[ 23s] [282/396] cumulate python310-Jinja2-3.1.3-2.2
[ 23s] [283/396] cumulate python310-importlib-metadata-7.0.1-1.2
[ 23s] [284/396] cumulate python310-python-dateutil-2.9.0.post0-1.1
[ 23s] [285/396] cumulate python311-Jinja2-3.1.3-2.2
[ 23s] [286/396] cumulate python311-importlib-metadata-7.0.1-1.2
[ 23s] [287/396] cumulate python311-python-dateutil-2.9.0.post0-1.1
[ 23s] [288/396] cumulate python312-Jinja2-3.1.3-2.2
[ 23s] [289/396] cumulate python312-importlib-metadata-7.0.1-1.2
[ 23s] [290/396] cumulate python312-python-dateutil-2.9.0.post0-1.1
[ 23s] [291/396] cumulate python39-Jinja2-3.1.3-2.2
[ 23s] [292/396] cumulate python39-importlib-metadata-7.0.1-1.2
[ 23s] [293/396] cumulate python39-importlib-resources-6.1.1-1.2
[ 23s] [294/396] cumulate python39-python-dateutil-2.9.0.post0-1.1
[ 23s] [295/396] cumulate glibc-devel-2.39-3.1
[ 23s] [296/396] cumulate python310-mpmath-1.3.0-1.2
[ 23s] [297/396] cumulate python310-partd-1.4.1-1.2
[ 23s] [298/396] cumulate python310-referencing-0.33.0-1.4
[ 23s] [299/396] cumulate python311-mpmath-1.3.0-1.2
[ 23s] [300/396] cumulate python311-partd-1.4.1-1.2
[ 23s] [301/396] cumulate python311-referencing-0.33.0-1.4
[ 23s] [302/396] cumulate python312-mpmath-1.3.0-1.2
[ 23s] [303/396] cumulate python312-partd-1.4.1-1.2
[ 23s] [304/396] cumulate python312-referencing-0.33.0-1.4
[ 23s] [305/396] cumulate python39-mpmath-1.3.0-1.2
[ 23s] [306/396] cumulate python39-partd-1.4.1-1.2
[ 23s] [307/396] cumulate python39-referencing-0.33.0-1.4
[ 23s] [308/396] cumulate python311-setuptools_scm-8.0.4-1.3
[ 23s] [309/396] cumulate python312-setuptools_scm-8.0.4-1.3
[ 23s] [310/396] cumulate python-rpm-packaging-20210526+a18ca48-1.4
[ 23s] [311/396] cumulate python310-setuptools_scm-8.0.4-1.3
[ 23s] [312/396] cumulate python39-setuptools_scm-8.0.4-1.3
[ 23s] [313/396] cumulate rpmlint-mini-2.5.0+git20240226.8b18627-15.34
[ 23s] [314/396] cumulate python310-fs-2.4.16-3.2
[ 23s] [315/396] cumulate python311-fs-2.4.16-3.2
[ 23s] [316/396] cumulate python312-fs-2.4.16-3.2
[ 23s] [317/396] cumulate python39-fs-2.4.16-3.2
[ 23s] [318/396] cumulate python310-numpy-1.26.2-4.2
[ 23s] [319/396] cumulate python311-numpy-1.26.2-4.2
[ 23s] [320/396] cumulate python312-numpy-1.26.2-4.2
[ 23s] [321/396] cumulate python39-numpy-1.26.2-4.2
[ 23s] [322/396] cumulate build-compare-20230617T171717.50241a8-1.1
[ 23s] [323/396] cumulate librpmbuild10-4.19.1.1-3.1
[ 23s] [324/396] cumulate python310-Pillow-10.2.0-1.2
[ 23s] [325/396] cumulate python311-Pillow-10.2.0-1.2
[ 23s] [326/396] cumulate python312-Pillow-10.2.0-1.2
[ 23s] [327/396] cumulate python39-Pillow-10.2.0-1.2
[ 23s] [328/396] cumulate python310-jsonschema-specifications-2023.12.1-1.2
[ 23s] [329/396] cumulate python310-opt-einsum-3.3.0-3.1
[ 23s] [330/396] cumulate python311-jsonschema-specifications-2023.12.1-1.2
[ 23s] [331/396] cumulate python311-opt-einsum-3.3.0-3.1
[ 23s] [332/396] cumulate python312-jsonschema-specifications-2023.12.1-1.2
[ 23s] [333/396] cumulate python312-opt-einsum-3.3.0-3.1
[ 23s] [334/396] cumulate python39-jsonschema-specifications-2023.12.1-1.2
[ 23s] [335/396] cumulate python39-opt-einsum-3.3.0-3.1
[ 23s] [336/396] cumulate python310-FontTools-4.47.2-2.1
[ 23s] [337/396] cumulate python311-FontTools-4.47.2-2.1
[ 23s] [338/396] cumulate python312-FontTools-4.47.2-2.1
[ 23s] [339/396] cumulate python39-FontTools-4.47.2-2.1
[ 23s] [340/396] cumulate python310-contourpy-1.0.7-1.3
[ 23s] [341/396] cumulate python311-contourpy-1.0.7-1.3
[ 23s] [342/396] cumulate python312-contourpy-1.0.7-1.3
[ 23s] [343/396] cumulate python39-contourpy-1.0.7-1.3
[ 23s] [344/396] cumulate python310-pandas-2.2.1-2.1
[ 23s] [345/396] cumulate python311-pandas-2.2.1-2.1
[ 23s] [346/396] cumulate python312-pandas-2.2.1-2.1
[ 23s] [347/396] cumulate python39-pandas-2.2.1-2.1
[ 23s] [348/396] cumulate pam-1.6.0-4.1
[ 23s] [349/396] cumulate post-build-checks-84.87+git20240215.a1dbe5c-1.1
[ 23s] [350/396] cumulate python310-scipy-1.11.4-3.1
[ 23s] [351/396] cumulate python311-scipy-1.11.4-3.1
[ 23s] [352/396] cumulate python312-scipy-1.11.4-3.1
[ 23s] [353/396] cumulate python39-scipy-1.11.4-3.1
[ 23s] [354/396] cumulate python310-pytest-7.4.4-1.2
[ 23s] [355/396] cumulate python311-pytest-7.4.4-1.2
[ 23s] [356/396] cumulate python312-pytest-7.4.4-1.2
[ 23s] [357/396] cumulate python39-pytest-7.4.4-1.2
[ 23s] [358/396] cumulate gcc13-13.2.1+git8285-2.1
[ 23s] [359/396] cumulate gcc13-PIE-13.2.1+git8285-2.1
[ 23s] [360/396] cumulate gcc-13-2.1
[ 23s] [361/396] cumulate python310-pytest-xdist-3.5.0-1.4
[ 23s] [362/396] cumulate python311-pytest-xdist-3.5.0-1.4
[ 23s] [363/396] cumulate python312-pytest-xdist-3.5.0-1.4
[ 23s] [364/396] cumulate python39-pytest-xdist-3.5.0-1.4
[ 23s] [365/396] cumulate python310-jsonschema-4.21.1-1.4
[ 23s] [366/396] cumulate python311-jsonschema-4.21.1-1.4
[ 23s] [367/396] cumulate python312-jsonschema-4.21.1-1.4
[ 23s] [368/396] cumulate python39-jsonschema-4.21.1-1.4
[ 23s] [369/396] cumulate python310-matplotlib-3.8.2-5.1
[ 23s] [370/396] cumulate python311-matplotlib-3.8.2-5.1
[ 23s] [371/396] cumulate python312-matplotlib-3.8.2-5.1
[ 23s] [372/396] cumulate python39-matplotlib-3.8.2-5.1
[ 23s] [373/396] cumulate util-linux-2.39.3-4.1
[ 23s] [374/396] cumulate gcc-PIE-13-2.1
[ 23s] [375/396] cumulate python310-seaborn-0.13.2-1.1
[ 23s] [376/396] cumulate python311-seaborn-0.13.2-1.1
[ 23s] [377/396] cumulate python312-seaborn-0.13.2-1.1
[ 23s] [378/396] cumulate python39-seaborn-0.13.2-1.1
[ 23s] [379/396] cumulate fuse-2.9.9-6.2
[ 23s] [380/396] cumulate python310-networkx-3.1-1.2
[ 23s] [381/396] cumulate python311-networkx-3.1-1.2
[ 23s] [382/396] cumulate python312-networkx-3.1-1.2
[ 23s] [383/396] cumulate python39-networkx-3.1-1.2
[ 23s] [384/396] cumulate python310-altair-5.2.0-1.1
[ 23s] [385/396] cumulate python311-altair-5.2.0-1.1
[ 23s] [386/396] cumulate python312-altair-5.2.0-1.1
[ 23s] [387/396] cumulate python39-altair-5.2.0-1.1
[ 23s] [388/396] cumulate rpm-build-4.19.1.1-3.1
[ 23s] [389/396] cumulate python310-fsspec-2024.2.0-1.1
[ 23s] [390/396] cumulate python311-fsspec-2024.2.0-1.1
[ 23s] [391/396] cumulate python312-fsspec-2024.2.0-1.1
[ 23s] [392/396] cumulate python39-fsspec-2024.2.0-1.1
[ 23s] [393/396] cumulate python310-dask-2024.2.1-1.1
[ 23s] [394/396] cumulate python311-dask-2024.2.1-1.1
[ 23s] [395/396] cumulate python312-dask-2024.2.1-1.1
[ 23s] [396/396] cumulate python39-dask-2024.2.1-1.1
[ 23s] now installing cumulated packages
[ 25s] Preparing... ########################################
[ 25s] Updating / installing...
[ 25s] system-user-root-20190513-2.3 ########################################
[ 25s] python39-pyparsing-3.1.1-2.1 ########################################
[ 25s] python312-pyparsing-3.1.1-2.1 ########################################
[ 25s] python310-pyparsing-3.1.1-2.1 ########################################
[ 25s] python-rpm-macros-20240202.501440e-1.1########################################
[ 25s] pkgconf-m4-2.1.1-1.1 ########################################
[ 26s] file-magic-5.45-2.1 ########################################
[ 26s] crypto-policies-20230920.570ea89-3.1 ########################################
[ 26s] compat-usrmerge-tools-84.87-5.4 ########################################
[ 26s] filesystem-84.87-15.1 ########################################
[ 26s] glibc-2.39-3.1 ########################################
[ 26s] libgcc_s1-14.0.1+git8957-1.1 ########################################
[ 26s] timezone-2024a-1.1 ########################################
[ 27s] libstdc++6-14.0.1+git8957-1.1 ########################################
[ 27s] terminfo-base-6.4.20240224-32.1 ########################################
[ 27s] ncurses-utils-6.4.20240224-32.1 ########################################
[ 27s] libncurses6-6.4.20240224-32.1 ########################################
[ 27s] libreadline8-8.2.10-1.2 ########################################
[ 27s] bash-5.2.26-11.1 ########################################
[ 27s] bash-sh-5.2.26-11.1 ########################################
[ 27s] libz1-1.3.1-1.1 ########################################
[ 27s] update-alternatives-1.22.5-1.1 ########################################
[ 27s] libgmp10-6.3.0-3.1 ########################################
[ 27s] libbz2-1-1.0.8-5.2 ########################################
[ 27s] libcrypt1-4.4.36-1.2 ########################################
[ 27s] liblzma5-5.6.0-1.1 ########################################
[ 28s] libmpfr6-4.2.1-1.2 ########################################
[ 28s] libzstd1-1.5.5-5.2 ########################################
[ 28s] libelf1-0.190-1.2 ########################################
[ 28s] libgfortran5-14.0.1+git8957-1.1 ########################################
[ 28s] libblas3-3.9.0-9.1 ########################################
[ 28s] update-alternatives: using /usr/lib64/blas/libblas.so.3 to provide /usr/lib64/libblas.so.3 (libblas.so.3_riscv64) in auto mode
[ 28s] libmpc3-1.3.1-1.4 ########################################
[ 29s] perl-base-5.38.2-2.1 ########################################
[ 29s] libuuid1-2.39.3-4.1 ########################################
[ 29s] xz-5.6.0-1.1 ########################################
[ 29s] libcap2-2.69-1.2 ########################################
[ 29s] libjpeg8-8.3.2-79.1 ########################################
[ 29s] libcblas3-3.9.0-9.1 ########################################
[ 29s] update-alternatives: using /usr/lib64/blas/libcblas.so.3 to provide /usr/lib64/libcblas.so.3 (libcblas.so.3_riscv64) in auto mode
[ 29s] liblapack3-3.9.0-9.1 ########################################
[ 30s] update-alternatives: using /usr/lib64/lapack/liblapack.so.3 to provide /usr/lib64/liblapack.so.3 (liblapack.so.3_riscv64) in auto mode
[ 30s] libdw1-0.190-1.2 ########################################
[ 30s] gawk-5.3.0-1.2 ########################################
[ 30s] libopenssl3-3.1.4-5.1 ########################################
[ 30s] fillup-1.42-281.1 ########################################
[ 30s] libacl1-2.3.2-1.1 ########################################
[ 30s] libexpat1-2.6.1-1.1 ########################################
[ 31s] libffi8-3.4.4-2.2 ########################################
[ 31s] libgomp1-14.0.1+git8957-1.1 ########################################
[ 31s] libimagequant0-2.18.0-1.2 ########################################
[ 31s] liblcms2-2-2.16-1.1 ########################################
[ 31s] libmpdec3-2.5.1-2.3 ########################################
[ 31s] libopenjp2-7-2.5.2-1.1 ########################################
[ 31s] libsqlite3-0-3.44.2-1.1 ########################################
[ 31s] libyaml-0-2-0.2.5-2.2 ########################################
[ 31s] libmagic1-5.45-2.1 ########################################
[ 31s] cpio-2.15-2.1 ########################################
[ 31s] libblkid1-2.39.3-4.1 ########################################
[ 31s] liblua5_4-5-5.4.6-3.2 ########################################
[ 31s] libpopt0-1.19-1.3 ########################################
[ 31s] libsystemd0-mini-254.9-2.1 ########################################
[ 32s] chkstat-1699_20240307-1.1 ########################################
[ 32s] dwz-0.15-3.1 ########################################
[ 32s] libisl23-0.26-1.2 ########################################
[ 34s] cpp13-13.2.1+git8285-2.1 ########################################
[ 34s] diffutils-3.10-1.2 ########################################
[ 34s] libattr1-2.5.2-1.1 ########################################
[ 34s] libaudit1-3.1.1-1.2 ########################################
[ 34s] libeconf0-0.6.2-1.1 ########################################
[ 34s] libgdbm6-1.23-3.2 ########################################
[ 34s] libpcre2-8-0-10.43-1.1 ########################################
[ 34s] libselinux1-3.6-1.2 ########################################
[ 35s] coreutils-9.4-5.1 ########################################
[ 35s] sed-4.9-2.2 ########################################
[ 36s] libopenblas_serial0-0.3.26-1.1 ########################################
[ 36s] update-alternatives: using /usr/lib64/openblas-serial to provide /usr/lib64/openblas-default (openblas-default_riscv64) in auto mode
[ 36s] update-alternatives: using /usr/lib64/openblas-serial/libopenblas.so.0 to provide /usr/lib64/liblapacke.so.3 (liblapacke.so.3_riscv64) in auto mode
[ 36s] grep-3.11-2.1 ########################################
[ 36s] aaa_base-84.87+git20240202.9526d46-1.1########################################
[ 36s] Updating /etc/sysconfig/language ...
[ 37s] Updating /etc/sysconfig/proxy ...
[ 37s] Updating /etc/sysconfig/windowmanager ...
[ 37s] findutils-4.9.0-4.1 ########################################
[ 37s] aaa_base-malloccheck-84.87+git20240202########################################
[ 37s] systemd-rpm-macros-24-1.2 ########################################
[ 37s] linux-glibc-devel-6.7-1.2 ########################################
[ 38s] glibc-locale-base-2.39-3.1 ########################################
[ 38s] permissions-config-1699_20240307-1.1 ########################################
[ 38s] Updating /etc/sysconfig/security ...
[ 38s] Checking permissions and ownerships - using the permissions files
[ 39s] /usr/share/permissions/permissions
[ 39s] /usr/share/permissions/permissions.easy
[ 39s] /etc/permissions.local
[ 39s] /usr/sbin/unix2_chkpwd: setting to root:shadow 4755 (wrong owner/group root:root)
[ 39s] /usr/sbin/unix_chkpwd: setting to root:shadow 4755 (wrong owner/group root:root)
[ 39s] permissions-1699_20240307-1.1 ########################################
[ 39s] pam-1.6.0-4.1 ########################################
[ 39s] polkit-default-privs-1550+20240307.987########################################
[ 39s] Updating /etc/sysconfig/security ...
[ 40s] can't open /etc/polkit-1/rules.d/90-default-privs.rules.new: No such file or directory
[ 40s] warning: %post(polkit-default-privs-1550+20240307.987ebab-1.1.noarch) scriptlet failed, exit status 2
[ 40s] libmount1-2.39.3-4.1 ########################################
[ 40s] tar-1.35-2.1 ########################################
[ 40s] libgdbm_compat4-1.23-3.2 ########################################
[ 40s] cpp-13-2.1 ########################################
[ 40s] libprocps8-3.3.17-17.1 ########################################
[ 40s] procps-3.3.17-17.1 ########################################
[ 40s] lua54-5.4.6-3.2 ########################################
[ 40s] update-alternatives: using /usr/bin/lua5.4 to provide /usr/bin/lua (lua) in auto mode
[ 40s] libfdisk1-2.39.3-4.1 ########################################
[ 40s] libasm1-0.190-1.2 ########################################
[ 40s] elfutils-0.190-1.2 ########################################
[ 40s] rpm-build-perl-4.19.1.1-3.1 ########################################
[ 40s] bzip2-1.0.8-5.2 ########################################
[ 40s] libctf-nobfd0-2.42-2.1 ########################################
[ 44s] binutils-2.42-2.1 ########################################
[ 44s] update-alternatives: using /usr/bin/ld.bfd to provide /usr/bin/ld (ld) in auto mode
[ 44s] libctf0-2.42-2.1 ########################################
[ 44s] debugedit-5.0-5.3 ########################################
[ 44s] libpng16-16-1.6.43-1.1 ########################################
[ 44s] gzip-1.13-3.1 ########################################
[ 44s] make-4.4.1-3.1 ########################################
[ 44s] which-2.21-5.3 ########################################
[ 45s] gettext-runtime-mini-0.22.5-1.1 ########################################
[ 45s] gettext-tools-mini-0.22.5-1.1 ########################################
[ 45s] libasan8-14.0.1+git8957-1.1 ########################################
[ 46s] libdb-4_8-4.8.30-43.1 ########################################
[ 50s] perl-5.38.2-2.1 ########################################
[ 50s] libubsan1-14.0.1+git8957-1.1 ########################################
[ 50s] libXau6-1.0.11-1.2 ########################################
[ 50s] libxcb1-1.16.1-2.1 ########################################
[ 50s] libalternatives1-1.2+30.a5431e9-1.1 ########################################
[ 50s] alts-1.2+30.a5431e9-1.1 ########################################
[ 50s] libpython3_10-1_0-3.10.13-5.1 ########################################
[ 52s] python310-pip-23.3.2-3.1 ########################################
[ 54s] python310-base-3.10.13-5.1 ########################################
[ 54s] python310-3.10.13-5.1 ########################################
[ 57s] python310-numpy-1.26.2-4.2 ########################################
[ 57s] python310-packaging-23.2-1.4 ########################################
[ 57s] python310-attrs-23.2.0-1.4 ########################################
[ 57s] python310-toolz-0.12.0-1.5 ########################################
[ 57s] python310-setuptools-69.0.3-1.1 ########################################
[ 58s] python310-psutil-5.9.7-1.2 ########################################
[ 58s] python310-tomli-2.0.1-2.3 ########################################
[ 58s] python310-typing_extensions-4.10.0-1.1########################################
[ 58s] python310-six-1.16.0-4.2 ########################################
[ 58s] python310-python-dateutil-2.9.0.post0-########################################
[ 58s] python310-PyYAML-6.0.1-3.1 ########################################
[ 58s] python310-pytz-2023.4-1.1 ########################################
[ 64s] python310-pandas-2.2.1-2.1 ########################################
[ 64s] python310-rpds-py-0.7.1-2.3 ########################################
[ 64s] python310-referencing-0.33.0-1.4 ########################################
[ 64s] python310-jsonschema-specifications-20########################################
[ 64s] python310-contourpy-1.0.7-1.3 ########################################
[ 64s] python310-Cycler-0.12.1-1.2 ########################################
[ 64s] python310-appdirs-1.4.4-5.2 ########################################
[ 64s] python310-fs-2.4.16-3.2 ########################################
[ 65s] python310-click-8.1.7-1.2 ########################################
[ 65s] python310-cloudpickle-2.2.1-2.3 ########################################
[ 65s] python310-exceptiongroup-1.2.0-1.2 ########################################
[ 65s] python310-execnet-2.0.2-1.2 ########################################
[ 65s] python310-iniconfig-2.0.0-4.2 ########################################
[ 65s] python310-locket-1.0.0-4.6 ########################################
[ 65s] python310-partd-1.4.1-1.2 ########################################
[ 65s] python310-olefile-0.46-4.3 ########################################
[ 65s] python310-pluggy-1.3.0-1.4 ########################################
[ 65s] python310-zipp-3.17.0-1.2 ########################################
[ 65s] python310-importlib-metadata-7.0.1-1.2########################################
[ 65s] python310-pytest-7.4.4-1.2 ########################################
[ 65s] python310-MarkupSafe-2.1.5-1.1 ########################################
[ 65s] python310-Jinja2-3.1.3-2.2 ########################################
[ 65s] python310-pyrsistent-0.20.0-1.2 ########################################
[ 65s] python310-jsonschema-4.21.1-1.4 ########################################
[ 66s] python310-pybind11-2.11.1-1.2 ########################################
[ 71s] python310-scipy-1.11.4-3.1 ########################################
[ 72s] python310-FontTools-4.47.2-2.1 ########################################
[ 73s] python310-kiwisolver-1.4.5-1.2 ########################################
[ 73s] python310-gmpy2-2.1.5-6.2 ########################################
[ 73s] libpython3_11-1_0-3.11.8-4.1 ########################################
[ 74s] python311-pip-23.3.2-3.1 ########################################
[ 78s] python311-base-3.11.8-4.1 ########################################
[ 78s] python311-3.11.8-4.1 ########################################
[ 81s] python311-numpy-1.26.2-4.2 ########################################
[ 81s] python311-packaging-23.2-1.3 ########################################
[ 81s] python311-attrs-23.2.0-1.4 ########################################
[ 81s] python311-toolz-0.12.0-1.5 ########################################
[ 82s] python311-setuptools-69.0.3-1.1 ########################################
[ 82s] python311-psutil-5.9.7-1.2 ########################################
[ 82s] python311-pyparsing-3.1.1-2.1 ########################################
[ 82s] python311-typing_extensions-4.10.0-1.1########################################
[ 82s] python311-six-1.16.0-4.2 ########################################
[ 82s] python311-python-dateutil-2.9.0.post0-########################################
[ 82s] python311-PyYAML-6.0.1-3.1 ########################################
[ 82s] python311-pytz-2023.4-1.1 ########################################
[ 89s] python311-pandas-2.2.1-2.1 ########################################
[ 90s] python311-rpds-py-0.7.1-2.3 ########################################
[ 90s] python311-referencing-0.33.0-1.4 ########################################
[ 90s] python311-jsonschema-specifications-20########################################
[ 90s] python-rpm-packaging-20210526+a18ca48-########################################
[ 90s] python311-contourpy-1.0.7-1.3 ########################################
[ 90s] python311-Cycler-0.12.1-1.2 ########################################
[ 90s] python311-appdirs-1.4.4-5.2 ########################################
[ 90s] python311-fs-2.4.16-3.2 ########################################
[ 90s] python311-click-8.1.7-1.2 ########################################
[ 90s] python311-cloudpickle-2.2.1-2.3 ########################################
[ 90s] python311-exceptiongroup-1.2.0-1.2 ########################################
[ 90s] python311-execnet-2.0.2-1.2 ########################################
[ 90s] python311-iniconfig-2.0.0-4.2 ########################################
[ 90s] python311-locket-1.0.0-4.6 ########################################
[ 90s] python311-partd-1.4.1-1.2 ########################################
[ 90s] python311-olefile-0.46-4.3 ########################################
[ 90s] python311-pluggy-1.3.0-1.4 ########################################
[ 90s] python311-tomli-2.0.1-2.3 ########################################
[ 90s] python311-zipp-3.17.0-1.2 ########################################
[ 90s] python311-importlib-metadata-7.0.1-1.2########################################
[ 91s] python311-pytest-7.4.4-1.2 ########################################
[ 91s] python311-MarkupSafe-2.1.5-1.1 ########################################
[ 91s] python311-Jinja2-3.1.3-2.2 ########################################
[ 91s] python311-pyrsistent-0.20.0-1.2 ########################################
[ 91s] python311-jsonschema-4.21.1-1.4 ########################################
[ 92s] python311-pybind11-2.11.1-1.2 ########################################
[ 98s] python311-scipy-1.11.4-3.1 ########################################
[ 99s] python311-FontTools-4.47.2-2.1 ########################################
[ 99s] python311-kiwisolver-1.4.5-1.2 ########################################
[ 99s] python311-gmpy2-2.1.5-6.2 ########################################
[ 100s] libpython3_12-1_0-3.12.2-4.1 ########################################
[ 101s] python312-pip-23.3.2-3.1 ########################################
[ 104s] python312-base-3.12.2-4.1 ########################################
[ 104s] python312-3.12.2-4.1 ########################################
[ 107s] python312-numpy-1.26.2-4.2 ########################################
[ 107s] python312-packaging-23.2-1.4 ########################################
[ 107s] python312-attrs-23.2.0-1.4 ########################################
[ 107s] python312-toolz-0.12.0-1.5 ########################################
[ 108s] python312-setuptools-69.0.3-1.1 ########################################
[ 108s] python312-psutil-5.9.7-1.2 ########################################
[ 108s] python312-typing_extensions-4.10.0-1.1########################################
[ 108s] python312-six-1.16.0-4.2 ########################################
[ 108s] python312-python-dateutil-2.9.0.post0-########################################
[ 108s] python312-PyYAML-6.0.1-3.1 ########################################
[ 108s] python312-pytz-2023.4-1.1 ########################################
[ 115s] python312-pandas-2.2.1-2.1 ########################################
[ 116s] python312-rpds-py-0.7.1-2.3 ########################################
[ 116s] python312-referencing-0.33.0-1.4 ########################################
[ 116s] python312-jsonschema-specifications-20########################################
[ 116s] python312-contourpy-1.0.7-1.3 ########################################
[ 116s] python312-Cycler-0.12.1-1.2 ########################################
[ 116s] python312-appdirs-1.4.4-5.2 ########################################
[ 116s] python312-fs-2.4.16-3.2 ########################################
[ 116s] python312-click-8.1.7-1.2 ########################################
[ 116s] python312-cloudpickle-2.2.1-2.3 ########################################
[ 116s] python312-exceptiongroup-1.2.0-1.2 ########################################
[ 116s] python312-execnet-2.0.2-1.2 ########################################
[ 116s] python312-iniconfig-2.0.0-4.2 ########################################
[ 116s] python312-locket-1.0.0-4.6 ########################################
[ 116s] python312-partd-1.4.1-1.2 ########################################
[ 116s] python312-olefile-0.46-4.3 ########################################
[ 116s] python312-pluggy-1.3.0-1.4 ########################################
[ 116s] python312-tomli-2.0.1-2.3 ########################################
[ 116s] python312-zipp-3.17.0-1.2 ########################################
[ 116s] python312-importlib-metadata-7.0.1-1.2########################################
[ 117s] python312-pytest-7.4.4-1.2 ########################################
[ 117s] python312-MarkupSafe-2.1.5-1.1 ########################################
[ 117s] python312-Jinja2-3.1.3-2.2 ########################################
[ 117s] python312-pyrsistent-0.20.0-1.2 ########################################
[ 117s] python312-jsonschema-4.21.1-1.4 ########################################
[ 117s] python312-pybind11-2.11.1-1.2 ########################################
[ 123s] python312-scipy-1.11.4-3.1 ########################################
[ 124s] python312-FontTools-4.47.2-2.1 ########################################
[ 125s] python312-kiwisolver-1.4.5-1.2 ########################################
[ 125s] python312-gmpy2-2.1.5-6.2 ########################################
[ 125s] libpython3_9-1_0-3.9.18-5.1 ########################################
[ 126s] python39-pip-23.3.2-3.1 ########################################
[ 129s] python39-base-3.9.18-5.1 ########################################
[ 129s] python39-3.9.18-5.1 ########################################
[ 131s] python39-numpy-1.26.2-4.2 ########################################
[ 132s] python39-packaging-23.2-1.4 ########################################
[ 132s] python39-attrs-23.2.0-1.4 ########################################
[ 132s] python39-toolz-0.12.0-1.5 ########################################
[ 132s] python39-setuptools-69.0.3-1.1 ########################################
[ 132s] python39-psutil-5.9.7-1.2 ########################################
[ 132s] python39-tomli-2.0.1-2.3 ########################################
[ 132s] python39-typing_extensions-4.10.0-1.1 ########################################
[ 132s] python39-zipp-3.17.0-1.2 ########################################
[ 132s] python39-importlib-metadata-7.0.1-1.2 ########################################
[ 132s] python39-six-1.16.0-4.2 ########################################
[ 132s] python39-python-dateutil-2.9.0.post0-1########################################
[ 132s] python39-PyYAML-6.0.1-3.1 ########################################
[ 133s] python39-pytz-2023.4-1.1 ########################################
[ 139s] python39-pandas-2.2.1-2.1 ########################################
[ 139s] python39-rpds-py-0.7.1-2.3 ########################################
[ 139s] python39-referencing-0.33.0-1.4 ########################################
[ 139s] python39-jsonschema-specifications-202########################################
[ 139s] python39-importlib-resources-6.1.1-1.2########################################
[ 139s] python39-contourpy-1.0.7-1.3 ########################################
[ 139s] python39-Cycler-0.12.1-1.2 ########################################
[ 139s] python39-appdirs-1.4.4-5.2 ########################################
[ 139s] python39-fs-2.4.16-3.2 ########################################
[ 139s] python39-click-8.1.7-1.2 ########################################
[ 139s] python39-cloudpickle-2.2.1-2.3 ########################################
[ 139s] python39-exceptiongroup-1.2.0-1.2 ########################################
[ 139s] python39-execnet-2.0.2-1.2 ########################################
[ 139s] python39-iniconfig-2.0.0-4.2 ########################################
[ 139s] python39-locket-1.0.0-4.6 ########################################
[ 139s] python39-partd-1.4.1-1.2 ########################################
[ 139s] python39-olefile-0.46-4.3 ########################################
[ 139s] python39-pluggy-1.3.0-1.4 ########################################
[ 140s] python39-pytest-7.4.4-1.2 ########################################
[ 140s] python39-MarkupSafe-2.1.5-1.1 ########################################
[ 140s] python39-Jinja2-3.1.3-2.2 ########################################
[ 140s] python39-pyrsistent-0.20.0-1.2 ########################################
[ 140s] python39-jsonschema-4.21.1-1.4 ########################################
[ 140s] python39-pybind11-2.11.1-1.2 ########################################
[ 146s] python39-scipy-1.11.4-3.1 ########################################
[ 147s] python39-FontTools-4.47.2-2.1 ########################################
[ 147s] python39-kiwisolver-1.4.5-1.2 ########################################
[ 147s] python39-gmpy2-2.1.5-6.2 ########################################
[ 147s] libatomic1-14.0.1+git8957-1.1 ########################################
[ 147s] libbrotlicommon1-1.1.0-1.1 ########################################
[ 147s] libbrotlidec1-1.1.0-1.1 ########################################
[ 148s] libfreetype6-2.13.2-2.1 ########################################
[ 148s] libcap-ng0-0.8.4-1.2 ########################################
[ 148s] libgpg-error0-1.48-1.1 ########################################
[ 148s] libgcrypt20-1.10.3-3.2 ########################################
[ 148s] rpm-config-SUSE-20240214-1.1 ########################################
[ 148s] rpm-4.19.1.1-3.1 ########################################
[ 149s] Updating /etc/sysconfig/services ...
[ 149s] librpmbuild10-4.19.1.1-3.1 ########################################
[ 149s] libitm1-14.0.1+git8957-1.1 ########################################
[ 149s] libjbig2-2.1-5.1 ########################################
[ 149s] libtiff6-4.6.0-4.1 ########################################
[ 149s] libpkgconf4-2.1.1-1.1 ########################################
[ 149s] pkgconf-2.1.1-1.1 ########################################
[ 149s] pkgconf-pkg-config-2.1.1-1.1 ########################################
[ 149s] libxcrypt-devel-4.4.36-1.2 ########################################
[ 149s] glibc-devel-2.39-3.1 ########################################
[ 161s] gcc13-13.2.1+git8285-2.1 ########################################
[ 161s] gcc13-PIE-13.2.1+git8285-2.1 ########################################
[ 161s] gcc-13-2.1 ########################################
[ 161s] libseccomp2-2.5.5-1.2 ########################################
[ 161s] file-5.45-2.1 ########################################
[ 161s] libsharpyuv0-1.3.2-2.1 ########################################
[ 161s] libwebp7-1.3.2-2.1 ########################################
[ 161s] libwebpdemux2-1.3.2-2.1 ########################################
[ 161s] libwebpmux3-1.3.2-2.1 ########################################
[ 161s] python310-Pillow-10.2.0-1.2 ########################################
[ 163s] python310-matplotlib-3.8.2-5.1 ########################################
[ 164s] python311-Pillow-10.2.0-1.2 ########################################
[ 166s] python311-matplotlib-3.8.2-5.1 ########################################
[ 166s] python312-Pillow-10.2.0-1.2 ########################################
[ 169s] python312-matplotlib-3.8.2-5.1 ########################################
[ 169s] python39-Pillow-10.2.0-1.2 ########################################
[ 171s] python39-matplotlib-3.8.2-5.1 ########################################
[ 171s] libsmartcols1-2.39.3-4.1 ########################################
[ 171s] util-linux-2.39.3-4.1 ########################################
[ 172s] fuse-2.9.9-6.2 ########################################
[ 172s] /usr/bin/fusermount: setting to root:trusted 4755 (wrong permissions 4750)
[ 172s] python310-dask-2024.2.1-1.1 ########################################
[ 172s] python310-fsspec-2024.2.0-1.1 ########################################
[ 172s] python311-dask-2024.2.1-1.1 ########################################
[ 173s] python311-fsspec-2024.2.0-1.1 ########################################
[ 173s] python312-dask-2024.2.1-1.1 ########################################
[ 173s] python312-fsspec-2024.2.0-1.1 ########################################
[ 173s] python39-dask-2024.2.1-1.1 ########################################
[ 174s] python39-fsspec-2024.2.0-1.1 ########################################
[ 174s] patch-2.7.6-7.1 ########################################
[ 174s] rpm-build-4.19.1.1-3.1 ########################################
[ 174s] python39-seaborn-0.13.2-1.1 ########################################
[ 175s] python39-networkx-3.1-1.2 ########################################
[ 175s] python312-seaborn-0.13.2-1.1 ########################################
[ 176s] python312-networkx-3.1-1.2 ########################################
[ 177s] python311-seaborn-0.13.2-1.1 ########################################
[ 178s] python311-networkx-3.1-1.2 ########################################
[ 178s] python310-seaborn-0.13.2-1.1 ########################################
[ 179s] python310-networkx-3.1-1.2 ########################################
[ 179s] build-compare-20230617T171717.50241a8-########################################
[ 179s] gcc-PIE-13-2.1 ########################################
[ 180s] python39-mpmath-1.3.0-1.2 ########################################
[ 180s] python39-altair-5.2.0-1.1 ########################################
[ 180s] python39-pytest-xdist-3.5.0-1.4 ########################################
[ 180s] python39-setuptools_scm-8.0.4-1.3 ########################################
[ 180s] python39-opt-einsum-3.3.0-3.1 ########################################
[ 180s] python39-autoray-0.6.8-1.2 ########################################
[ 180s] python39-tqdm-4.66.1-3.2 ########################################
[ 181s] python39-wheel-0.42.0-1.2 ########################################
[ 181s] python312-mpmath-1.3.0-1.2 ########################################
[ 182s] python312-altair-5.2.0-1.1 ########################################
[ 182s] python312-pytest-xdist-3.5.0-1.4 ########################################
[ 182s] python312-setuptools_scm-8.0.4-1.3 ########################################
[ 182s] python312-opt-einsum-3.3.0-3.1 ########################################
[ 182s] python312-autoray-0.6.8-1.2 ########################################
[ 182s] python312-tqdm-4.66.1-3.2 ########################################
[ 182s] python312-wheel-0.42.0-1.2 ########################################
[ 183s] python311-mpmath-1.3.0-1.2 ########################################
[ 184s] python311-altair-5.2.0-1.1 ########################################
[ 184s] python311-pytest-xdist-3.5.0-1.4 ########################################
[ 184s] python311-setuptools_scm-8.0.4-1.3 ########################################
[ 184s] python311-opt-einsum-3.3.0-3.1 ########################################
[ 184s] python311-autoray-0.6.8-1.2 ########################################
[ 184s] python311-tqdm-4.66.1-3.2 ########################################
[ 184s] python311-wheel-0.42.0-1.2 ########################################
[ 185s] python310-mpmath-1.3.0-1.2 ########################################
[ 185s] python310-altair-5.2.0-1.1 ########################################
[ 185s] python310-pytest-xdist-3.5.0-1.4 ########################################
[ 185s] python310-setuptools_scm-8.0.4-1.3 ########################################
[ 185s] python310-opt-einsum-3.3.0-3.1 ########################################
[ 185s] python310-autoray-0.6.8-1.2 ########################################
[ 185s] python310-tqdm-4.66.1-3.2 ########################################
[ 186s] python310-wheel-0.42.0-1.2 ########################################
[ 186s] brp-check-suse-84.87+git20230324.8680c########################################
[ 186s] compat-usrmerge-build-84.87-5.4 ########################################
[ 188s] rpmlint-mini-2.5.0+git20240226.8b18627########################################
[ 188s] post-build-checks-84.87+git20240215.a1########################################
[ 188s] attr-2.5.2-1.1 ########################################
[ 188s] build-mkbaselibs-20240221-1.1 ########################################
[ 194s] qemu-linux-user-8.2.1-71.1 ########################################
[ 195s] fdupes-2.2.1-1.3 ########################################
[ 196s] kernel-obs-build-6.7.9-1.1 ########################################
[ 207s] now finalizing build dir...
[ 208s] ... running 01-add_abuild_user_to_trusted_group
[ 208s] ... running 02-set_timezone_to_utc
[ 208s] ... running 03-set-permissions-secure
[ 208s] ... running 11-hack_uname_version_to_kernel_version
[ 210s] setting SOURCE_DATE_EPOCH_MTIME to 1709065176
[ 213s] -----------------------------------------------------------------
[ 213s] I have the following modifications for python-cotengra.spec:
[ 213s] 21c21
[ 213s] < Release: 0
[ 213s] ---
[ 213s] > Release: 40.1
[ 217s] build target is riscv64-suse-linux
[ 217s] -----------------------------------------------------------------
[ 217s] ----- building python-cotengra.spec (user abuild)
[ 217s] -----------------------------------------------------------------
[ 217s] -----------------------------------------------------------------
[ 220s] setting SOURCE_DATE_EPOCH_MTIME to 1709065176
[ 220s] + exec rpmbuild -ba --define '_srcdefattr (-,root,root)' --nosignature --target=riscv64-suse-linux --undefine _enable_debug_packages --define 'disturl obs://build.opensuse.org/home:wangyuxuan/openSUSE_Factory_RISCV/e42162f36cd584ca5873f5606cd1fa62-python-cotengra-test' /home/abuild/rpmbuild/SOURCES/python-cotengra.spec
[ 244s] Building target platforms: riscv64-suse-linux
[ 244s] Building for target riscv64-suse-linux
[ 244s] using SOURCE_DATE_EPOCH with value 1709065175 as build time
[ 245s] Executing(%prep): /usr/bin/bash -e /var/tmp/rpm-tmp.vJfgRj
[ 245s] + umask 022
[ 245s] + cd /home/abuild/rpmbuild/BUILD
[ 245s] + cd /home/abuild/rpmbuild/BUILD
[ 245s] + rm -rf cotengra-0.5.6
[ 245s] + /usr/lib/rpm/rpmuncompress -x /home/abuild/rpmbuild/SOURCES/cotengra-0.5.6.tar.gz
[ 246s] + STATUS=0
[ 246s] + '[' 0 -ne 0 ']'
[ 246s] + cd cotengra-0.5.6
[ 246s] + rm -rf /home/abuild/rpmbuild/BUILD/cotengra-0.5.6-SPECPARTS
[ 246s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILD/cotengra-0.5.6-SPECPARTS
[ 246s] + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
[ 246s] + sed -i /addopts/d pyproject.toml
[ 246s] + rm cotengra/.gitattributes
[ 246s] + RPM_EC=0
[ 246s] ++ jobs -p
[ 246s] + exit 0
[ 246s] Executing(%build): /usr/bin/bash -e /var/tmp/rpm-tmp.ZXgVOz
[ 246s] + umask 022
[ 246s] + cd /home/abuild/rpmbuild/BUILD
[ 246s] + /usr/bin/rm -rf /home/abuild/rpmbuild/BUILDROOT/python-cotengra-0.5.6-40.1.riscv64
[ 246s] ++ dirname /home/abuild/rpmbuild/BUILDROOT/python-cotengra-0.5.6-40.1.riscv64
[ 246s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILDROOT
[ 246s] + /usr/bin/mkdir /home/abuild/rpmbuild/BUILDROOT/python-cotengra-0.5.6-40.1.riscv64
[ 246s] + cd cotengra-0.5.6
[ 246s] + ref=/usr/lib/rpm
[ 246s] + mints=0
[ 246s] + case $(uname -m) in
[ 246s] ++ uname -m
[ 246s] + mints=20160911
[ 246s] + for s in guess sub
[ 246s] ++ find -maxdepth 8 -name config.guess
[ 247s] + for s in guess sub
[ 247s] ++ find -maxdepth 8 -name config.sub
[ 247s] ++ '[' -f _current_flavor ']'
[ 247s] ++ true
[ 247s] + last_flavor=
[ 247s] + '[' -z '' ']'
[ 247s] + last_flavor=tmp
[ 247s] + '[' tmp '!=' python39 ']'
[ 247s] + '[' -d build ']'
[ 247s] + '[' -d _build.python39 ']'
[ 247s] + echo python39
[ 247s] + python_flavor=python39
[ 247s] + myargs=
[ 247s] + '[' -f './dist/*-none-any.whl' ']'
[ 247s] + /usr/bin/python3.9 -mpip wheel --verbose --progress-bar off --disable-pip-version-check --use-pep517 --no-build-isolation --no-deps --wheel-dir ./build .
[ 250s] Processing /home/abuild/rpmbuild/BUILD/cotengra-0.5.6
[ 250s] Preparing metadata (pyproject.toml): started
[ 250s] Running command Preparing metadata (pyproject.toml)
[ 251s] running dist_info
[ 251s] creating /tmp/pip-modern-metadata-ylys8z8l/cotengra.egg-info
[ 251s] writing /tmp/pip-modern-metadata-ylys8z8l/cotengra.egg-info/PKG-INFO
[ 251s] writing dependency_links to /tmp/pip-modern-metadata-ylys8z8l/cotengra.egg-info/dependency_links.txt
[ 251s] writing requirements to /tmp/pip-modern-metadata-ylys8z8l/cotengra.egg-info/requires.txt
[ 251s] writing top-level names to /tmp/pip-modern-metadata-ylys8z8l/cotengra.egg-info/top_level.txt
[ 251s] writing manifest file '/tmp/pip-modern-metadata-ylys8z8l/cotengra.egg-info/SOURCES.txt'