-
Notifications
You must be signed in to change notification settings - Fork 0
/
_log_error.txt
3136 lines (3136 loc) · 277 KB
/
_log_error.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_1/.mount
[ 0s] Using BUILD_ARCH=riscv64
[ 0s] Doing kvm build in /var/cache/obs/worker/root_1/root
[ 0s]
[ 0s]
[ 0s] i03-ch1a started "build python-cotengra.spec" at Mon Mar 4 04:24:29 UTC 2024.
[ 0s]
[ 0s] Building python-cotengra for project 'openSUSE:Factory:RISCV' repository 'standard' arch 'riscv64' srcmd5 '55d959dbdcbb7afad8402a72e7105d02'
[ 0s]
[ 0s] processing recipe /var/cache/obs/worker/root_1/.build-srcdir/python-cotengra.spec ...
[ 0s] running changelog2spec --target rpm --file /var/cache/obs/worker/root_1/.build-srcdir/python-cotengra.spec
[ 0s] init_buildsystem --configdir /var/run/obs/worker/1/build/configs --cachedir /var/cache/build --prepare --clean --rpmlist /var/cache/obs/worker/root_1/.build.rpmlist /var/cache/obs/worker/root_1/.build-srcdir/python-cotengra.spec build ...
[ 0s] unpacking preinstall image openSUSE:Factory:RISCV/standard/preinstallimage-python [3b0e7e2bc116a2040359722e4dc3ee8c]
[ 2s]
[ 2s] copying packages...
[ 3s] reordering...done
[ 3s] Detected virtio-serial support
[ 3s] QEMU 7.1.0 detected: Skipping iothreads because of bsc#1204082
[ 5s] booting kvm...
[ 5s] ### VM INTERACTION START ###
[ 5s] Using virtio-serial support and enabling console input
[ 5s] /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_1/.mount/boot/kernel -initrd /var/cache/obs/worker/root_1/.mount/boot/initrd -append root=/dev/disk/by-id/virtio-0 rootfstype=ext4 rootflags=noatime kvmclock mitigations=off elevator=noop nmi_watchdog=0 rw rd.driver.pre=binfmt_misc oops=panic panic=1 quiet console=hvc0 init=/.build/initvm.x86_64 -m 16384 -drive file=/var/cache/obs/worker/root_1/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_1/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_1/root.qemu/monitor -mon chardev=monitor,mode=readline -smp 4
[ 6s] [ 0.560304][ T1] systemd[1]: Failed to start Virtual Console Setup.
[ 6s] [[0;1;31mFAILED[0m] Failed to start [0;1;39mVirtual Console Setup[0m.
[ 6s] [ 0.747429] dracut-pre-udev[311]: sh: line 1: /usr/lib/module-init-tools/unblacklist: No such file or directory
[ 7s] [[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
[ 8s] Linux version: 6.7.7-1-default #1 SMP PREEMPT_DYNAMIC Fri Mar 1 13:51:21 UTC 2024 (1ff84c5)
[ 8s] Time: Mon Mar 4 04:24:36 UTC 2024
[ 8s] Increasing log level from now on...
[ 8s] [ 2.609978][ T414] sysrq: Changing Loglevel
[ 8s] [ 2.610063][ T414] sysrq: Loglevel set to 4
[ 8s] Enable sysrq operations
[ 8s] Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
[ 8s] no label, UUID=8169bacf-bc21-413f-8f40-0cec3226b209
[ 8s] swapon: /dev/vdb: found signature [pagesize=4096, signature=swap]
[ 8s] swapon: /dev/vdb: pagesize=4096, swapsize=4294967296, devsize=4294967296
[ 8s] 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 ...
[ 9s] initializing rpm db...
[ 9s] querying package ids...
[ 28s] [1/384] preinstalled aaa_base-84.87+git20240202.9526d46-1.1
[ 28s] [2/384] preinstalled aaa_base-malloccheck-84.87+git20240202.9526d46-1.1
[ 28s] [3/384] preinstalled attr-2.5.2-1.1
[ 28s] [4/384] preinstalled bash-5.2.26-11.1
[ 28s] [5/384] preinstalled bash-sh-5.2.26-11.1
[ 28s] [6/384] preinstalled binutils-2.42-2.1
[ 28s] [7/384] preinstalled brp-check-suse-84.87+git20230324.8680ce4-1.1
[ 28s] [8/384] preinstalled build-compare-20230617T171717.50241a8-1.1
[ 28s] [9/384] preinstalled build-mkbaselibs-20240221-1.1
[ 28s] [10/384] preinstalled bzip2-1.0.8-5.2
[ 28s] [11/384] preinstalled chkstat-1699_20240206-1.1
[ 28s] [12/384] preinstalled compat-usrmerge-build-84.87-5.4
[ 28s] [13/384] preinstalled compat-usrmerge-tools-84.87-5.4
[ 28s] [14/384] preinstalled coreutils-9.4-5.1
[ 28s] [15/384] preinstalled cpio-2.15-2.1
[ 28s] [16/384] preinstalled cpp-13-2.1
[ 28s] [17/384] preinstalled cpp13-13.2.1+git8285-1.2
[ 28s] [18/384] preinstalled crypto-policies-20230920.570ea89-3.1
[ 28s] [19/384] preinstalled debugedit-5.0-5.3
[ 28s] [20/384] preinstalled diffutils-3.10-1.2
[ 28s] [21/384] preinstalled dwz-0.15-3.1
[ 28s] [22/384] preinstalled elfutils-0.190-1.2
[ 28s] [23/384] cumulate fdupes-2.2.1-1.3
[ 28s] [24/384] preinstalled file-5.45-2.1
[ 28s] [25/384] preinstalled file-magic-5.45-2.1
[ 28s] [26/384] preinstalled filesystem-84.87-15.1
[ 28s] [27/384] preinstalled fillup-1.42-281.1
[ 28s] [28/384] preinstalled findutils-4.9.0-4.1
[ 28s] [29/384] cumulate fuse-2.9.9-6.2
[ 28s] [30/384] preinstalled gawk-5.3.0-1.2
[ 28s] [31/384] preinstalled gcc-13-2.1
[ 28s] [32/384] preinstalled gcc-PIE-13-2.1
[ 28s] [33/384] preinstalled gcc13-13.2.1+git8285-1.2
[ 28s] [34/384] preinstalled gcc13-PIE-13.2.1+git8285-1.2
[ 28s] [35/384] preinstalled gettext-runtime-mini-0.21.1-2.2
[ 28s] [36/384] preinstalled gettext-tools-mini-0.21.1-2.2
[ 28s] [37/384] preinstalled glibc-2.39-3.1
[ 28s] [38/384] preinstalled glibc-devel-2.39-3.1
[ 28s] [39/384] preinstalled glibc-locale-base-2.39-3.1
[ 28s] [40/384] preinstalled grep-3.11-2.1
[ 28s] [41/384] preinstalled gzip-1.13-3.1
[ 28s] [42/384] preinstalled kernel-obs-build-6.7.7-1.1
[ 28s] [43/384] cumulate libXau6-1.0.11-1.2
[ 28s] [44/384] preinstalled libacl1-2.3.2-1.1
[ 28s] [45/384] cumulate libalternatives1-1.2+30.a5431e9-1.1
[ 28s] [46/384] preinstalled libasan8-14.0.1+git8957-1.1
[ 28s] [47/384] preinstalled libasm1-0.190-1.2
[ 28s] [48/384] preinstalled libatomic1-14.0.1+git8957-1.1
[ 28s] [49/384] preinstalled libattr1-2.5.2-1.1
[ 28s] [50/384] preinstalled libaudit1-3.1.1-1.2
[ 28s] [51/384] preinstalled libblkid1-2.39.3-4.1
[ 28s] [52/384] cumulate libbrotlicommon1-1.1.0-1.1
[ 28s] [53/384] preinstalled libbz2-1-1.0.8-5.2
[ 28s] [54/384] preinstalled libcap-ng0-0.8.4-1.2
[ 28s] [55/384] preinstalled libcap2-2.69-1.2
[ 28s] [56/384] preinstalled libcrypt1-4.4.36-1.2
[ 28s] [57/384] preinstalled libctf-nobfd0-2.42-2.1
[ 28s] [58/384] preinstalled libctf0-2.42-2.1
[ 28s] [59/384] preinstalled libdb-4_8-4.8.30-43.1
[ 28s] [60/384] preinstalled libdw1-0.190-1.2
[ 28s] [61/384] preinstalled libeconf0-0.6.1-1.2
[ 28s] [62/384] preinstalled libelf1-0.190-1.2
[ 28s] [63/384] preinstalled libexpat1-2.6.0-9.1
[ 28s] [64/384] preinstalled libfdisk1-2.39.3-4.1
[ 28s] [65/384] preinstalled libffi8-3.4.4-2.2
[ 28s] [66/384] preinstalled libgcc_s1-14.0.1+git8957-1.1
[ 28s] [67/384] preinstalled libgcrypt20-1.10.3-3.2
[ 28s] [68/384] preinstalled libgdbm6-1.23-3.2
[ 28s] [69/384] preinstalled libgdbm_compat4-1.23-3.2
[ 28s] [70/384] cumulate libgfortran5-14.0.1+git8957-1.1
[ 28s] [71/384] preinstalled libgmp10-6.3.0-3.1
[ 28s] [72/384] preinstalled libgomp1-14.0.1+git8957-1.1
[ 28s] [73/384] preinstalled libgpg-error0-1.48-1.1
[ 28s] [74/384] cumulate libimagequant0-2.18.0-1.2
[ 28s] [75/384] preinstalled libisl23-0.26-1.2
[ 28s] [76/384] preinstalled libitm1-14.0.1+git8957-1.1
[ 28s] [77/384] cumulate libjbig2-2.1-5.1
[ 28s] [78/384] cumulate libjpeg8-8.3.2-79.1
[ 28s] [79/384] cumulate liblcms2-2-2.16-1.1
[ 28s] [80/384] preinstalled liblua5_4-5-5.4.6-3.2
[ 28s] [81/384] preinstalled liblzma5-5.4.6-1.2
[ 28s] [82/384] preinstalled libmagic1-5.45-2.1
[ 28s] [83/384] preinstalled libmount1-2.39.3-4.1
[ 28s] [84/384] preinstalled libmpc3-1.3.1-1.4
[ 28s] [85/384] preinstalled libmpdec3-2.5.1-2.3
[ 28s] [86/384] preinstalled libmpfr6-4.2.1-1.2
[ 28s] [87/384] preinstalled libncurses6-6.4.20240224-32.1
[ 28s] [88/384] cumulate libopenjp2-7-2.5.0-4.1
[ 28s] [89/384] preinstalled libopenssl3-3.1.4-5.1
[ 28s] [90/384] preinstalled libpcre2-8-0-10.43-1.1
[ 28s] [91/384] preinstalled libpkgconf4-2.1.1-1.1
[ 28s] [92/384] cumulate libpng16-16-1.6.42-1.1
[ 28s] [93/384] preinstalled libpopt0-1.19-1.3
[ 28s] [94/384] preinstalled libpython3_10-1_0-3.10.13-5.1
[ 28s] [95/384] preinstalled libpython3_11-1_0-3.11.8-3.1
[ 28s] [96/384] preinstalled libpython3_12-1_0-3.12.2-4.1
[ 28s] [97/384] preinstalled libpython3_9-1_0-3.9.18-5.1
[ 28s] [98/384] preinstalled libreadline8-8.2.10-1.2
[ 28s] [99/384] preinstalled librpmbuild10-4.19.1.1-3.1
[ 28s] [100/384] preinstalled libseccomp2-2.5.5-1.2
[ 28s] [101/384] preinstalled libselinux1-3.6-1.2
[ 28s] [102/384] cumulate libsharpyuv0-1.3.2-2.1
[ 28s] [103/384] preinstalled libsmartcols1-2.39.3-4.1
[ 28s] [104/384] preinstalled libstdc++6-14.0.1+git8957-1.1
[ 28s] [105/384] cumulate libsystemd0-mini-254.9-2.1
[ 28s] [106/384] preinstalled libubsan1-14.0.1+git8957-1.1
[ 28s] [107/384] preinstalled libuuid1-2.39.3-4.1
[ 28s] [108/384] preinstalled libxcrypt-devel-4.4.36-1.2
[ 28s] [109/384] cumulate libyaml-0-2-0.2.5-2.2
[ 28s] [110/384] preinstalled libz1-1.3.1-1.1
[ 28s] [111/384] preinstalled libzstd1-1.5.5-5.2
[ 28s] [112/384] preinstalled linux-glibc-devel-6.7-1.2
[ 28s] [113/384] preinstalled lua54-5.4.6-3.2
[ 28s] [114/384] preinstalled make-4.4.1-3.1
[ 28s] [115/384] preinstalled ncurses-utils-6.4.20240224-32.1
[ 28s] [116/384] preinstalled pam-1.6.0-4.1
[ 28s] [117/384] preinstalled patch-2.7.6-6.3
[ 28s] [118/384] preinstalled perl-5.38.2-1.2
[ 28s] [119/384] preinstalled perl-base-5.38.2-1.2
[ 28s] [120/384] preinstalled permissions-1699_20240206-1.1
[ 28s] [121/384] preinstalled permissions-config-1699_20240206-1.1
[ 28s] [122/384] preinstalled pkgconf-2.1.1-1.1
[ 28s] [123/384] preinstalled pkgconf-m4-2.1.1-1.1
[ 28s] [124/384] preinstalled pkgconf-pkg-config-2.1.1-1.1
[ 28s] [125/384] preinstalled polkit-default-privs-1550+20240223.b0857d7-1.1
[ 28s] [126/384] preinstalled post-build-checks-84.87+git20240215.a1dbe5c-1.1
[ 28s] [127/384] preinstalled python-rpm-macros-20240202.501440e-1.1
[ 28s] [128/384] preinstalled python-rpm-packaging-20210526+a18ca48-1.4
[ 28s] [129/384] cumulate python310-Cycler-0.12.1-1.2
[ 28s] [130/384] cumulate python310-MarkupSafe-2.1.5-1.1
[ 28s] [131/384] cumulate python310-appdirs-1.4.4-5.2
[ 28s] [132/384] cumulate python310-attrs-23.2.0-1.4
[ 28s] [133/384] cumulate python310-autoray-0.6.8-1.2
[ 28s] [134/384] preinstalled python310-base-3.10.13-5.1
[ 28s] [135/384] cumulate python310-click-8.1.7-1.2
[ 28s] [136/384] cumulate python310-cloudpickle-2.2.1-2.3
[ 28s] [137/384] cumulate python310-exceptiongroup-1.2.0-1.2
[ 28s] [138/384] cumulate python310-execnet-2.0.2-1.2
[ 28s] [139/384] cumulate python310-iniconfig-2.0.0-4.2
[ 28s] [140/384] cumulate python310-kiwisolver-1.4.5-1.2
[ 28s] [141/384] cumulate python310-locket-1.0.0-4.6
[ 28s] [142/384] cumulate python310-olefile-0.46-4.3
[ 28s] [143/384] cumulate python310-packaging-23.2-1.4
[ 28s] [144/384] cumulate python310-pluggy-1.3.0-1.4
[ 28s] [145/384] cumulate python310-pyparsing-3.1.1-2.1
[ 28s] [146/384] cumulate python310-pyrsistent-0.20.0-1.2
[ 28s] [147/384] cumulate python310-rpds-py-0.7.1-2.3
[ 28s] [148/384] preinstalled python310-setuptools-69.0.3-1.1
[ 28s] [149/384] cumulate python310-six-1.16.0-4.2
[ 28s] [150/384] cumulate python310-tomli-2.0.1-2.3
[ 28s] [151/384] cumulate python310-toolz-0.12.0-1.5
[ 28s] [152/384] cumulate python310-tqdm-4.66.1-3.2
[ 28s] [153/384] cumulate python310-typing_extensions-4.10.0-1.1
[ 28s] [154/384] cumulate python310-zipp-3.17.0-1.2
[ 28s] [155/384] cumulate python311-Cycler-0.12.1-1.2
[ 28s] [156/384] cumulate python311-MarkupSafe-2.1.5-1.1
[ 28s] [157/384] cumulate python311-appdirs-1.4.4-5.2
[ 28s] [158/384] cumulate python311-attrs-23.2.0-1.4
[ 28s] [159/384] cumulate python311-autoray-0.6.8-1.2
[ 28s] [160/384] preinstalled python311-base-3.11.8-3.1
[ 28s] [161/384] cumulate python311-click-8.1.7-1.2
[ 28s] [162/384] cumulate python311-cloudpickle-2.2.1-2.3
[ 28s] [163/384] cumulate python311-exceptiongroup-1.2.0-1.2
[ 28s] [164/384] cumulate python311-execnet-2.0.2-1.2
[ 28s] [165/384] cumulate python311-iniconfig-2.0.0-4.2
[ 28s] [166/384] cumulate python311-kiwisolver-1.4.5-1.2
[ 28s] [167/384] cumulate python311-locket-1.0.0-4.6
[ 28s] [168/384] cumulate python311-olefile-0.46-4.3
[ 28s] [169/384] preinstalled python311-packaging-23.2-1.3
[ 28s] [170/384] cumulate python311-pluggy-1.3.0-1.4
[ 28s] [171/384] cumulate python311-pyparsing-3.1.1-2.1
[ 28s] [172/384] cumulate python311-pyrsistent-0.20.0-1.2
[ 28s] [173/384] cumulate python311-rpds-py-0.7.1-2.3
[ 28s] [174/384] preinstalled python311-setuptools-69.0.3-1.1
[ 28s] [175/384] cumulate python311-six-1.16.0-4.2
[ 28s] [176/384] cumulate python311-tomli-2.0.1-2.3
[ 28s] [177/384] cumulate python311-toolz-0.12.0-1.5
[ 28s] [178/384] cumulate python311-tqdm-4.66.1-3.2
[ 28s] [179/384] cumulate python311-typing_extensions-4.10.0-1.1
[ 28s] [180/384] cumulate python311-zipp-3.17.0-1.2
[ 28s] [181/384] cumulate python312-Cycler-0.12.1-1.2
[ 28s] [182/384] cumulate python312-MarkupSafe-2.1.5-1.1
[ 28s] [183/384] cumulate python312-appdirs-1.4.4-5.2
[ 28s] [184/384] cumulate python312-attrs-23.2.0-1.4
[ 28s] [185/384] cumulate python312-autoray-0.6.8-1.2
[ 28s] [186/384] preinstalled python312-base-3.12.2-4.1
[ 28s] [187/384] cumulate python312-click-8.1.7-1.2
[ 28s] [188/384] cumulate python312-cloudpickle-2.2.1-2.3
[ 28s] [189/384] cumulate python312-exceptiongroup-1.2.0-1.2
[ 28s] [190/384] cumulate python312-execnet-2.0.2-1.2
[ 28s] [191/384] cumulate python312-iniconfig-2.0.0-4.2
[ 28s] [192/384] cumulate python312-kiwisolver-1.4.5-1.2
[ 28s] [193/384] cumulate python312-locket-1.0.0-4.6
[ 28s] [194/384] cumulate python312-olefile-0.46-4.3
[ 28s] [195/384] cumulate python312-packaging-23.2-1.4
[ 28s] [196/384] cumulate python312-pluggy-1.3.0-1.4
[ 28s] [197/384] cumulate python312-pyparsing-3.1.1-2.1
[ 28s] [198/384] cumulate python312-pyrsistent-0.20.0-1.2
[ 28s] [199/384] cumulate python312-rpds-py-0.7.1-2.3
[ 28s] [200/384] preinstalled python312-setuptools-69.0.3-1.1
[ 28s] [201/384] cumulate python312-six-1.16.0-4.2
[ 28s] [202/384] cumulate python312-tomli-2.0.1-2.3
[ 28s] [203/384] cumulate python312-toolz-0.12.0-1.5
[ 28s] [204/384] cumulate python312-tqdm-4.66.1-3.2
[ 28s] [205/384] cumulate python312-typing_extensions-4.10.0-1.1
[ 28s] [206/384] cumulate python312-zipp-3.17.0-1.2
[ 28s] [207/384] cumulate python39-Cycler-0.12.1-1.2
[ 28s] [208/384] cumulate python39-MarkupSafe-2.1.5-1.1
[ 28s] [209/384] cumulate python39-appdirs-1.4.4-5.2
[ 28s] [210/384] cumulate python39-attrs-23.2.0-1.4
[ 28s] [211/384] cumulate python39-autoray-0.6.8-1.2
[ 28s] [212/384] preinstalled python39-base-3.9.18-5.1
[ 28s] [213/384] cumulate python39-click-8.1.7-1.2
[ 28s] [214/384] cumulate python39-cloudpickle-2.2.1-2.3
[ 28s] [215/384] cumulate python39-exceptiongroup-1.2.0-1.2
[ 28s] [216/384] cumulate python39-execnet-2.0.2-1.2
[ 28s] [217/384] cumulate python39-iniconfig-2.0.0-4.2
[ 28s] [218/384] cumulate python39-kiwisolver-1.4.5-1.2
[ 28s] [219/384] cumulate python39-locket-1.0.0-4.6
[ 28s] [220/384] cumulate python39-olefile-0.46-4.3
[ 28s] [221/384] cumulate python39-packaging-23.2-1.4
[ 28s] [222/384] cumulate python39-pluggy-1.3.0-1.4
[ 28s] [223/384] cumulate python39-pyparsing-3.1.1-2.1
[ 28s] [224/384] cumulate python39-pyrsistent-0.20.0-1.2
[ 28s] [225/384] cumulate python39-rpds-py-0.7.1-2.3
[ 28s] [226/384] preinstalled python39-setuptools-69.0.3-1.1
[ 28s] [227/384] cumulate python39-six-1.16.0-4.2
[ 28s] [228/384] cumulate python39-tomli-2.0.1-2.3
[ 28s] [229/384] cumulate python39-toolz-0.12.0-1.5
[ 28s] [230/384] cumulate python39-tqdm-4.66.1-3.2
[ 28s] [231/384] cumulate python39-typing_extensions-4.10.0-1.1
[ 28s] [232/384] cumulate python39-zipp-3.17.0-1.2
[ 28s] [233/384] preinstalled qemu-linux-user-8.2.1-70.1
[ 28s] [234/384] preinstalled rpm-4.19.1.1-3.1
[ 28s] [235/384] preinstalled rpm-build-4.19.1.1-3.1
[ 28s] [236/384] preinstalled rpm-build-perl-4.19.1.1-3.1
[ 28s] [237/384] preinstalled rpm-config-SUSE-20240214-1.1
[ 28s] [238/384] preinstalled rpmlint-mini-2.5.0+git20240226.8b18627-15.26
[ 28s] [239/384] preinstalled rpmlint-strict-2.5.0+git20240226.8b18627-1.1
[ 28s] [240/384] preinstalled sed-4.9-2.2
[ 28s] [241/384] preinstalled system-user-root-20190513-2.3
[ 28s] [242/384] preinstalled systemd-rpm-macros-24-1.2
[ 28s] [243/384] preinstalled tar-1.35-1.1
[ 28s] [244/384] preinstalled terminfo-base-6.4.20240224-32.1
[ 28s] [245/384] cumulate timezone-2024a-1.1
[ 28s] [246/384] preinstalled update-alternatives-1.22.2-2.1
[ 28s] [247/384] preinstalled util-linux-2.39.3-4.1
[ 28s] [248/384] preinstalled which-2.21-5.3
[ 28s] [249/384] preinstalled xz-5.4.6-1.2
[ 28s] [250/384] cumulate alts-1.2+30.a5431e9-1.1
[ 28s] [251/384] cumulate libblas3-3.9.0-9.1
[ 28s] [252/384] cumulate libbrotlidec1-1.1.0-1.1
[ 28s] [253/384] cumulate libopenblas_serial0-0.3.26-1.1
[ 28s] [254/384] cumulate libprocps8-3.3.17-17.1
[ 28s] [255/384] cumulate libwebp7-1.3.2-2.1
[ 28s] [256/384] cumulate libxcb1-1.16.1-1.1
[ 28s] [257/384] cumulate python310-Jinja2-3.1.3-2.2
[ 28s] [258/384] cumulate python310-PyYAML-6.0.1-3.1
[ 28s] [259/384] cumulate python310-fsspec-2023.12.2-2.2
[ 28s] [260/384] cumulate python310-importlib-metadata-7.0.1-1.2
[ 28s] [261/384] cumulate python310-python-dateutil-2.8.2-3.2
[ 28s] [262/384] cumulate python310-pytz-2023.4-1.1
[ 28s] [263/384] cumulate python311-Jinja2-3.1.3-2.2
[ 28s] [264/384] cumulate python311-PyYAML-6.0.1-3.1
[ 28s] [265/384] cumulate python311-fsspec-2023.12.2-2.2
[ 28s] [266/384] cumulate python311-importlib-metadata-7.0.1-1.2
[ 28s] [267/384] cumulate python311-python-dateutil-2.8.2-3.2
[ 28s] [268/384] cumulate python311-pytz-2023.4-1.1
[ 28s] [269/384] cumulate python311-setuptools_scm-8.0.4-1.3
[ 28s] [270/384] cumulate python312-Jinja2-3.1.3-2.2
[ 28s] [271/384] cumulate python312-PyYAML-6.0.1-3.1
[ 28s] [272/384] cumulate python312-fsspec-2023.12.2-2.2
[ 28s] [273/384] cumulate python312-importlib-metadata-7.0.1-1.2
[ 28s] [274/384] cumulate python312-python-dateutil-2.8.2-3.2
[ 28s] [275/384] cumulate python312-pytz-2023.4-1.1
[ 28s] [276/384] cumulate python39-Jinja2-3.1.3-2.2
[ 28s] [277/384] cumulate python39-PyYAML-6.0.1-3.1
[ 28s] [278/384] cumulate python39-fsspec-2023.12.2-2.2
[ 28s] [279/384] cumulate python39-importlib-metadata-7.0.1-1.2
[ 28s] [280/384] cumulate python39-importlib-resources-6.1.1-1.2
[ 28s] [281/384] cumulate python39-python-dateutil-2.8.2-3.2
[ 28s] [282/384] cumulate python39-pytz-2023.4-1.1
[ 28s] [283/384] cumulate libtiff6-4.6.0-4.1
[ 28s] [284/384] cumulate python310-partd-1.4.1-1.2
[ 28s] [285/384] cumulate python310-referencing-0.33.0-1.4
[ 28s] [286/384] cumulate python311-partd-1.4.1-1.2
[ 28s] [287/384] cumulate python311-referencing-0.33.0-1.4
[ 28s] [288/384] cumulate python312-partd-1.4.1-1.2
[ 28s] [289/384] cumulate python312-referencing-0.33.0-1.4
[ 28s] [290/384] cumulate python312-setuptools_scm-8.0.4-1.3
[ 28s] [291/384] cumulate python39-partd-1.4.1-1.2
[ 28s] [292/384] cumulate python39-referencing-0.33.0-1.4
[ 28s] [293/384] cumulate python310-setuptools_scm-8.0.4-1.3
[ 28s] [294/384] cumulate python39-setuptools_scm-8.0.4-1.3
[ 28s] [295/384] cumulate libcblas3-3.9.0-9.1
[ 28s] [296/384] cumulate libwebpdemux2-1.3.2-2.1
[ 28s] [297/384] cumulate libwebpmux3-1.3.2-2.1
[ 28s] [298/384] cumulate python310-jsonschema-specifications-2023.12.1-1.2
[ 28s] [299/384] cumulate python310-pip-23.3.2-3.1
[ 28s] [300/384] cumulate python310-pybind11-2.11.1-1.2
[ 28s] [301/384] cumulate python310-wheel-0.42.0-1.2
[ 28s] [302/384] cumulate python311-jsonschema-specifications-2023.12.1-1.2
[ 28s] [303/384] cumulate python311-pip-23.3.2-3.1
[ 28s] [304/384] cumulate python311-pybind11-2.11.1-1.2
[ 28s] [305/384] cumulate python311-wheel-0.42.0-1.2
[ 28s] [306/384] cumulate python312-jsonschema-specifications-2023.12.1-1.2
[ 28s] [307/384] cumulate python312-pip-23.3.2-3.1
[ 28s] [308/384] cumulate python312-pybind11-2.11.1-1.2
[ 28s] [309/384] cumulate python312-wheel-0.42.0-1.2
[ 28s] [310/384] cumulate python39-jsonschema-specifications-2023.12.1-1.2
[ 28s] [311/384] cumulate python39-pip-23.3.2-3.1
[ 28s] [312/384] cumulate python39-pybind11-2.11.1-1.2
[ 28s] [313/384] cumulate python39-wheel-0.42.0-1.2
[ 28s] [314/384] cumulate libfreetype6-2.13.2-2.1
[ 28s] [315/384] cumulate liblapack3-3.9.0-9.1
[ 28s] [316/384] cumulate procps-3.3.17-17.1
[ 28s] [317/384] cumulate python310-pandas-2.2.1-1.3
[ 28s] [318/384] cumulate python311-pandas-2.2.1-1.3
[ 28s] [319/384] cumulate python312-pandas-2.2.1-1.3
[ 28s] [320/384] cumulate python39-pandas-2.2.1-1.3
[ 28s] [321/384] cumulate python311-dask-2024.2.0-1.1
[ 28s] [322/384] cumulate python311-pytest-7.4.4-1.2
[ 28s] [323/384] cumulate python310-dask-2024.2.0-1.1
[ 28s] [324/384] cumulate python310-pytest-7.4.4-1.2
[ 28s] [325/384] cumulate python312-dask-2024.2.0-1.1
[ 28s] [326/384] cumulate python312-pytest-7.4.4-1.2
[ 28s] [327/384] cumulate python39-dask-2024.2.0-1.1
[ 28s] [328/384] cumulate python39-pytest-7.4.4-1.2
[ 28s] [329/384] cumulate python310-psutil-5.9.7-1.2
[ 28s] [330/384] cumulate python311-psutil-5.9.7-1.2
[ 28s] [331/384] cumulate python312-psutil-5.9.7-1.2
[ 28s] [332/384] cumulate python39-psutil-5.9.7-1.2
[ 28s] [333/384] cumulate python310-pytest-xdist-3.5.0-1.4
[ 28s] [334/384] cumulate python311-pytest-xdist-3.5.0-1.4
[ 28s] [335/384] cumulate python312-pytest-xdist-3.5.0-1.4
[ 28s] [336/384] cumulate python39-pytest-xdist-3.5.0-1.4
[ 28s] [337/384] cumulate python310-numpy-1.26.2-4.2
[ 28s] [338/384] cumulate python311-numpy-1.26.2-4.2
[ 28s] [339/384] cumulate python312-numpy-1.26.2-4.2
[ 28s] [340/384] cumulate python39-numpy-1.26.2-4.2
[ 28s] [341/384] cumulate python310-jsonschema-4.21.1-1.4
[ 28s] [342/384] cumulate python311-jsonschema-4.21.1-1.4
[ 28s] [343/384] cumulate python312-jsonschema-4.21.1-1.4
[ 28s] [344/384] cumulate python39-jsonschema-4.21.1-1.4
[ 28s] [345/384] cumulate python310-Pillow-10.2.0-1.2
[ 28s] [346/384] cumulate python311-Pillow-10.2.0-1.2
[ 28s] [347/384] cumulate python312-Pillow-10.2.0-1.2
[ 28s] [348/384] cumulate python39-Pillow-10.2.0-1.2
[ 28s] [349/384] cumulate python310-contourpy-1.0.7-1.3
[ 28s] [350/384] cumulate python310-opt-einsum-3.3.0-3.1
[ 28s] [351/384] cumulate python311-contourpy-1.0.7-1.3
[ 28s] [352/384] cumulate python311-opt-einsum-3.3.0-3.1
[ 28s] [353/384] cumulate python312-contourpy-1.0.7-1.3
[ 28s] [354/384] cumulate python312-opt-einsum-3.3.0-3.1
[ 28s] [355/384] cumulate python39-contourpy-1.0.7-1.3
[ 28s] [356/384] cumulate python39-opt-einsum-3.3.0-3.1
[ 28s] [357/384] cumulate python310-fs-2.4.16-3.2
[ 28s] [358/384] cumulate python310-scipy-1.11.4-3.1
[ 28s] [359/384] cumulate python311-fs-2.4.16-3.2
[ 28s] [360/384] cumulate python311-scipy-1.11.4-3.1
[ 28s] [361/384] cumulate python312-fs-2.4.16-3.2
[ 28s] [362/384] cumulate python312-scipy-1.11.4-3.1
[ 28s] [363/384] cumulate python39-fs-2.4.16-3.2
[ 28s] [364/384] cumulate python39-scipy-1.11.4-3.1
[ 28s] [365/384] cumulate python311-altair-5.2.0-1.1
[ 28s] [366/384] cumulate python310-altair-5.2.0-1.1
[ 28s] [367/384] cumulate python312-altair-5.2.0-1.1
[ 28s] [368/384] cumulate python39-altair-5.2.0-1.1
[ 28s] [369/384] cumulate python310-FontTools-4.47.2-2.1
[ 28s] [370/384] cumulate python311-FontTools-4.47.2-2.1
[ 28s] [371/384] cumulate python312-FontTools-4.47.2-2.1
[ 28s] [372/384] cumulate python39-FontTools-4.47.2-2.1
[ 28s] [373/384] cumulate python311-matplotlib-3.8.2-4.1
[ 28s] [374/384] cumulate python310-matplotlib-3.8.2-4.1
[ 28s] [375/384] cumulate python312-matplotlib-3.8.2-4.1
[ 28s] [376/384] cumulate python39-matplotlib-3.8.2-4.1
[ 28s] [377/384] cumulate python310-seaborn-0.13.2-1.1
[ 28s] [378/384] cumulate python311-seaborn-0.13.2-1.1
[ 28s] [379/384] cumulate python312-seaborn-0.13.2-1.1
[ 28s] [380/384] cumulate python39-seaborn-0.13.2-1.1
[ 28s] [381/384] cumulate python310-networkx-3.1-1.2
[ 28s] [382/384] cumulate python311-networkx-3.1-1.2
[ 28s] [383/384] cumulate python312-networkx-3.1-1.2
[ 28s] [384/384] cumulate python39-networkx-3.1-1.2
[ 28s] now installing cumulated packages
[ 29s] Preparing... ########################################
[ 30s] Updating / installing...
[ 30s] timezone-2024a-1.1 ########################################
[ 30s] libgfortran5-14.0.1+git8957-1.1 ########################################
[ 30s] libblas3-3.9.0-9.1 ########################################
[ 30s] update-alternatives: using /usr/lib64/blas/libblas.so.3 to provide /usr/lib64/libblas.so.3 (libblas.so.3_riscv64) in auto mode
[ 30s] python39-packaging-23.2-1.4 ########################################
[ 30s] python312-packaging-23.2-1.4 ########################################
[ 30s] python310-packaging-23.2-1.4 ########################################
[ 30s] libjpeg8-8.3.2-79.1 ########################################
[ 30s] libcblas3-3.9.0-9.1 ########################################
[ 30s] update-alternatives: using /usr/lib64/blas/libcblas.so.3 to provide /usr/lib64/libcblas.so.3 (libcblas.so.3_riscv64) in auto mode
[ 31s] liblapack3-3.9.0-9.1 ########################################
[ 31s] update-alternatives: using /usr/lib64/lapack/liblapack.so.3 to provide /usr/lib64/liblapack.so.3 (liblapack.so.3_riscv64) in auto mode
[ 32s] libopenblas_serial0-0.3.26-1.1 ########################################
[ 32s] update-alternatives: using /usr/lib64/openblas-serial to provide /usr/lib64/openblas-default (openblas-default_riscv64) in auto mode
[ 32s] update-alternatives: using /usr/lib64/openblas-serial/libopenblas.so.0 to provide /usr/lib64/liblapacke.so.3 (liblapacke.so.3_riscv64) in auto mode
[ 32s] libyaml-0-2-0.2.5-2.2 ########################################
[ 32s] libopenjp2-7-2.5.0-4.1 ########################################
[ 32s] liblcms2-2-2.16-1.1 ########################################
[ 32s] libimagequant0-2.18.0-1.2 ########################################
[ 33s] fuse-2.9.9-6.2 ########################################
[ 33s] python39-toolz-0.12.0-1.5 ########################################
[ 33s] python39-attrs-23.2.0-1.4 ########################################
[ 33s] python312-toolz-0.12.0-1.5 ########################################
[ 33s] python312-attrs-23.2.0-1.4 ########################################
[ 33s] python311-toolz-0.12.0-1.5 ########################################
[ 33s] python311-attrs-23.2.0-1.4 ########################################
[ 33s] python310-toolz-0.12.0-1.5 ########################################
[ 33s] python310-attrs-23.2.0-1.4 ########################################
[ 33s] python310-PyYAML-6.0.1-3.1 ########################################
[ 33s] python311-PyYAML-6.0.1-3.1 ########################################
[ 33s] python312-PyYAML-6.0.1-3.1 ########################################
[ 33s] python39-PyYAML-6.0.1-3.1 ########################################
[ 33s] python310-pytz-2023.4-1.1 ########################################
[ 34s] python311-pytz-2023.4-1.1 ########################################
[ 34s] python312-pytz-2023.4-1.1 ########################################
[ 34s] python39-pytz-2023.4-1.1 ########################################
[ 34s] python39-zipp-3.17.0-1.2 ########################################
[ 34s] python39-importlib-metadata-7.0.1-1.2 ########################################
[ 34s] python39-typing_extensions-4.10.0-1.1 ########################################
[ 34s] python39-tomli-2.0.1-2.3 ########################################
[ 34s] python39-six-1.16.0-4.2 ########################################
[ 34s] python39-python-dateutil-2.8.2-3.2 ########################################
[ 34s] python39-rpds-py-0.7.1-2.3 ########################################
[ 34s] python39-referencing-0.33.0-1.4 ########################################
[ 34s] python39-pyparsing-3.1.1-2.1 ########################################
[ 34s] python312-typing_extensions-4.10.0-1.1########################################
[ 34s] python312-six-1.16.0-4.2 ########################################
[ 34s] python312-python-dateutil-2.8.2-3.2 ########################################
[ 34s] python312-rpds-py-0.7.1-2.3 ########################################
[ 35s] python312-referencing-0.33.0-1.4 ########################################
[ 35s] python312-pyparsing-3.1.1-2.1 ########################################
[ 35s] python311-typing_extensions-4.10.0-1.1########################################
[ 35s] python311-six-1.16.0-4.2 ########################################
[ 35s] python311-python-dateutil-2.8.2-3.2 ########################################
[ 35s] python311-rpds-py-0.7.1-2.3 ########################################
[ 35s] python311-referencing-0.33.0-1.4 ########################################
[ 35s] python311-pyparsing-3.1.1-2.1 ########################################
[ 35s] python310-typing_extensions-4.10.0-1.1########################################
[ 35s] python310-tomli-2.0.1-2.3 ########################################
[ 35s] python310-six-1.16.0-4.2 ########################################
[ 35s] python310-python-dateutil-2.8.2-3.2 ########################################
[ 35s] python310-rpds-py-0.7.1-2.3 ########################################
[ 35s] python310-referencing-0.33.0-1.4 ########################################
[ 35s] python310-pyparsing-3.1.1-2.1 ########################################
[ 35s] libsystemd0-mini-254.9-2.1 ########################################
[ 36s] libprocps8-3.3.17-17.1 ########################################
[ 36s] procps-3.3.17-17.1 ########################################
[ 36s] python310-psutil-5.9.7-1.2 ########################################
[ 36s] python311-psutil-5.9.7-1.2 ########################################
[ 36s] python312-psutil-5.9.7-1.2 ########################################
[ 36s] python39-psutil-5.9.7-1.2 ########################################
[ 36s] python310-jsonschema-specifications-20########################################
[ 36s] python311-jsonschema-specifications-20########################################
[ 36s] python312-jsonschema-specifications-20########################################
[ 36s] python39-jsonschema-specifications-202########################################
[ 36s] python39-importlib-resources-6.1.1-1.2########################################
[ 36s] python39-pyrsistent-0.20.0-1.2 ########################################
[ 36s] python39-pluggy-1.3.0-1.4 ########################################
[ 36s] python39-olefile-0.46-4.3 ########################################
[ 36s] python39-locket-1.0.0-4.6 ########################################
[ 36s] python39-kiwisolver-1.4.5-1.2 ########################################
[ 36s] python39-iniconfig-2.0.0-4.2 ########################################
[ 36s] python39-execnet-2.0.2-1.2 ########################################
[ 36s] python39-exceptiongroup-1.2.0-1.2 ########################################
[ 36s] python39-cloudpickle-2.2.1-2.3 ########################################
[ 36s] python39-click-8.1.7-1.2 ########################################
[ 36s] python39-appdirs-1.4.4-5.2 ########################################
[ 37s] python39-fs-2.4.16-3.2 ########################################
[ 37s] python39-MarkupSafe-2.1.5-1.1 ########################################
[ 37s] python39-Jinja2-3.1.3-2.2 ########################################
[ 37s] python39-Cycler-0.12.1-1.2 ########################################
[ 37s] python312-zipp-3.17.0-1.2 ########################################
[ 37s] python312-importlib-metadata-7.0.1-1.2########################################
[ 37s] python312-tomli-2.0.1-2.3 ########################################
[ 37s] python312-pyrsistent-0.20.0-1.2 ########################################
[ 37s] python312-pluggy-1.3.0-1.4 ########################################
[ 37s] python312-olefile-0.46-4.3 ########################################
[ 37s] python312-locket-1.0.0-4.6 ########################################
[ 37s] python312-kiwisolver-1.4.5-1.2 ########################################
[ 37s] python312-iniconfig-2.0.0-4.2 ########################################
[ 37s] python312-execnet-2.0.2-1.2 ########################################
[ 37s] python312-exceptiongroup-1.2.0-1.2 ########################################
[ 37s] python312-cloudpickle-2.2.1-2.3 ########################################
[ 37s] python312-click-8.1.7-1.2 ########################################
[ 37s] python312-appdirs-1.4.4-5.2 ########################################
[ 37s] python312-fs-2.4.16-3.2 ########################################
[ 37s] python312-MarkupSafe-2.1.5-1.1 ########################################
[ 37s] python312-Jinja2-3.1.3-2.2 ########################################
[ 37s] python312-Cycler-0.12.1-1.2 ########################################
[ 37s] python311-zipp-3.17.0-1.2 ########################################
[ 37s] python311-importlib-metadata-7.0.1-1.2########################################
[ 37s] python311-tomli-2.0.1-2.3 ########################################
[ 37s] python311-pyrsistent-0.20.0-1.2 ########################################
[ 37s] python311-pluggy-1.3.0-1.4 ########################################
[ 37s] python311-olefile-0.46-4.3 ########################################
[ 37s] python311-locket-1.0.0-4.6 ########################################
[ 37s] python311-kiwisolver-1.4.5-1.2 ########################################
[ 37s] python311-iniconfig-2.0.0-4.2 ########################################
[ 37s] python311-execnet-2.0.2-1.2 ########################################
[ 37s] python311-exceptiongroup-1.2.0-1.2 ########################################
[ 37s] python311-cloudpickle-2.2.1-2.3 ########################################
[ 38s] python311-click-8.1.7-1.2 ########################################
[ 38s] python311-appdirs-1.4.4-5.2 ########################################
[ 38s] python311-fs-2.4.16-3.2 ########################################
[ 38s] python311-MarkupSafe-2.1.5-1.1 ########################################
[ 38s] python311-Jinja2-3.1.3-2.2 ########################################
[ 38s] python311-Cycler-0.12.1-1.2 ########################################
[ 38s] python310-zipp-3.17.0-1.2 ########################################
[ 38s] python310-importlib-metadata-7.0.1-1.2########################################
[ 38s] python310-pyrsistent-0.20.0-1.2 ########################################
[ 38s] python310-pluggy-1.3.0-1.4 ########################################
[ 38s] python310-olefile-0.46-4.3 ########################################
[ 38s] python310-locket-1.0.0-4.6 ########################################
[ 38s] python310-kiwisolver-1.4.5-1.2 ########################################
[ 38s] python310-iniconfig-2.0.0-4.2 ########################################
[ 38s] python310-execnet-2.0.2-1.2 ########################################
[ 38s] python310-exceptiongroup-1.2.0-1.2 ########################################
[ 38s] python310-cloudpickle-2.2.1-2.3 ########################################
[ 38s] python310-click-8.1.7-1.2 ########################################
[ 38s] python310-appdirs-1.4.4-5.2 ########################################
[ 38s] python310-fs-2.4.16-3.2 ########################################
[ 38s] python310-MarkupSafe-2.1.5-1.1 ########################################
[ 38s] python310-Jinja2-3.1.3-2.2 ########################################
[ 38s] python310-Cycler-0.12.1-1.2 ########################################
[ 38s] libsharpyuv0-1.3.2-2.1 ########################################
[ 38s] libwebp7-1.3.2-2.1 ########################################
[ 38s] libwebpdemux2-1.3.2-2.1 ########################################
[ 38s] libwebpmux3-1.3.2-2.1 ########################################
[ 39s] libpng16-16-1.6.42-1.1 ########################################
[ 39s] libjbig2-2.1-5.1 ########################################
[ 39s] libtiff6-4.6.0-4.1 ########################################
[ 39s] libbrotlicommon1-1.1.0-1.1 ########################################
[ 39s] libbrotlidec1-1.1.0-1.1 ########################################
[ 39s] libfreetype6-2.13.2-2.1 ########################################
[ 39s] libalternatives1-1.2+30.a5431e9-1.1 ########################################
[ 39s] alts-1.2+30.a5431e9-1.1 ########################################
[ 41s] python310-numpy-1.26.2-4.2 ########################################
[ 44s] python311-numpy-1.26.2-4.2 ########################################
[ 47s] python312-numpy-1.26.2-4.2 ########################################
[ 49s] python39-numpy-1.26.2-4.2 ########################################
[ 55s] python39-pandas-2.2.1-1.3 ########################################
[ 62s] python312-pandas-2.2.1-1.3 ########################################
[ 69s] python311-pandas-2.2.1-1.3 ########################################
[ 75s] python310-pandas-2.2.1-1.3 ########################################
[ 75s] python310-partd-1.4.1-1.2 ########################################
[ 75s] python311-partd-1.4.1-1.2 ########################################
[ 75s] python312-partd-1.4.1-1.2 ########################################
[ 75s] python39-partd-1.4.1-1.2 ########################################
[ 75s] python39-contourpy-1.0.7-1.3 ########################################
[ 75s] python312-contourpy-1.0.7-1.3 ########################################
[ 75s] python311-contourpy-1.0.7-1.3 ########################################
[ 76s] python310-contourpy-1.0.7-1.3 ########################################
[ 76s] python310-pybind11-2.11.1-1.2 ########################################
[ 81s] python310-scipy-1.11.4-3.1 ########################################
[ 82s] python310-FontTools-4.47.2-2.1 ########################################
[ 83s] python311-pybind11-2.11.1-1.2 ########################################
[ 89s] python311-scipy-1.11.4-3.1 ########################################
[ 90s] python311-FontTools-4.47.2-2.1 ########################################
[ 90s] python312-pybind11-2.11.1-1.2 ########################################
[ 96s] python312-scipy-1.11.4-3.1 ########################################
[ 97s] python312-FontTools-4.47.2-2.1 ########################################
[ 98s] python39-pybind11-2.11.1-1.2 ########################################
[ 103s] python39-scipy-1.11.4-3.1 ########################################
[ 104s] python39-FontTools-4.47.2-2.1 ########################################
[ 105s] python311-pytest-7.4.4-1.2 ########################################
[ 105s] python310-pytest-7.4.4-1.2 ########################################
[ 106s] python312-pytest-7.4.4-1.2 ########################################
[ 106s] python39-pytest-7.4.4-1.2 ########################################
[ 106s] python310-jsonschema-4.21.1-1.4 ########################################
[ 107s] python311-jsonschema-4.21.1-1.4 ########################################
[ 107s] python312-jsonschema-4.21.1-1.4 ########################################
[ 107s] python39-jsonschema-4.21.1-1.4 ########################################
[ 107s] libXau6-1.0.11-1.2 ########################################
[ 107s] libxcb1-1.16.1-1.1 ########################################
[ 108s] python310-Pillow-10.2.0-1.2 ########################################
[ 110s] python310-matplotlib-3.8.2-4.1 ########################################
[ 110s] python310-dask-2024.2.0-1.1 ########################################
[ 110s] python310-fsspec-2023.12.2-2.2 ########################################
[ 110s] python311-Pillow-10.2.0-1.2 ########################################
[ 113s] python311-matplotlib-3.8.2-4.1 ########################################
[ 113s] python311-dask-2024.2.0-1.1 ########################################
[ 113s] python311-fsspec-2023.12.2-2.2 ########################################
[ 114s] python312-Pillow-10.2.0-1.2 ########################################
[ 116s] python312-matplotlib-3.8.2-4.1 ########################################
[ 116s] python312-dask-2024.2.0-1.1 ########################################
[ 116s] python312-fsspec-2023.12.2-2.2 ########################################
[ 117s] python39-Pillow-10.2.0-1.2 ########################################
[ 119s] python39-matplotlib-3.8.2-4.1 ########################################
[ 119s] python39-dask-2024.2.0-1.1 ########################################
[ 119s] python39-fsspec-2023.12.2-2.2 ########################################
[ 119s] python39-seaborn-0.13.2-1.1 ########################################
[ 120s] python39-networkx-3.1-1.2 ########################################
[ 120s] python312-seaborn-0.13.2-1.1 ########################################
[ 122s] python312-networkx-3.1-1.2 ########################################
[ 122s] python311-seaborn-0.13.2-1.1 ########################################
[ 123s] python311-networkx-3.1-1.2 ########################################
[ 123s] python310-seaborn-0.13.2-1.1 ########################################
[ 124s] python310-networkx-3.1-1.2 ########################################
[ 125s] python39-altair-5.2.0-1.1 ########################################
[ 125s] python312-altair-5.2.0-1.1 ########################################
[ 126s] python311-altair-5.2.0-1.1 ########################################
[ 127s] python310-altair-5.2.0-1.1 ########################################
[ 127s] python39-pytest-xdist-3.5.0-1.4 ########################################
[ 127s] python312-pytest-xdist-3.5.0-1.4 ########################################
[ 127s] python310-pytest-xdist-3.5.0-1.4 ########################################
[ 127s] python311-pytest-xdist-3.5.0-1.4 ########################################
[ 127s] python39-opt-einsum-3.3.0-3.1 ########################################
[ 127s] python312-opt-einsum-3.3.0-3.1 ########################################
[ 127s] python311-opt-einsum-3.3.0-3.1 ########################################
[ 127s] python310-opt-einsum-3.3.0-3.1 ########################################
[ 128s] python310-pip-23.3.2-3.1 ########################################
[ 129s] python310-wheel-0.42.0-1.2 ########################################
[ 130s] python311-pip-23.3.2-3.1 ########################################
[ 130s] python311-wheel-0.42.0-1.2 ########################################
[ 132s] python312-pip-23.3.2-3.1 ########################################
[ 132s] python312-wheel-0.42.0-1.2 ########################################
[ 133s] python39-pip-23.3.2-3.1 ########################################
[ 133s] python39-wheel-0.42.0-1.2 ########################################
[ 134s] python310-setuptools_scm-8.0.4-1.3 ########################################
[ 134s] python311-setuptools_scm-8.0.4-1.3 ########################################
[ 134s] python312-setuptools_scm-8.0.4-1.3 ########################################
[ 134s] python39-setuptools_scm-8.0.4-1.3 ########################################
[ 134s] python39-tqdm-4.66.1-3.2 ########################################
[ 134s] python39-autoray-0.6.8-1.2 ########################################
[ 134s] python312-tqdm-4.66.1-3.2 ########################################
[ 134s] python312-autoray-0.6.8-1.2 ########################################
[ 134s] python311-tqdm-4.66.1-3.2 ########################################
[ 134s] python311-autoray-0.6.8-1.2 ########################################
[ 134s] python310-tqdm-4.66.1-3.2 ########################################
[ 135s] python310-autoray-0.6.8-1.2 ########################################
[ 135s] fdupes-2.2.1-1.3 ########################################
[ 142s] now finalizing build dir...
[ 142s] ... running 01-add_abuild_user_to_trusted_group
[ 142s] ... running 02-set_timezone_to_utc
[ 142s] ... running 03-set-permissions-secure
[ 142s] ... running 11-hack_uname_version_to_kernel_version
[ 144s] setting SOURCE_DATE_EPOCH_MTIME to 1709065176
[ 147s] -----------------------------------------------------------------
[ 147s] I have the following modifications for python-cotengra.spec:
[ 147s] 21c21
[ 147s] < Release: 0
[ 147s] ---
[ 147s] > Release: 1.1
[ 151s] build target is riscv64-suse-linux
[ 151s] -----------------------------------------------------------------
[ 151s] ----- building python-cotengra.spec (user abuild)
[ 151s] -----------------------------------------------------------------
[ 151s] -----------------------------------------------------------------
[ 154s] setting SOURCE_DATE_EPOCH_MTIME to 1709065176
[ 154s] + exec rpmbuild -ba --define '_srcdefattr (-,root,root)' --nosignature --target=riscv64-suse-linux --define '_build_create_debug 1' --define 'disturl obs://build.opensuse.org/openSUSE:Factory:RISCV/standard/55d959dbdcbb7afad8402a72e7105d02-python-cotengra' /home/abuild/rpmbuild/SOURCES/python-cotengra.spec
[ 178s] Building target platforms: riscv64-suse-linux
[ 178s] Building for target riscv64-suse-linux
[ 178s] Executing(%prep): /usr/bin/bash -e /var/tmp/rpm-tmp.uv4fmQ
[ 178s] + umask 022
[ 178s] + cd /home/abuild/rpmbuild/BUILD
[ 178s] + cd /home/abuild/rpmbuild/BUILD
[ 178s] + rm -rf cotengra-0.5.6
[ 178s] + /usr/lib/rpm/rpmuncompress -x /home/abuild/rpmbuild/SOURCES/cotengra-0.5.6.tar.gz
[ 179s] + STATUS=0
[ 179s] + '[' 0 -ne 0 ']'
[ 179s] + cd cotengra-0.5.6
[ 179s] + rm -rf /home/abuild/rpmbuild/BUILD/cotengra-0.5.6-SPECPARTS
[ 179s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILD/cotengra-0.5.6-SPECPARTS
[ 179s] + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w .
[ 179s] + sed -i /addopts/d pyproject.toml
[ 179s] + rm cotengra/.gitattributes
[ 179s] + RPM_EC=0
[ 179s] ++ jobs -p
[ 179s] + exit 0
[ 179s] Executing(%build): /usr/bin/bash -e /var/tmp/rpm-tmp.dKQJzQ
[ 179s] + umask 022
[ 179s] + cd /home/abuild/rpmbuild/BUILD
[ 179s] + /usr/bin/rm -rf /home/abuild/rpmbuild/BUILDROOT/python-cotengra-0.5.6-1.1.riscv64
[ 179s] ++ dirname /home/abuild/rpmbuild/BUILDROOT/python-cotengra-0.5.6-1.1.riscv64
[ 179s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILDROOT
[ 179s] + /usr/bin/mkdir /home/abuild/rpmbuild/BUILDROOT/python-cotengra-0.5.6-1.1.riscv64
[ 179s] + cd cotengra-0.5.6
[ 179s] + ref=/usr/lib/rpm
[ 179s] + mints=0
[ 179s] + case $(uname -m) in
[ 179s] ++ uname -m
[ 180s] + mints=20160911
[ 180s] + for s in guess sub
[ 180s] ++ find -maxdepth 8 -name config.guess
[ 180s] + for s in guess sub
[ 180s] ++ find -maxdepth 8 -name config.sub
[ 180s] ++ '[' -f _current_flavor ']'
[ 180s] ++ true
[ 180s] + last_flavor=
[ 180s] + '[' -z '' ']'
[ 180s] + last_flavor=tmp
[ 180s] + '[' tmp '!=' python39 ']'
[ 180s] + '[' -d build ']'
[ 180s] + '[' -d _build.python39 ']'
[ 180s] + echo python39
[ 180s] + python_flavor=python39
[ 180s] + myargs=
[ 180s] + '[' -f './dist/*-none-any.whl' ']'
[ 180s] + /usr/bin/python3.9 -mpip wheel --verbose --progress-bar off --disable-pip-version-check --use-pep517 --no-build-isolation --no-deps --wheel-dir ./build .
[ 183s] Processing /home/abuild/rpmbuild/BUILD/cotengra-0.5.6
[ 183s] Preparing metadata (pyproject.toml): started
[ 183s] Running command Preparing metadata (pyproject.toml)
[ 184s] running dist_info
[ 184s] creating /tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info
[ 184s] writing /tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/PKG-INFO
[ 184s] writing dependency_links to /tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/dependency_links.txt
[ 184s] writing requirements to /tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/requires.txt
[ 184s] writing top-level names to /tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/top_level.txt
[ 184s] writing manifest file '/tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/SOURCES.txt'
[ 185s] reading manifest file '/tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/SOURCES.txt'
[ 185s] reading manifest template 'MANIFEST.in'
[ 185s] warning: no files found matching 'cotengra/kahypar_profiles/*.ini'
[ 185s] warning: no files found matching 'cotengra/kahypar_profiles/old/*.ini'
[ 185s] adding license file 'LICENSE.md'
[ 185s] writing manifest file '/tmp/pip-modern-metadata-0amgos3t/cotengra.egg-info/SOURCES.txt'
[ 185s] creating '/tmp/pip-modern-metadata-0amgos3t/cotengra-0.5.6.dist-info'
[ 185s] Preparing metadata (pyproject.toml): finished with status 'done'
[ 185s] Building wheels for collected packages: cotengra
[ 185s] Building wheel for cotengra (pyproject.toml): started
[ 185s] Running command Building wheel for cotengra (pyproject.toml)
[ 187s] running bdist_wheel
[ 187s] running build
[ 187s] running build_py
[ 187s] creating build/lib
[ 187s] creating build/lib/cotengra
[ 187s] copying cotengra/__init__.py -> build/lib/cotengra
[ 187s] copying cotengra/_version.py -> build/lib/cotengra
[ 187s] copying cotengra/contract.py -> build/lib/cotengra
[ 187s] copying cotengra/core.py -> build/lib/cotengra
[ 187s] copying cotengra/hypergraph.py -> build/lib/cotengra
[ 187s] copying cotengra/interface.py -> build/lib/cotengra
[ 187s] copying cotengra/oe.py -> build/lib/cotengra
[ 187s] copying cotengra/parallel.py -> build/lib/cotengra
[ 187s] copying cotengra/plot.py -> build/lib/cotengra
[ 187s] copying cotengra/presets.py -> build/lib/cotengra
[ 187s] copying cotengra/scoring.py -> build/lib/cotengra
[ 187s] copying cotengra/slicer.py -> build/lib/cotengra
[ 187s] copying cotengra/utils.py -> build/lib/cotengra
[ 187s] creating build/lib/cotengra/experimental
[ 187s] copying cotengra/experimental/__init__.py -> build/lib/cotengra/experimental
[ 187s] copying cotengra/experimental/path_compressed_branchbound.py -> build/lib/cotengra/experimental
[ 187s] copying cotengra/experimental/path_compressed_mcts.py -> build/lib/cotengra/experimental
[ 187s] creating build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/__init__.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper_baytune.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper_choco.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper_nevergrad.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper_optuna.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper_random.py -> build/lib/cotengra/hyperoptimizers
[ 187s] copying cotengra/hyperoptimizers/hyper_skopt.py -> build/lib/cotengra/hyperoptimizers
[ 187s] creating build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/__init__.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_basic.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_compressed.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_flowcutter.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_greedy.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_igraph.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_kahypar.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_labels.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/path_quickbb.py -> build/lib/cotengra/pathfinders
[ 187s] copying cotengra/pathfinders/treedecomp.py -> build/lib/cotengra/pathfinders
[ 187s] running egg_info
[ 187s] writing cotengra.egg-info/PKG-INFO
[ 187s] writing dependency_links to cotengra.egg-info/dependency_links.txt
[ 187s] writing requirements to cotengra.egg-info/requires.txt
[ 187s] writing top-level names to cotengra.egg-info/top_level.txt
[ 187s] reading manifest file 'cotengra.egg-info/SOURCES.txt'
[ 187s] reading manifest template 'MANIFEST.in'
[ 187s] warning: no files found matching 'cotengra/kahypar_profiles/*.ini'
[ 187s] warning: no files found matching 'cotengra/kahypar_profiles/old/*.ini'
[ 187s] adding license file 'LICENSE.md'
[ 187s] writing manifest file 'cotengra.egg-info/SOURCES.txt'
[ 187s] /usr/lib/python3.9/site-packages/setuptools/command/build_py.py:207: _Warning: Package 'cotengra.pathfinders.kahypar_profiles' is absent from the `packages` configuration.
[ 187s] !!
[ 187s]
[ 187s] ********************************************************************************
[ 187s] ############################
[ 187s] # Package would be ignored #
[ 187s] ############################
[ 187s] Python recognizes 'cotengra.pathfinders.kahypar_profiles' as an importable package[^1],
[ 187s] but it is absent from setuptools' `packages` configuration.
[ 187s]
[ 187s] This leads to an ambiguous overall configuration. If you want to distribute this
[ 187s] package, please make sure that 'cotengra.pathfinders.kahypar_profiles' is explicitly added
[ 187s] to the `packages` configuration field.
[ 187s]
[ 187s] Alternatively, you can also rely on setuptools' discovery methods
[ 187s] (for example by using `find_namespace_packages(...)`/`find_namespace:`
[ 187s] instead of `find_packages(...)`/`find:`).
[ 187s]
[ 187s] You can read more about "package discovery" on setuptools documentation page:
[ 187s]
[ 187s] - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
[ 187s]
[ 187s] If you don't want 'cotengra.pathfinders.kahypar_profiles' to be distributed and are
[ 187s] already explicitly excluding 'cotengra.pathfinders.kahypar_profiles' via
[ 187s] `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
[ 187s] you can try to use `exclude_package_data`, or `include-package-data=False` in
[ 187s] combination with a more fine grained `package-data` configuration.
[ 187s]
[ 187s] You can read more about "package data files" on setuptools documentation page:
[ 187s]
[ 187s] - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[ 187s]
[ 187s]
[ 187s] [^1]: For Python, any directory (with suitable naming) can be imported,
[ 187s] even if it does not contain any `.py` files.
[ 187s] On the other hand, currently there is no concept of package data
[ 187s] directory, all directories are treated like packages.
[ 187s] ********************************************************************************
[ 187s]
[ 187s] !!
[ 187s] check.warn(importable)
[ 187s] /usr/lib/python3.9/site-packages/setuptools/command/build_py.py:207: _Warning: Package 'cotengra.pathfinders.kahypar_profiles.old' is absent from the `packages` configuration.
[ 187s] !!
[ 187s]
[ 187s] ********************************************************************************
[ 187s] ############################
[ 188s] # Package would be ignored #
[ 188s] ############################
[ 188s] Python recognizes 'cotengra.pathfinders.kahypar_profiles.old' as an importable package[^1],
[ 188s] but it is absent from setuptools' `packages` configuration.
[ 188s]
[ 188s] This leads to an ambiguous overall configuration. If you want to distribute this
[ 188s] package, please make sure that 'cotengra.pathfinders.kahypar_profiles.old' is explicitly added
[ 188s] to the `packages` configuration field.
[ 188s]
[ 188s] Alternatively, you can also rely on setuptools' discovery methods
[ 188s] (for example by using `find_namespace_packages(...)`/`find_namespace:`
[ 188s] instead of `find_packages(...)`/`find:`).
[ 188s]
[ 188s] You can read more about "package discovery" on setuptools documentation page:
[ 188s]
[ 188s] - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
[ 188s]
[ 188s] If you don't want 'cotengra.pathfinders.kahypar_profiles.old' to be distributed and are
[ 188s] already explicitly excluding 'cotengra.pathfinders.kahypar_profiles.old' via
[ 188s] `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,
[ 188s] you can try to use `exclude_package_data`, or `include-package-data=False` in
[ 188s] combination with a more fine grained `package-data` configuration.
[ 188s]
[ 188s] You can read more about "package data files" on setuptools documentation page:
[ 188s]
[ 188s] - https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[ 188s]
[ 188s]
[ 188s] [^1]: For Python, any directory (with suitable naming) can be imported,
[ 188s] even if it does not contain any `.py` files.
[ 188s] On the other hand, currently there is no concept of package data
[ 188s] directory, all directories are treated like packages.
[ 188s] ********************************************************************************
[ 188s]
[ 188s] !!
[ 188s] check.warn(importable)
[ 188s] creating build/lib/cotengra/pathfinders/kahypar_profiles
[ 188s] copying cotengra/pathfinders/kahypar_profiles/cut_kKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles
[ 188s] copying cotengra/pathfinders/kahypar_profiles/cut_rKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles
[ 188s] copying cotengra/pathfinders/kahypar_profiles/km1_kKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles
[ 188s] copying cotengra/pathfinders/kahypar_profiles/km1_rKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles
[ 188s] creating build/lib/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying cotengra/pathfinders/kahypar_profiles/old/cut_kKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying cotengra/pathfinders/kahypar_profiles/old/cut_rKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying cotengra/pathfinders/kahypar_profiles/old/km1_kKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying cotengra/pathfinders/kahypar_profiles/old/km1_rKaHyPar_sea20.ini -> build/lib/cotengra/pathfinders/kahypar_profiles/old
[ 188s] installing to build/bdist.linux-riscv64/wheel
[ 188s] running install
[ 188s] running install_lib
[ 188s] creating build/bdist.linux-riscv64
[ 188s] creating build/bdist.linux-riscv64/wheel
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/__init__.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/_version.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/contract.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/core.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/hypergraph.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/interface.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/oe.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/parallel.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/plot.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/presets.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/scoring.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/slicer.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] copying build/lib/cotengra/utils.py -> build/bdist.linux-riscv64/wheel/cotengra
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra/experimental
[ 188s] copying build/lib/cotengra/experimental/__init__.py -> build/bdist.linux-riscv64/wheel/cotengra/experimental
[ 188s] copying build/lib/cotengra/experimental/path_compressed_branchbound.py -> build/bdist.linux-riscv64/wheel/cotengra/experimental
[ 188s] copying build/lib/cotengra/experimental/path_compressed_mcts.py -> build/bdist.linux-riscv64/wheel/cotengra/experimental
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/__init__.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper_baytune.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper_choco.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper_nevergrad.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper_optuna.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper_random.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] copying build/lib/cotengra/hyperoptimizers/hyper_skopt.py -> build/bdist.linux-riscv64/wheel/cotengra/hyperoptimizers
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/__init__.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_basic.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_compressed.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_flowcutter.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_greedy.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_igraph.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_kahypar.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_labels.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/path_quickbb.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] copying build/lib/cotengra/pathfinders/treedecomp.py -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/cut_kKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/cut_rKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/km1_kKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/km1_rKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/old/cut_kKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/old/cut_rKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/old/km1_kKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles/old
[ 188s] copying build/lib/cotengra/pathfinders/kahypar_profiles/old/km1_rKaHyPar_sea20.ini -> build/bdist.linux-riscv64/wheel/cotengra/pathfinders/kahypar_profiles/old
[ 188s] running install_egg_info
[ 188s] Copying cotengra.egg-info to build/bdist.linux-riscv64/wheel/cotengra-0.5.6-py3.9.egg-info
[ 188s] running install_scripts
[ 188s] creating build/bdist.linux-riscv64/wheel/cotengra-0.5.6.dist-info/WHEEL
[ 188s] creating '/tmp/pip-wheel-ngj555jr/.tmp-yx9lpxer/cotengra-0.5.6-py3-none-any.whl' and adding 'build/bdist.linux-riscv64/wheel' to it
[ 188s] adding 'cotengra/__init__.py'
[ 188s] adding 'cotengra/_version.py'
[ 188s] adding 'cotengra/contract.py'
[ 188s] adding 'cotengra/core.py'
[ 188s] adding 'cotengra/hypergraph.py'
[ 188s] adding 'cotengra/interface.py'
[ 188s] adding 'cotengra/oe.py'
[ 188s] adding 'cotengra/parallel.py'
[ 188s] adding 'cotengra/plot.py'
[ 188s] adding 'cotengra/presets.py'
[ 188s] adding 'cotengra/scoring.py'
[ 188s] adding 'cotengra/slicer.py'
[ 188s] adding 'cotengra/utils.py'
[ 188s] adding 'cotengra/experimental/__init__.py'
[ 188s] adding 'cotengra/experimental/path_compressed_branchbound.py'
[ 188s] adding 'cotengra/experimental/path_compressed_mcts.py'
[ 188s] adding 'cotengra/hyperoptimizers/__init__.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper_baytune.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper_choco.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper_nevergrad.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper_optuna.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper_random.py'
[ 188s] adding 'cotengra/hyperoptimizers/hyper_skopt.py'