~sircmpwn/#1063278

success

Daily scheduled build image refresh

Owner
~sircmpwn
Created
2 months ago
Updated
2 months ago
Build manifest
view manifest »

Tasks

view log »
genimg view log »
sanity-check view log »
deploy view log »
go to bottom »
go to top »
setup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
[#1063278] 2023/09/25 22:30:01 Booting image fedora/latest (default) on port 22685
[#1063278] 2023/09/25 22:30:01 Waiting for guest to settle
[#1063278] 2023/09/25 22:30:23 Sending tasks
[#1063278] 2023/09/25 22:30:24 Sending build environment
[#1063278] 2023/09/25 22:30:25 Sending secrets
[#1063278] 2023/09/25 22:30:25 Resolving secret fa00a8d3-7b63-42d5-8060-3bb31c3e3018
[#1063278] 2023/09/25 22:30:26 Installing packages
Warning: Permanently added '[localhost]:22685' (ED25519) to the list of known hosts.
Fedora 38 - x86_64                              8.8 MB/s |  83 MB     00:09    
Fedora 38 openh264 (From Cisco) - x86_64        480  B/s | 2.5 kB     00:05    
Fedora 38 - x86_64 - Updates                    4.2 MB/s |  32 MB     00:07    
Dependencies resolved.
=================================================================================================
 Package                                 Arch    Version                           Repo      Size
=================================================================================================
Installing:
 e2fsprogs                               x86_64  1.46.5-4.fc38                     fedora   1.0 M
 qemu-img                                x86_64  2:7.2.5-1.fc38                    updates  1.8 M
 qemu-system-x86                         x86_64  2:7.2.5-1.fc38                    updates   13 k
 rsync                                   x86_64  3.2.7-2.fc38                      fedora   424 k
Installing dependencies:
 ModemManager-glib                       x86_64  1.20.6-1.fc38                     updates  323 k
 NetworkManager-libnm                    x86_64  1:1.42.8-1.fc38                   updates  1.8 M
 SDL2                                    x86_64  2.26.3-1.fc38                     fedora   690 k
 SDL2_image                              x86_64  2.6.3-1.fc38                      fedora   104 k
 adwaita-cursor-theme                    noarch  44.0-1.fc38                       fedora   633 k
 adwaita-icon-theme                      noarch  44.0-1.fc38                       fedora   1.1 M
 alsa-lib                                x86_64  1.2.10-2.fc38                     updates  521 k
 at-spi2-atk                             x86_64  2.48.3-1.fc38                     updates   85 k
 at-spi2-core                            x86_64  2.48.3-1.fc38                     updates  372 k
 atk                                     x86_64  2.48.3-1.fc38                     updates   81 k
 avahi-glib                              x86_64  0.8-22.fc38                       updates   15 k
 bluez-libs                              x86_64  5.69-1.fc38                       updates   83 k
 boost-iostreams                         x86_64  1.78.0-14.fc38                    updates   40 k
 brlapi                                  x86_64  0.8.4-10.fc38                     fedora   177 k
 capstone                                x86_64  4.0.2-12.fc38                     fedora   861 k
 cdparanoia-libs                         x86_64  10.2-41.fc38                      fedora    54 k
 colord-libs                             x86_64  1.4.6-4.fc38                      updates  232 k
 daxctl-libs                             x86_64  78-1.fc38                         updates   41 k
 device-mapper-multipath-libs            x86_64  0.9.4-2.fc38                      fedora   286 k
 duktape                                 x86_64  2.7.0-2.fc38                      fedora   170 k
 e2fsprogs-libs                          x86_64  1.46.5-4.fc38                     fedora   222 k
 edk2-ovmf                               noarch  20230524-3.fc38                   updates   10 M
 exempi                                  x86_64  2.6.3-2.fc38                      fedora   576 k
 exiv2-libs                              x86_64  0.27.6-4.fc38                     fedora   782 k
 fdk-aac-free                            x86_64  2.0.0-10.fc38                     fedora   336 k
 flac-libs                               x86_64  1.4.3-1.fc38                      updates  263 k
 fmt                                     x86_64  9.1.0-2.fc38                      fedora   117 k
 fuse-common                             x86_64  3.14.1-1.fc38                     updates  6.9 k
 fuse3                                   x86_64  3.14.1-1.fc38                     updates   55 k
 fuse3-libs                              x86_64  3.14.1-1.fc38                     updates   93 k
 gdk-pixbuf2-modules                     x86_64  2.42.10-2.fc38                    fedora    85 k
 geoclue2                                x86_64  2.7.0-1.fc38                      updates  156 k
 giflib                                  x86_64  5.2.1-17.fc38                     updates   51 k
 glibmm2.4                               x86_64  2.66.6-1.fc38                     updates  687 k
 glusterfs-client-xlators                x86_64  11.0-3.fc38                       updates  764 k
 gobject-introspection                   x86_64  1.76.1-1.fc38                     updates  262 k
 gperftools-libs                         x86_64  2.9.1-5.fc38                      fedora   307 k
 graphene                                x86_64  1.10.6-5.fc38                     fedora    62 k
 gsettings-desktop-schemas               x86_64  44.0-1.fc38                       fedora   733 k
 gsm                                     x86_64  1.0.22-2.fc38                     fedora    35 k
 gstreamer1                              x86_64  1.22.6-1.fc38                     updates  1.4 M
 gstreamer1-plugins-base                 x86_64  1.22.5-1.fc38                     updates  2.2 M
 gtk-update-icon-cache                   x86_64  3.24.38-1.fc38                    updates   34 k
 gtk3                                    x86_64  3.24.38-1.fc38                    updates  4.8 M
 hicolor-icon-theme                      noarch  0.17-15.fc38                      fedora    66 k
 hwdata                                  noarch  0.374-1.fc38                      updates  1.6 M
 ipxe-roms-qemu                          noarch  20220210-3.git64113751.fc38       fedora   1.5 M
 iso-codes                               noarch  4.13.0-1.fc38                     fedora   3.5 M
 jack-audio-connection-kit               x86_64  1.9.22-1.fc38                     fedora   527 k
 json-glib                               x86_64  1.6.6-4.fc38                      fedora   162 k
 lame-libs                               x86_64  3.100-14.fc38                     fedora   337 k
 libX11-xcb                              x86_64  1.8.6-1.fc38                      updates   11 k
 libXcomposite                           x86_64  0.4.5-9.fc38                      fedora    23 k
 libXcursor                              x86_64  1.2.1-3.fc38                      fedora    30 k
 libXdamage                              x86_64  1.1.5-9.fc38                      fedora    22 k
 libXfixes                               x86_64  6.0.0-5.fc38                      fedora    19 k
 libXi                                   x86_64  1.8.1-1.fc38                      updates   40 k
 libXinerama                             x86_64  1.1.5-2.fc38                      fedora    14 k
 libXrandr                               x86_64  1.5.2-10.fc38                     fedora    27 k
 libXtst                                 x86_64  1.2.4-2.fc38                      fedora    20 k
 libXv                                   x86_64  1.0.11-18.fc38                    fedora    18 k
 libXxf86vm                              x86_64  1.1.5-2.fc38                      fedora    18 k
 libaio                                  x86_64  0.3.111-15.fc38                   fedora    23 k
 libasyncns                              x86_64  0.8-24.fc38                       fedora    30 k
 libblkio                                x86_64  1.2.2-3.fc38                      fedora   267 k
 libbpf                                  x86_64  2:1.1.0-2.fc38                    fedora   164 k
 libcacard                               x86_64  3:2.8.1-4.fc38                    fedora    55 k
 libcanberra                             x86_64  0.30-31.fc38                      fedora    85 k
 libcloudproviders                       x86_64  0.3.2-1.fc38                      updates   44 k
 libconfig                               x86_64  1.7.3-5.fc38                      fedora    71 k
 libcue                                  x86_64  2.2.1-11.fc38                     fedora    34 k
 libdecor                                x86_64  0.1.1-2.fc38                      fedora    42 k
 libdrm                                  x86_64  2.4.114-2.fc38                    fedora   157 k
 libepoxy                                x86_64  1.5.10-3.fc38                     fedora   237 k
 libexif                                 x86_64  0.6.24-4.fc38                     fedora   461 k
 libfdt                                  x86_64  1.7.0-2.fc38                      updates   33 k
 libffado                                x86_64  2.4.7-1.fc38                      fedora   859 k
 libgexiv2                               x86_64  0.14.2-1.fc38                     updates   98 k
 libgfapi0                               x86_64  11.0-3.fc38                       updates   96 k
 libgfrpc0                               x86_64  11.0-3.fc38                       updates   51 k
 libgfxdr0                               x86_64  11.0-3.fc38                       updates   25 k
 libglusterfs0                           x86_64  11.0-3.fc38                       updates  284 k
 libglvnd                                x86_64  1:1.6.0-2.fc38                    fedora   134 k
 libglvnd-egl                            x86_64  1:1.6.0-2.fc38                    fedora    36 k
 libglvnd-glx                            x86_64  1:1.6.0-2.fc38                    fedora   142 k
 libgrss                                 x86_64  0.7.0-16.fc38                     fedora    62 k
 libgsf                                  x86_64  1.14.50-1.fc38                    fedora   258 k
 libgudev                                x86_64  237-4.fc38                        fedora    35 k
 libgusb                                 x86_64  0.4.5-1.fc38                      fedora    63 k
 libgxps                                 x86_64  0.3.2-5.fc38                      fedora    77 k
 libibverbs                              x86_64  44.0-3.fc38                       fedora   429 k
 libicu                                  x86_64  72.1-2.fc38                       fedora    10 M
 libiec61883                             x86_64  1.2.0-31.fc38                     fedora    40 k
 libiptcdata                             x86_64  1.0.5-13.fc38                     fedora    61 k
 libiscsi                                x86_64  1.19.0-7.fc38                     fedora    86 k
 libldac                                 x86_64  2.0.2.3-12.fc38                   fedora    41 k
 libnfs                                  x86_64  4.0.0-8.fc38                      fedora   137 k
 libnl3                                  x86_64  3.7.0-3.fc38                      fedora   345 k
 libnotify                               x86_64  0.8.2-1.fc38                      fedora    51 k
 libogg                                  x86_64  2:1.3.5-5.fc38                    fedora    33 k
 libosinfo                               x86_64  1.10.0-5.fc38                     fedora   318 k
 libpciaccess                            x86_64  0.16-8.fc38                       fedora    26 k
 libpmem                                 x86_64  1.12.1-3.fc38                     fedora   110 k
 libpmemobj                              x86_64  1.12.1-3.fc38                     fedora   158 k
 libproxy                                x86_64  0.4.18-6.fc38                     fedora    71 k
 librados2                               x86_64  2:17.2.6-3.fc38                   updates  3.1 M
 libraw1394                              x86_64  2.1.2-17.fc38                     fedora    64 k
 librbd1                                 x86_64  2:17.2.6-3.fc38                   updates  3.0 M
 librdmacm                               x86_64  44.0-3.fc38                       fedora    72 k
 libsamplerate                           x86_64  0.2.2-4.fc38                      fedora   1.3 M
 libsbc                                  x86_64  2.0-2.fc38                        fedora    47 k
 libsigc++20                             x86_64  2.10.8-3.fc38                     fedora    39 k
 libslirp                                x86_64  4.7.0-3.fc38                      fedora    75 k
 libsndfile                              x86_64  1.1.0-6.fc38                      fedora   214 k
 libsoup                                 x86_64  2.74.3-2.fc38                     fedora   402 k
 libsoup3                                x86_64  3.4.3-1.fc38                      updates  389 k
 libss                                   x86_64  1.46.5-4.fc38                     fedora    31 k
 libstemmer                              x86_64  2.2.0-5.fc38                      fedora   168 k
 libtdb                                  x86_64  1.4.8-1.fc38                      fedora    51 k
 libtheora                               x86_64  1:1.1.1-33.fc38                   fedora   166 k
 libtracker-sparql                       x86_64  3.5.3-2.fc38                      updates  385 k
 libunwind                               x86_64  1.6.2-7.fc38                      fedora    68 k
 liburing                                x86_64  2.4-2.fc38                        updates   38 k
 libusb1                                 x86_64  1.0.26-2.fc38                     fedora    74 k
 libva                                   x86_64  2.18.0-1.fc38                     fedora   105 k
 libvisual                               x86_64  1:0.4.1-1.fc38                    fedora   151 k
 libvorbis                               x86_64  1:1.3.7-7.fc38                    fedora   195 k
 libwayland-client                       x86_64  1.22.0-1.fc38                     updates   34 k
 libwayland-cursor                       x86_64  1.22.0-1.fc38                     updates   19 k
 libwayland-egl                          x86_64  1.22.0-1.fc38                     updates   13 k
 libwayland-server                       x86_64  1.22.0-1.fc38                     updates   42 k
 libxkbcommon                            x86_64  1.5.0-2.fc38                      fedora   140 k
 libxml++                                x86_64  2.42.2-2.fc38                     fedora    99 k
 libxshmfence                            x86_64  1.3-12.fc38                       fedora    12 k
 libxslt                                 x86_64  1.1.38-1.fc38                     updates  186 k
 llvm-libs                               x86_64  16.0.6-3.fc38                     updates   27 M
 lm_sensors-libs                         x86_64  3.6.0-13.fc38                     fedora    41 k
 low-memory-monitor                      x86_64  2.1-7.fc38                        fedora    34 k
 lttng-ust                               x86_64  2.13.5-2.fc38                     fedora   332 k
 lzo                                     x86_64  2.10-8.fc38                       fedora    66 k
 mesa-dri-drivers                        x86_64  23.1.7-1.fc38                     updates   19 M
 mesa-filesystem                         x86_64  23.1.7-1.fc38                     updates   18 k
 mesa-libEGL                             x86_64  23.1.7-1.fc38                     updates  131 k
 mesa-libGL                              x86_64  23.1.7-1.fc38                     updates  173 k
 mesa-libgbm                             x86_64  23.1.7-1.fc38                     updates   45 k
 mesa-libglapi                           x86_64  23.1.7-1.fc38                     updates   54 k
 mpg123-libs                             x86_64  1.31.3-1.fc38                     fedora   340 k
 ndctl-libs                              x86_64  78-1.fc38                         updates   88 k
 numactl-libs                            x86_64  2.0.16-2.fc38                     fedora    31 k
 opus                                    x86_64  1.3.1-12.fc38                     fedora   206 k
 orc                                     x86_64  0.4.33-2.fc38                     fedora   202 k
 osinfo-db                               noarch  20230719-1.fc38                   updates  433 k
 osinfo-db-tools                         x86_64  1.10.0-6.fc38                     fedora    72 k
 pcre2-utf32                             x86_64  10.42-1.fc38.1                    fedora   201 k
 pcsc-lite-libs                          x86_64  1.9.9-3.fc38                      fedora    29 k
 pipewire-libs                           x86_64  0.3.80-1.fc38                     updates  1.8 M
 polkit                                  x86_64  122-3.fc38.1                      updates  150 k
 polkit-libs                             x86_64  122-3.fc38.1                      updates   63 k
 polkit-pkla-compat                      x86_64  0.1-23.fc38                       fedora    44 k
 pulseaudio-libs                         x86_64  16.1-4.fc38                       fedora   694 k
 qemu-audio-alsa                         x86_64  2:7.2.5-1.fc38                    updates   22 k
 qemu-audio-dbus                         x86_64  2:7.2.5-1.fc38                    updates   21 k
 qemu-audio-jack                         x86_64  2:7.2.5-1.fc38                    updates   20 k
 qemu-audio-oss                          x86_64  2:7.2.5-1.fc38                    updates   20 k
 qemu-audio-pa                           x86_64  2:7.2.5-1.fc38                    updates   21 k
 qemu-audio-sdl                          x86_64  2:7.2.5-1.fc38                    updates   19 k
 qemu-audio-spice                        x86_64  2:7.2.5-1.fc38                    updates   18 k
 qemu-block-blkio                        x86_64  2:7.2.5-1.fc38                    updates   24 k
 qemu-block-curl                         x86_64  2:7.2.5-1.fc38                    updates   23 k
 qemu-block-dmg                          x86_64  2:7.2.5-1.fc38                    updates   16 k
 qemu-block-gluster                      x86_64  2:7.2.5-1.fc38                    updates   25 k
 qemu-block-iscsi                        x86_64  2:7.2.5-1.fc38                    updates   31 k
 qemu-block-nfs                          x86_64  2:7.2.5-1.fc38                    updates   24 k
 qemu-block-rbd                          x86_64  2:7.2.5-1.fc38                    updates   27 k
 qemu-block-ssh                          x86_64  2:7.2.5-1.fc38                    updates   26 k
 qemu-char-baum                          x86_64  2:7.2.5-1.fc38                    updates   20 k
 qemu-char-spice                         x86_64  2:7.2.5-1.fc38                    updates   19 k
 qemu-common                             x86_64  2:7.2.5-1.fc38                    updates  583 k
 qemu-device-display-qxl                 x86_64  2:7.2.5-1.fc38                    updates   41 k
 qemu-device-display-vhost-user-gpu      x86_64  2:7.2.5-1.fc38                    updates  239 k
 qemu-device-display-virtio-gpu          x86_64  2:7.2.5-1.fc38                    updates   35 k
 qemu-device-display-virtio-gpu-ccw      x86_64  2:7.2.5-1.fc38                    updates   16 k
 qemu-device-display-virtio-gpu-gl       x86_64  2:7.2.5-1.fc38                    updates   23 k
 qemu-device-display-virtio-gpu-pci      x86_64  2:7.2.5-1.fc38                    updates   17 k
 qemu-device-display-virtio-gpu-pci-gl   x86_64  2:7.2.5-1.fc38                    updates   16 k
 qemu-device-display-virtio-vga          x86_64  2:7.2.5-1.fc38                    updates   18 k
 qemu-device-display-virtio-vga-gl       x86_64  2:7.2.5-1.fc38                    updates   16 k
 qemu-device-usb-host                    x86_64  2:7.2.5-1.fc38                    updates   30 k
 qemu-device-usb-redirect                x86_64  2:7.2.5-1.fc38                    updates   36 k
 qemu-device-usb-smartcard               x86_64  2:7.2.5-1.fc38                    updates   24 k
 qemu-pr-helper                          x86_64  2:7.2.5-1.fc38                    updates  326 k
 qemu-system-x86-core                    x86_64  2:7.2.5-1.fc38                    updates  7.6 M
 qemu-ui-curses                          x86_64  2:7.2.5-1.fc38                    updates   24 k
 qemu-ui-egl-headless                    x86_64  2:7.2.5-1.fc38                    updates   17 k
 qemu-ui-gtk                             x86_64  2:7.2.5-1.fc38                    updates   38 k
 qemu-ui-opengl                          x86_64  2:7.2.5-1.fc38                    updates   23 k
 qemu-ui-sdl                             x86_64  2:7.2.5-1.fc38                    updates   27 k
 qemu-ui-spice-app                       x86_64  2:7.2.5-1.fc38                    updates   18 k
 qemu-ui-spice-core                      x86_64  2:7.2.5-1.fc38                    updates   35 k
 qemu-virtiofsd                          x86_64  2:7.2.5-1.fc38                    updates  270 k
 rtkit                                   x86_64  0.11-58.fc38                      fedora    55 k
 seabios-bin                             noarch  1.16.2-1.fc38                     fedora   183 k
 seavgabios-bin                          noarch  1.16.2-1.fc38                     fedora    38 k
 sgabios-bin                             noarch  1:0.20180715git-10.fc38           fedora    10 k
 snappy                                  x86_64  1.1.9-7.fc38                      fedora    36 k
 sound-theme-freedesktop                 noarch  0.8-19.fc38                       fedora   383 k
 spice-server                            x86_64  0.15.1-2.fc38                     fedora   391 k
 totem-pl-parser                         x86_64  3.26.6-6.fc38                     fedora   144 k
 tracker                                 x86_64  3.5.3-2.fc38                      updates  584 k
 uchardet                                x86_64  0.0.8-2.fc38                      fedora   108 k
 upower                                  x86_64  0.99.20-3.fc38                    fedora   139 k
 usbredir                                x86_64  0.13.0-2.fc38                     fedora    50 k
 userspace-rcu                           x86_64  0.13.2-2.fc38                     fedora   105 k
 virglrenderer                           x86_64  0.10.4-2.20230104git88b9fe3b.fc38 fedora   220 k
 vte-profile                             x86_64  0.72.2-1.fc38                     updates   26 k
 vte291                                  x86_64  0.72.2-1.fc38                     updates  324 k
 webrtc-audio-processing                 x86_64  0.3.1-10.fc38                     fedora   307 k
 wireplumber                             x86_64  0.4.14-1.fc38                     fedora    94 k
 wireplumber-libs                        x86_64  0.4.14-1.fc38                     fedora   343 k
 xdg-desktop-portal                      x86_64  1.16.0-3.fc38                     fedora   435 k
 xen-libs                                x86_64  4.17.2-1.fc38                     updates  639 k
 xen-licenses                            x86_64  4.17.2-1.fc38                     updates   56 k
 xkeyboard-config                        noarch  2.38-1.fc38                       fedora   963 k
 xprop                                   x86_64  1.2.5-3.fc38                      fedora    35 k
 xxhash-libs                             x86_64  0.8.2-1.fc38                      updates   37 k
 yajl                                    x86_64  2.1.0-21.fc38                     updates   38 k
Installing weak dependencies:
 abattis-cantarell-fonts                 noarch  0.301-9.fc38                      fedora   270 k
 adobe-source-code-pro-fonts             noarch  2.042.1.062.1.026-2.fc38          updates  806 k
 brltty                                  x86_64  6.5-10.fc38                       fedora   1.6 M
 dconf                                   x86_64  0.40.0-8.fc38                     fedora   107 k
 exiv2                                   x86_64  0.27.6-4.fc38                     fedora   980 k
 glib-networking                         x86_64  2.76.1-1.fc38                     updates  195 k
 libcanberra-gtk3                        x86_64  0.30-31.fc38                      fedora    31 k
 libproxy-duktape                        x86_64  0.4.18-6.fc38                     fedora    17 k
 mesa-va-drivers                         x86_64  23.1.7-1.fc38                     updates  3.4 M
 pipewire                                x86_64  0.3.80-1.fc38                     updates  110 k
 pipewire-alsa                           x86_64  0.3.80-1.fc38                     updates   64 k
 pipewire-pulseaudio                     x86_64  0.3.80-1.fc38                     updates  173 k
 tracker-miners                          x86_64  3.5.2-1.fc38                      updates  955 k
 xdg-desktop-portal-gtk                  x86_64  1.14.1-2.fc38                     fedora   146 k

Transaction Summary
=================================================================================================
Install  244 Packages

Total download size: 144 M
Installed size: 589 M
Downloading Packages:
(1/244): abattis-cantarell-fonts-0.301-9.fc38.n 1.7 MB/s | 270 kB     00:00    
(2/244): SDL2_image-2.6.3-1.fc38.x86_64.rpm     665 kB/s | 104 kB     00:00    
(3/244): SDL2-2.26.3-1.fc38.x86_64.rpm          2.1 MB/s | 690 kB     00:00    
(4/244): adwaita-cursor-theme-44.0-1.fc38.noarc 3.6 MB/s | 633 kB     00:00    
(5/244): brlapi-0.8.4-10.fc38.x86_64.rpm        3.0 MB/s | 177 kB     00:00    
(6/244): adwaita-icon-theme-44.0-1.fc38.noarch. 2.5 MB/s | 1.1 MB     00:00    
(7/244): cdparanoia-libs-10.2-41.fc38.x86_64.rp 746 kB/s |  54 kB     00:00    
(8/244): capstone-4.0.2-12.fc38.x86_64.rpm      2.9 MB/s | 861 kB     00:00    
(9/244): dconf-0.40.0-8.fc38.x86_64.rpm         2.6 MB/s | 107 kB     00:00    
(10/244): brltty-6.5-10.fc38.x86_64.rpm         3.7 MB/s | 1.6 MB     00:00    
(11/244): device-mapper-multipath-libs-0.9.4-2. 2.9 MB/s | 286 kB     00:00    
(12/244): duktape-2.7.0-2.fc38.x86_64.rpm       2.6 MB/s | 170 kB     00:00    
(13/244): e2fsprogs-libs-1.46.5-4.fc38.x86_64.r 2.8 MB/s | 222 kB     00:00    
(14/244): exempi-2.6.3-2.fc38.x86_64.rpm        3.2 MB/s | 576 kB     00:00    
(15/244): e2fsprogs-1.46.5-4.fc38.x86_64.rpm    3.3 MB/s | 1.0 MB     00:00    
(16/244): exiv2-0.27.6-4.fc38.x86_64.rpm        3.5 MB/s | 980 kB     00:00    
(17/244): fmt-9.1.0-2.fc38.x86_64.rpm           1.9 MB/s | 117 kB     00:00    
(18/244): fdk-aac-free-2.0.0-10.fc38.x86_64.rpm 2.7 MB/s | 336 kB     00:00    
(19/244): gdk-pixbuf2-modules-2.42.10-2.fc38.x8 1.9 MB/s |  85 kB     00:00    
(20/244): graphene-1.10.6-5.fc38.x86_64.rpm     1.7 MB/s |  62 kB     00:00    
(21/244): gperftools-libs-2.9.1-5.fc38.x86_64.r 2.2 MB/s | 307 kB     00:00    
(22/244): exiv2-libs-0.27.6-4.fc38.x86_64.rpm   2.0 MB/s | 782 kB     00:00    
(23/244): gsm-1.0.22-2.fc38.x86_64.rpm          1.1 MB/s |  35 kB     00:00    
(24/244): hicolor-icon-theme-0.17-15.fc38.noarc 1.1 MB/s |  66 kB     00:00    
(25/244): gsettings-desktop-schemas-44.0-1.fc38 3.5 MB/s | 733 kB     00:00    
(26/244): jack-audio-connection-kit-1.9.22-1.fc 2.8 MB/s | 527 kB     00:00    
(27/244): json-glib-1.6.6-4.fc38.x86_64.rpm     2.7 MB/s | 162 kB     00:00    
(28/244): ipxe-roms-qemu-20220210-3.git64113751 3.2 MB/s | 1.5 MB     00:00    
(29/244): lame-libs-3.100-14.fc38.x86_64.rpm    2.9 MB/s | 337 kB     00:00    
(30/244): libXcomposite-0.4.5-9.fc38.x86_64.rpm 899 kB/s |  23 kB     00:00    
(31/244): libXcursor-1.2.1-3.fc38.x86_64.rpm    2.1 MB/s |  30 kB     00:00    
(32/244): libXdamage-1.1.5-9.fc38.x86_64.rpm    1.5 MB/s |  22 kB     00:00    
(33/244): libXfixes-6.0.0-5.fc38.x86_64.rpm     1.4 MB/s |  19 kB     00:00    
(34/244): libXinerama-1.1.5-2.fc38.x86_64.rpm   1.0 MB/s |  14 kB     00:00    
(35/244): libXrandr-1.5.2-10.fc38.x86_64.rpm    1.9 MB/s |  27 kB     00:00    
(36/244): libXtst-1.2.4-2.fc38.x86_64.rpm       1.4 MB/s |  20 kB     00:00    
(37/244): libXv-1.0.11-18.fc38.x86_64.rpm       1.5 MB/s |  18 kB     00:00    
(38/244): libXxf86vm-1.1.5-2.fc38.x86_64.rpm    1.4 MB/s |  18 kB     00:00    
(39/244): libaio-0.3.111-15.fc38.x86_64.rpm     1.4 MB/s |  23 kB     00:00    
(40/244): libasyncns-0.8-24.fc38.x86_64.rpm     1.5 MB/s |  30 kB     00:00    
(41/244): libbpf-1.1.0-2.fc38.x86_64.rpm        3.4 MB/s | 164 kB     00:00    
(42/244): libcacard-2.8.1-4.fc38.x86_64.rpm     2.1 MB/s |  55 kB     00:00    
(43/244): libblkio-1.2.2-3.fc38.x86_64.rpm      3.1 MB/s | 267 kB     00:00    
(44/244): libcanberra-gtk3-0.30-31.fc38.x86_64. 1.8 MB/s |  31 kB     00:00    
(45/244): libcanberra-0.30-31.fc38.x86_64.rpm   2.8 MB/s |  85 kB     00:00    
(46/244): libcue-2.2.1-11.fc38.x86_64.rpm       2.1 MB/s |  34 kB     00:00    
(47/244): libconfig-1.7.3-5.fc38.x86_64.rpm     2.7 MB/s |  71 kB     00:00    
(48/244): libdecor-0.1.1-2.fc38.x86_64.rpm      1.8 MB/s |  42 kB     00:00    
(49/244): libdrm-2.4.114-2.fc38.x86_64.rpm      3.4 MB/s | 157 kB     00:00    
(50/244): libepoxy-1.5.10-3.fc38.x86_64.rpm     3.1 MB/s | 237 kB     00:00    
(51/244): libexif-0.6.24-4.fc38.x86_64.rpm      3.4 MB/s | 461 kB     00:00    
(52/244): libglvnd-1.6.0-2.fc38.x86_64.rpm      2.5 MB/s | 134 kB     00:00    
(53/244): libglvnd-egl-1.6.0-2.fc38.x86_64.rpm  2.0 MB/s |  36 kB     00:00    
(54/244): iso-codes-4.13.0-1.fc38.noarch.rpm    3.8 MB/s | 3.5 MB     00:00    
(55/244): libglvnd-glx-1.6.0-2.fc38.x86_64.rpm  3.4 MB/s | 142 kB     00:00    
(56/244): libgrss-0.7.0-16.fc38.x86_64.rpm      2.6 MB/s |  62 kB     00:00    
(57/244): libgudev-237-4.fc38.x86_64.rpm        2.0 MB/s |  35 kB     00:00    
(58/244): libgusb-0.4.5-1.fc38.x86_64.rpm       3.1 MB/s |  63 kB     00:00    
(59/244): libffado-2.4.7-1.fc38.x86_64.rpm      3.5 MB/s | 859 kB     00:00    
(60/244): libgsf-1.14.50-1.fc38.x86_64.rpm      4.0 MB/s | 258 kB     00:00    
(61/244): libgxps-0.3.2-5.fc38.x86_64.rpm       2.9 MB/s |  77 kB     00:00    
(62/244): libiec61883-1.2.0-31.fc38.x86_64.rpm  2.1 MB/s |  40 kB     00:00    
(63/244): libiptcdata-1.0.5-13.fc38.x86_64.rpm  2.8 MB/s |  61 kB     00:00    
(64/244): libiscsi-1.19.0-7.fc38.x86_64.rpm     2.5 MB/s |  86 kB     00:00    
(65/244): libldac-2.0.2.3-12.fc38.x86_64.rpm    2.1 MB/s |  41 kB     00:00    
(66/244): libibverbs-44.0-3.fc38.x86_64.rpm     3.7 MB/s | 429 kB     00:00    
(67/244): libnfs-4.0.0-8.fc38.x86_64.rpm        2.9 MB/s | 137 kB     00:00    
(68/244): libnotify-0.8.2-1.fc38.x86_64.rpm     2.6 MB/s |  51 kB     00:00    
(69/244): libogg-1.3.5-5.fc38.x86_64.rpm        1.9 MB/s |  33 kB     00:00    
(70/244): libnl3-3.7.0-3.fc38.x86_64.rpm        3.9 MB/s | 345 kB     00:00    
(71/244): libpciaccess-0.16-8.fc38.x86_64.rpm   1.5 MB/s |  26 kB     00:00    
(72/244): libpmem-1.12.1-3.fc38.x86_64.rpm      2.6 MB/s | 110 kB     00:00    
(73/244): libosinfo-1.10.0-5.fc38.x86_64.rpm    4.1 MB/s | 318 kB     00:00    
(74/244): libproxy-0.4.18-6.fc38.x86_64.rpm     2.4 MB/s |  71 kB     00:00    
(75/244): libpmemobj-1.12.1-3.fc38.x86_64.rpm   3.5 MB/s | 158 kB     00:00    
(76/244): libproxy-duktape-0.4.18-6.fc38.x86_64 1.1 MB/s |  17 kB     00:00    
(77/244): libraw1394-2.1.2-17.fc38.x86_64.rpm   2.7 MB/s |  64 kB     00:00    
(78/244): librdmacm-44.0-3.fc38.x86_64.rpm      3.0 MB/s |  72 kB     00:00    
(79/244): libsbc-2.0-2.fc38.x86_64.rpm          2.5 MB/s |  47 kB     00:00    
(80/244): libsigc++20-2.10.8-3.fc38.x86_64.rpm  1.7 MB/s |  39 kB     00:00    
(81/244): libslirp-4.7.0-3.fc38.x86_64.rpm      2.4 MB/s |  75 kB     00:00    
(82/244): libsndfile-1.1.0-6.fc38.x86_64.rpm    3.5 MB/s | 214 kB     00:00    
(83/244): libsoup-2.74.3-2.fc38.x86_64.rpm      3.7 MB/s | 402 kB     00:00    
(84/244): libss-1.46.5-4.fc38.x86_64.rpm        1.7 MB/s |  31 kB     00:00    
(85/244): libsamplerate-0.2.2-4.fc38.x86_64.rpm 3.4 MB/s | 1.3 MB     00:00    
(86/244): libstemmer-2.2.0-5.fc38.x86_64.rpm    1.5 MB/s | 168 kB     00:00    
(87/244): libtdb-1.4.8-1.fc38.x86_64.rpm        1.4 MB/s |  51 kB     00:00    
(88/244): libtheora-1.1.1-33.fc38.x86_64.rpm    2.4 MB/s | 166 kB     00:00    
(89/244): libunwind-1.6.2-7.fc38.x86_64.rpm     1.6 MB/s |  68 kB     00:00    
(90/244): libusb1-1.0.26-2.fc38.x86_64.rpm      1.7 MB/s |  74 kB     00:00    
(91/244): libva-2.18.0-1.fc38.x86_64.rpm        1.6 MB/s | 105 kB     00:00    
(92/244): libvisual-0.4.1-1.fc38.x86_64.rpm     3.0 MB/s | 151 kB     00:00    
(93/244): libvorbis-1.3.7-7.fc38.x86_64.rpm     2.9 MB/s | 195 kB     00:00    
(94/244): libxkbcommon-1.5.0-2.fc38.x86_64.rpm  3.2 MB/s | 140 kB     00:00    
(95/244): libxshmfence-1.3-12.fc38.x86_64.rpm   854 kB/s |  12 kB     00:00    
(96/244): libxml++-2.42.2-2.fc38.x86_64.rpm     3.3 MB/s |  99 kB     00:00    
(97/244): lm_sensors-libs-3.6.0-13.fc38.x86_64. 2.2 MB/s |  41 kB     00:00    
(98/244): low-memory-monitor-2.1-7.fc38.x86_64. 2.4 MB/s |  34 kB     00:00    
(99/244): lzo-2.10-8.fc38.x86_64.rpm            2.6 MB/s |  66 kB     00:00    
(100/244): lttng-ust-2.13.5-2.fc38.x86_64.rpm   3.1 MB/s | 332 kB     00:00    
(101/244): numactl-libs-2.0.16-2.fc38.x86_64.rp 1.9 MB/s |  31 kB     00:00    
(102/244): mpg123-libs-1.31.3-1.fc38.x86_64.rpm 3.7 MB/s | 340 kB     00:00    
(103/244): orc-0.4.33-2.fc38.x86_64.rpm         3.0 MB/s | 202 kB     00:00    
(104/244): opus-1.3.1-12.fc38.x86_64.rpm        2.8 MB/s | 206 kB     00:00    
(105/244): osinfo-db-tools-1.10.0-6.fc38.x86_64 2.5 MB/s |  72 kB     00:00    
(106/244): pcsc-lite-libs-1.9.9-3.fc38.x86_64.r 1.7 MB/s |  29 kB     00:00    
(107/244): pcre2-utf32-10.42-1.fc38.1.x86_64.rp 3.4 MB/s | 201 kB     00:00    
(108/244): polkit-pkla-compat-0.1-23.fc38.x86_6 2.2 MB/s |  44 kB     00:00    
(109/244): rsync-3.2.7-2.fc38.x86_64.rpm        3.1 MB/s | 424 kB     00:00    
(110/244): rtkit-0.11-58.fc38.x86_64.rpm        1.8 MB/s |  55 kB     00:00    
(111/244): pulseaudio-libs-16.1-4.fc38.x86_64.r 2.9 MB/s | 694 kB     00:00    
(112/244): seabios-bin-1.16.2-1.fc38.noarch.rpm 2.4 MB/s | 183 kB     00:00    
(113/244): seavgabios-bin-1.16.2-1.fc38.noarch. 2.4 MB/s |  38 kB     00:00    
(114/244): sgabios-bin-0.20180715git-10.fc38.no 686 kB/s |  10 kB     00:00    
(115/244): snappy-1.1.9-7.fc38.x86_64.rpm       2.3 MB/s |  36 kB     00:00    
(116/244): spice-server-0.15.1-2.fc38.x86_64.rp 3.2 MB/s | 391 kB     00:00    
(117/244): sound-theme-freedesktop-0.8-19.fc38. 2.6 MB/s | 383 kB     00:00    
(118/244): totem-pl-parser-3.26.6-6.fc38.x86_64 3.2 MB/s | 144 kB     00:00    
(119/244): uchardet-0.0.8-2.fc38.x86_64.rpm     2.4 MB/s | 108 kB     00:00    
(120/244): usbredir-0.13.0-2.fc38.x86_64.rpm    1.7 MB/s |  50 kB     00:00    
(121/244): upower-0.99.20-3.fc38.x86_64.rpm     3.2 MB/s | 139 kB     00:00    
(122/244): userspace-rcu-0.13.2-2.fc38.x86_64.r 2.7 MB/s | 105 kB     00:00    
(123/244): virglrenderer-0.10.4-2.20230104git88 2.2 MB/s | 220 kB     00:00    
(124/244): webrtc-audio-processing-0.3.1-10.fc3 3.0 MB/s | 307 kB     00:00    
(125/244): wireplumber-0.4.14-1.fc38.x86_64.rpm 1.8 MB/s |  94 kB     00:00    
(126/244): wireplumber-libs-0.4.14-1.fc38.x86_6 2.9 MB/s | 343 kB     00:00    
(127/244): xdg-desktop-portal-gtk-1.14.1-2.fc38 2.3 MB/s | 146 kB     00:00    
(128/244): xdg-desktop-portal-1.16.0-3.fc38.x86 2.5 MB/s | 435 kB     00:00    
(129/244): xprop-1.2.5-3.fc38.x86_64.rpm        1.9 MB/s |  35 kB     00:00    
(130/244): xkeyboard-config-2.38-1.fc38.noarch. 4.2 MB/s | 963 kB     00:00    
(131/244): libicu-72.1-2.fc38.x86_64.rpm        4.3 MB/s |  10 MB     00:02    
(132/244): ModemManager-glib-1.20.6-1.fc38.x86_ 564 kB/s | 323 kB     00:00    
(133/244): alsa-lib-1.2.10-2.fc38.x86_64.rpm    2.6 MB/s | 521 kB     00:00    
(134/244): at-spi2-atk-2.48.3-1.fc38.x86_64.rpm 774 kB/s |  85 kB     00:00    
(135/244): NetworkManager-libnm-1.42.8-1.fc38.x 2.0 MB/s | 1.8 MB     00:00    
(136/244): at-spi2-core-2.48.3-1.fc38.x86_64.rp 1.5 MB/s | 372 kB     00:00    
(137/244): atk-2.48.3-1.fc38.x86_64.rpm         807 kB/s |  81 kB     00:00    
(138/244): avahi-glib-0.8-22.fc38.x86_64.rpm    178 kB/s |  15 kB     00:00    
(139/244): adobe-source-code-pro-fonts-2.042.1. 1.0 MB/s | 806 kB     00:00    
(140/244): bluez-libs-5.69-1.fc38.x86_64.rpm    918 kB/s |  83 kB     00:00    
(141/244): boost-iostreams-1.78.0-14.fc38.x86_6 491 kB/s |  40 kB     00:00    
(142/244): colord-libs-1.4.6-4.fc38.x86_64.rpm  1.9 MB/s | 232 kB     00:00    
(143/244): daxctl-libs-78-1.fc38.x86_64.rpm     516 kB/s |  41 kB     00:00    
(144/244): flac-libs-1.4.3-1.fc38.x86_64.rpm    1.3 MB/s | 263 kB     00:00    
(145/244): fuse3-3.14.1-1.fc38.x86_64.rpm       108 kB/s |  55 kB     00:00    
(146/244): fuse-common-3.14.1-1.fc38.x86_64.rpm 9.0 kB/s | 6.9 kB     00:00    
(147/244): fuse3-libs-3.14.1-1.fc38.x86_64.rpm  322 kB/s |  93 kB     00:00    
(148/244): geoclue2-2.7.0-1.fc38.x86_64.rpm     571 kB/s | 156 kB     00:00    
(149/244): giflib-5.2.1-17.fc38.x86_64.rpm      529 kB/s |  51 kB     00:00    
(150/244): edk2-ovmf-20230524-3.fc38.noarch.rpm 8.6 MB/s |  10 MB     00:01    
(151/244): glusterfs-client-xlators-11.0-3.fc38 3.1 MB/s | 764 kB     00:00    
(152/244): glibmm2.4-2.66.6-1.fc38.x86_64.rpm   1.8 MB/s | 687 kB     00:00    
(153/244): gobject-introspection-1.76.1-1.fc38. 2.3 MB/s | 262 kB     00:00    
(154/244): glib-networking-2.76.1-1.fc38.x86_64 260 kB/s | 195 kB     00:00    
(155/244): gstreamer1-plugins-base-1.22.5-1.fc3 6.2 MB/s | 2.2 MB     00:00    
(156/244): gtk-update-icon-cache-3.24.38-1.fc38 207 kB/s |  34 kB     00:00    
(157/244): gstreamer1-1.22.6-1.fc38.x86_64.rpm  2.0 MB/s | 1.4 MB     00:00    
(158/244): libX11-xcb-1.8.6-1.fc38.x86_64.rpm   121 kB/s |  11 kB     00:00    
(159/244): libXi-1.8.1-1.fc38.x86_64.rpm        365 kB/s |  40 kB     00:00    
(160/244): gtk3-3.24.38-1.fc38.x86_64.rpm       7.9 MB/s | 4.8 MB     00:00    
(161/244): libcloudproviders-0.3.2-1.fc38.x86_6 347 kB/s |  44 kB     00:00    
(162/244): libfdt-1.7.0-2.fc38.x86_64.rpm       426 kB/s |  33 kB     00:00    
(163/244): libgexiv2-0.14.2-1.fc38.x86_64.rpm   770 kB/s |  98 kB     00:00    
(164/244): libgfapi0-11.0-3.fc38.x86_64.rpm     1.1 MB/s |  96 kB     00:00    
(165/244): libgfxdr0-11.0-3.fc38.x86_64.rpm     316 kB/s |  25 kB     00:00    
(166/244): libgfrpc0-11.0-3.fc38.x86_64.rpm     536 kB/s |  51 kB     00:00    
(167/244): libglusterfs0-11.0-3.fc38.x86_64.rpm 2.5 MB/s | 284 kB     00:00    
(168/244): librbd1-17.2.6-3.fc38.x86_64.rpm     5.3 MB/s | 3.0 MB     00:00    
(169/244): libsoup3-3.4.3-1.fc38.x86_64.rpm     3.0 MB/s | 389 kB     00:00    
(170/244): hwdata-0.374-1.fc38.noarch.rpm       978 kB/s | 1.6 MB     00:01    
(171/244): libtracker-sparql-3.5.3-2.fc38.x86_6 2.7 MB/s | 385 kB     00:00    
(172/244): liburing-2.4-2.fc38.x86_64.rpm       354 kB/s |  38 kB     00:00    
(173/244): libwayland-client-1.22.0-1.fc38.x86_ 366 kB/s |  34 kB     00:00    
(174/244): libwayland-cursor-1.22.0-1.fc38.x86_ 165 kB/s |  19 kB     00:00    
(175/244): libwayland-egl-1.22.0-1.fc38.x86_64. 107 kB/s |  13 kB     00:00    
(176/244): librados2-17.2.6-3.fc38.x86_64.rpm   2.7 MB/s | 3.1 MB     00:01    
(177/244): libwayland-server-1.22.0-1.fc38.x86_ 399 kB/s |  42 kB     00:00    
(178/244): libxslt-1.1.38-1.fc38.x86_64.rpm     1.9 MB/s | 186 kB     00:00    
(179/244): mesa-filesystem-23.1.7-1.fc38.x86_64 227 kB/s |  18 kB     00:00    
(180/244): mesa-libEGL-23.1.7-1.fc38.x86_64.rpm 1.4 MB/s | 131 kB     00:00    
(181/244): mesa-libGL-23.1.7-1.fc38.x86_64.rpm  1.7 MB/s | 173 kB     00:00    
(182/244): mesa-libgbm-23.1.7-1.fc38.x86_64.rpm 547 kB/s |  45 kB     00:00    
(183/244): mesa-libglapi-23.1.7-1.fc38.x86_64.r 630 kB/s |  54 kB     00:00    
(184/244): mesa-va-drivers-23.1.7-1.fc38.x86_64 4.8 MB/s | 3.4 MB     00:00    
(185/244): ndctl-libs-78-1.fc38.x86_64.rpm      992 kB/s |  88 kB     00:00    
(186/244): osinfo-db-20230719-1.fc38.noarch.rpm 1.7 MB/s | 433 kB     00:00    
(187/244): pipewire-0.3.80-1.fc38.x86_64.rpm    1.1 MB/s | 110 kB     00:00    
(188/244): pipewire-alsa-0.3.80-1.fc38.x86_64.r 730 kB/s |  64 kB     00:00    
(189/244): pipewire-libs-0.3.80-1.fc38.x86_64.r 3.1 MB/s | 1.8 MB     00:00    
(190/244): pipewire-pulseaudio-0.3.80-1.fc38.x8 852 kB/s | 173 kB     00:00    
(191/244): polkit-122-3.fc38.1.x86_64.rpm       1.2 MB/s | 150 kB     00:00    
(192/244): polkit-libs-122-3.fc38.1.x86_64.rpm  350 kB/s |  63 kB     00:00    
(193/244): qemu-audio-alsa-7.2.5-1.fc38.x86_64. 256 kB/s |  22 kB     00:00    
(194/244): qemu-audio-dbus-7.2.5-1.fc38.x86_64. 261 kB/s |  21 kB     00:00    
(195/244): qemu-audio-jack-7.2.5-1.fc38.x86_64. 119 kB/s |  20 kB     00:00    
(196/244): qemu-audio-oss-7.2.5-1.fc38.x86_64.r 223 kB/s |  20 kB     00:00    
(197/244): qemu-audio-pa-7.2.5-1.fc38.x86_64.rp 246 kB/s |  21 kB     00:00    
(198/244): qemu-audio-sdl-7.2.5-1.fc38.x86_64.r 111 kB/s |  19 kB     00:00    
(199/244): qemu-audio-spice-7.2.5-1.fc38.x86_64  89 kB/s |  18 kB     00:00    
(200/244): qemu-block-blkio-7.2.5-1.fc38.x86_64 112 kB/s |  24 kB     00:00    
(201/244): qemu-block-curl-7.2.5-1.fc38.x86_64. 122 kB/s |  23 kB     00:00    
(202/244): qemu-block-dmg-7.2.5-1.fc38.x86_64.r  83 kB/s |  16 kB     00:00    
(203/244): qemu-block-gluster-7.2.5-1.fc38.x86_ 118 kB/s |  25 kB     00:00    
(204/244): qemu-block-iscsi-7.2.5-1.fc38.x86_64  47 kB/s |  31 kB     00:00    
(205/244): llvm-libs-16.0.6-3.fc38.x86_64.rpm   4.9 MB/s |  27 MB     00:05    
(206/244): qemu-block-nfs-7.2.5-1.fc38.x86_64.r 135 kB/s |  24 kB     00:00    
(207/244): qemu-block-rbd-7.2.5-1.fc38.x86_64.r 346 kB/s |  27 kB     00:00    
(208/244): qemu-char-baum-7.2.5-1.fc38.x86_64.r 261 kB/s |  20 kB     00:00    
(209/244): qemu-block-ssh-7.2.5-1.fc38.x86_64.r 144 kB/s |  26 kB     00:00    
(210/244): qemu-char-spice-7.2.5-1.fc38.x86_64. 245 kB/s |  19 kB     00:00    
(211/244): qemu-device-display-qxl-7.2.5-1.fc38 506 kB/s |  41 kB     00:00    
(212/244): qemu-device-display-vhost-user-gpu-7 2.1 MB/s | 239 kB     00:00    
(213/244): qemu-device-display-virtio-gpu-7.2.5 435 kB/s |  35 kB     00:00    
(214/244): mesa-dri-drivers-23.1.7-1.fc38.x86_6 3.1 MB/s |  19 MB     00:05    
(215/244): qemu-device-display-virtio-gpu-ccw-7 124 kB/s |  16 kB     00:00    
(216/244): qemu-device-display-virtio-gpu-gl-7. 250 kB/s |  23 kB     00:00    
(217/244): qemu-device-display-virtio-gpu-pci-7 214 kB/s |  17 kB     00:00    
(218/244): qemu-device-display-virtio-gpu-pci-g 200 kB/s |  16 kB     00:00    
(219/244): qemu-device-display-virtio-vga-7.2.5 230 kB/s |  18 kB     00:00    
(220/244): qemu-device-display-virtio-vga-gl-7. 174 kB/s |  16 kB     00:00    
(221/244): qemu-device-usb-host-7.2.5-1.fc38.x8 320 kB/s |  30 kB     00:00    
(222/244): qemu-device-usb-smartcard-7.2.5-1.fc 307 kB/s |  24 kB     00:00    
(223/244): qemu-device-usb-redirect-7.2.5-1.fc3 424 kB/s |  36 kB     00:00    
(224/244): qemu-pr-helper-7.2.5-1.fc38.x86_64.r 2.5 MB/s | 326 kB     00:00    
(225/244): qemu-system-x86-7.2.5-1.fc38.x86_64. 171 kB/s |  13 kB     00:00    
(226/244): qemu-img-7.2.5-1.fc38.x86_64.rpm     3.6 MB/s | 1.8 MB     00:00    
(227/244): qemu-ui-curses-7.2.5-1.fc38.x86_64.r 305 kB/s |  24 kB     00:00    
(228/244): qemu-common-7.2.5-1.fc38.x86_64.rpm  404 kB/s | 583 kB     00:01    
(229/244): qemu-ui-egl-headless-7.2.5-1.fc38.x8 223 kB/s |  17 kB     00:00    
(230/244): qemu-ui-opengl-7.2.5-1.fc38.x86_64.r 242 kB/s |  23 kB     00:00    
(231/244): qemu-ui-gtk-7.2.5-1.fc38.x86_64.rpm  270 kB/s |  38 kB     00:00    
(232/244): qemu-ui-sdl-7.2.5-1.fc38.x86_64.rpm  344 kB/s |  27 kB     00:00    
(233/244): qemu-ui-spice-app-7.2.5-1.fc38.x86_6 187 kB/s |  18 kB     00:00    
(234/244): qemu-ui-spice-core-7.2.5-1.fc38.x86_ 377 kB/s |  35 kB     00:00    
(235/244): tracker-3.5.3-2.fc38.x86_64.rpm      1.8 MB/s | 584 kB     00:00    
(236/244): qemu-virtiofsd-7.2.5-1.fc38.x86_64.r 644 kB/s | 270 kB     00:00    
(237/244): vte-profile-0.72.2-1.fc38.x86_64.rpm 215 kB/s |  26 kB     00:00    
(238/244): tracker-miners-3.5.2-1.fc38.x86_64.r 2.8 MB/s | 955 kB     00:00    
(239/244): qemu-system-x86-core-7.2.5-1.fc38.x8 5.3 MB/s | 7.6 MB     00:01    
(240/244): xen-licenses-4.17.2-1.fc38.x86_64.rp 610 kB/s |  56 kB     00:00    
(241/244): xxhash-libs-0.8.2-1.fc38.x86_64.rpm  464 kB/s |  37 kB     00:00    
(242/244): xen-libs-4.17.2-1.fc38.x86_64.rpm    3.0 MB/s | 639 kB     00:00    
(243/244): vte291-0.72.2-1.fc38.x86_64.rpm      764 kB/s | 324 kB     00:00    
(244/244): yajl-2.1.0-21.fc38.x86_64.rpm        412 kB/s |  38 kB     00:00    
--------------------------------------------------------------------------------
Total                                           7.9 MB/s | 144 MB     00:18     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : alsa-lib-1.2.10-2.fc38.x86_64                        1/244 
  Installing       : libwayland-client-1.22.0-1.fc38.x86_64               2/244 
  Installing       : userspace-rcu-0.13.2-2.fc38.x86_64                   3/244 
  Installing       : numactl-libs-2.0.16-2.fc38.x86_64                    4/244 
  Installing       : libepoxy-1.5.10-3.fc38.x86_64                        5/244 
  Installing       : libXfixes-6.0.0-5.fc38.x86_64                        6/244 
  Installing       : json-glib-1.6.6-4.fc38.x86_64                        7/244 
  Installing       : libX11-xcb-1.8.6-1.fc38.x86_64                       8/244 
  Installing       : opus-1.3.1-12.fc38.x86_64                            9/244 
  Installing       : libogg-2:1.3.5-5.fc38.x86_64                        10/244 
  Installing       : libicu-72.1-2.fc38.x86_64                           11/244 
  Installing       : libvorbis-1:1.3.7-7.fc38.x86_64                     12/244 
  Installing       : liburing-2.4-2.fc38.x86_64                          13/244 
  Installing       : libXi-1.8.1-1.fc38.x86_64                           14/244 
  Installing       : fuse3-libs-3.14.1-1.fc38.x86_64                     15/244 
  Installing       : daxctl-libs-78-1.fc38.x86_64                        16/244 
  Installing       : libusb1-1.0.26-2.fc38.x86_64                        17/244 
  Installing       : libaio-0.3.111-15.fc38.x86_64                       18/244 
  Installing       : libwayland-cursor-1.22.0-1.fc38.x86_64              19/244 
  Installing       : polkit-libs-122-3.fc38.1.x86_64                     20/244 
  Installing       : mesa-filesystem-23.1.7-1.fc38.x86_64                21/244 
  Installing       : hwdata-0.374-1.fc38.noarch                          22/244 
  Installing       : libxshmfence-1.3-12.fc38.x86_64                     23/244 
  Installing       : libnl3-3.7.0-3.fc38.x86_64                          24/244 
  Installing       : libibverbs-44.0-3.fc38.x86_64                       25/244 
  Installing       : librdmacm-44.0-3.fc38.x86_64                        26/244 
  Installing       : ndctl-libs-78-1.fc38.x86_64                         27/244 
  Installing       : libpmem-1.12.1-3.fc38.x86_64                        28/244 
  Installing       : libXtst-1.2.4-2.fc38.x86_64                         29/244 
  Installing       : lttng-ust-2.13.5-2.fc38.x86_64                      30/244 
  Installing       : llvm-libs-16.0.6-3.fc38.x86_64                      31/244 
  Installing       : libwayland-server-1.22.0-1.fc38.x86_64              32/244 
  Installing       : libwayland-egl-1.22.0-1.fc38.x86_64                 33/244 
  Installing       : bluez-libs-5.69-1.fc38.x86_64                       34/244 
  Installing       : orc-0.4.33-2.fc38.x86_64                            35/244 
  Installing       : libunwind-1.6.2-7.fc38.x86_64                       36/244 
  Installing       : gperftools-libs-2.9.1-5.fc38.x86_64                 37/244 
  Installing       : gstreamer1-1.22.6-1.fc38.x86_64                     38/244 
  Running scriptlet: gstreamer1-1.22.6-1.fc38.x86_64                     38/244 
  Installing       : libgfrpc0-11.0-3.fc38.x86_64                        39/244 
  Installing       : libgfxdr0-11.0-3.fc38.x86_64                        40/244 
  Installing       : libglusterfs0-11.0-3.fc38.x86_64                    41/244 
  Installing       : libtdb-1.4.8-1.fc38.x86_64                          42/244 
  Installing       : libraw1394-2.1.2-17.fc38.x86_64                     43/244 
  Installing       : libproxy-0.4.18-6.fc38.x86_64                       44/244 
  Installing       : libgudev-237-4.fc38.x86_64                          45/244 
  Installing       : libglvnd-1:1.6.0-2.fc38.x86_64                      46/244 
  Installing       : fmt-9.1.0-2.fc38.x86_64                             47/244 
  Installing       : e2fsprogs-libs-1.46.5-4.fc38.x86_64                 48/244 
  Installing       : duktape-2.7.0-2.fc38.x86_64                         49/244 
  Running scriptlet: polkit-122-3.fc38.1.x86_64                          50/244 
  Installing       : polkit-122-3.fc38.1.x86_64                          50/244 
  Running scriptlet: polkit-122-3.fc38.1.x86_64                          50/244 
  Installing       : polkit-pkla-compat-0.1-23.fc38.x86_64               51/244 
  Running scriptlet: rtkit-0.11-58.fc38.x86_64                           52/244 
  Installing       : rtkit-0.11-58.fc38.x86_64                           52/244 
  Running scriptlet: rtkit-0.11-58.fc38.x86_64                           52/244 
Created symlink /etc/systemd/system/graphical.target.wants/rtkit-daemon.service → /usr/lib/systemd/system/rtkit-daemon.service.

  Installing       : libproxy-duktape-0.4.18-6.fc38.x86_64               53/244 
  Installing       : libiec61883-1.2.0-31.fc38.x86_64                    54/244 
  Installing       : glusterfs-client-xlators-11.0-3.fc38.x86_64         55/244 
  Installing       : libgfapi0-11.0-3.fc38.x86_64                        56/244 
  Installing       : libpmemobj-1.12.1-3.fc38.x86_64                     57/244 
  Installing       : libiscsi-1.19.0-7.fc38.x86_64                       58/244 
  Running scriptlet: libiscsi-1.19.0-7.fc38.x86_64                       58/244 
  Installing       : libpciaccess-0.16-8.fc38.x86_64                     59/244 
  Installing       : libdrm-2.4.114-2.fc38.x86_64                        60/244 
  Installing       : mesa-va-drivers-23.1.7-1.fc38.x86_64                61/244 
  Installing       : osinfo-db-20230719-1.fc38.noarch                    62/244 
  Installing       : libdecor-0.1.1-2.fc38.x86_64                        63/244 
  Installing       : SDL2-2.26.3-1.fc38.x86_64                           64/244 
  Installing       : SDL2_image-2.6.3-1.fc38.x86_64                      65/244 
  Installing       : device-mapper-multipath-libs-0.9.4-2.fc38.x86_64    66/244 
  Installing       : qemu-pr-helper-2:7.2.5-1.fc38.x86_64                67/244 
  Installing       : libgusb-0.4.5-1.fc38.x86_64                         68/244 
  Installing       : colord-libs-1.4.6-4.fc38.x86_64                     69/244 
  Installing       : usbredir-0.13.0-2.fc38.x86_64                       70/244 
  Installing       : libtheora-1:1.1.1-33.fc38.x86_64                    71/244 
  Installing       : flac-libs-1.4.3-1.fc38.x86_64                       72/244 
  Installing       : libXcursor-1.2.1-3.fc38.x86_64                      73/244 
  Installing       : libXdamage-1.1.5-9.fc38.x86_64                      74/244 
  Installing       : qemu-virtiofsd-2:7.2.5-1.fc38.x86_64                75/244 
  Installing       : exiv2-libs-0.27.6-4.fc38.x86_64                     76/244 
  Installing       : exiv2-0.27.6-4.fc38.x86_64                          77/244 
  Installing       : libgexiv2-0.14.2-1.fc38.x86_64                      78/244 
  Installing       : yajl-2.1.0-21.fc38.x86_64                           79/244 
  Installing       : xxhash-libs-0.8.2-1.fc38.x86_64                     80/244 
  Installing       : xen-licenses-4.17.2-1.fc38.x86_64                   81/244 
  Installing       : xen-libs-4.17.2-1.fc38.x86_64                       82/244 
  Installing       : vte-profile-0.72.2-1.fc38.x86_64                    83/244 
  Installing       : libxslt-1.1.38-1.fc38.x86_64                        84/244 
  Installing       : libfdt-1.7.0-2.fc38.x86_64                          85/244 
  Installing       : libcloudproviders-0.3.2-1.fc38.x86_64               86/244 
  Installing       : gtk-update-icon-cache-3.24.38-1.fc38.x86_64         87/244 
  Installing       : gobject-introspection-1.76.1-1.fc38.x86_64          88/244 
  Installing       : upower-0.99.20-3.fc38.x86_64                        89/244 
  Running scriptlet: upower-0.99.20-3.fc38.x86_64                        89/244 
Created symlink /etc/systemd/system/graphical.target.wants/upower.service → /usr/lib/systemd/system/upower.service.

  Installing       : giflib-5.2.1-17.fc38.x86_64                         90/244 
  Installing       : fuse-common-3.14.1-1.fc38.x86_64                    91/244 
  Installing       : fuse3-3.14.1-1.fc38.x86_64                          92/244 
  Installing       : edk2-ovmf-20230524-3.fc38.noarch                    93/244 
  Installing       : boost-iostreams-1.78.0-14.fc38.x86_64               94/244 
  Installing       : librados2-2:17.2.6-3.fc38.x86_64                    95/244 
  Running scriptlet: librados2-2:17.2.6-3.fc38.x86_64                    95/244 
  Installing       : librbd1-2:17.2.6-3.fc38.x86_64                      96/244 
  Running scriptlet: librbd1-2:17.2.6-3.fc38.x86_64                      96/244 
  Installing       : avahi-glib-0.8-22.fc38.x86_64                       97/244 
  Installing       : adobe-source-code-pro-fonts-2.042.1.062.1.026-2.    98/244 
  Installing       : NetworkManager-libnm-1:1.42.8-1.fc38.x86_64         99/244 
  Installing       : ModemManager-glib-1.20.6-1.fc38.x86_64             100/244 
  Installing       : xprop-1.2.5-3.fc38.x86_64                          101/244 
  Installing       : at-spi2-core-2.48.3-1.fc38.x86_64                  102/244 
  Installing       : atk-2.48.3-1.fc38.x86_64                           103/244 
  Installing       : at-spi2-atk-2.48.3-1.fc38.x86_64                   104/244 
  Installing       : xkeyboard-config-2.38-1.fc38.noarch                105/244 
  Installing       : libxkbcommon-1.5.0-2.fc38.x86_64                   106/244 
  Installing       : webrtc-audio-processing-0.3.1-10.fc38.x86_64       107/244 
  Installing       : uchardet-0.0.8-2.fc38.x86_64                       108/244 
  Installing       : totem-pl-parser-3.26.6-6.fc38.x86_64               109/244 
  Installing       : sound-theme-freedesktop-0.8-19.fc38.noarch         110/244 
  Running scriptlet: sound-theme-freedesktop-0.8-19.fc38.noarch         110/244 
  Installing       : snappy-1.1.9-7.fc38.x86_64                         111/244 
  Installing       : sgabios-bin-1:0.20180715git-10.fc38.noarch         112/244 
  Installing       : seavgabios-bin-1.16.2-1.fc38.noarch                113/244 
  Installing       : seabios-bin-1.16.2-1.fc38.noarch                   114/244 
  Installing       : pcsc-lite-libs-1.9.9-3.fc38.x86_64                 115/244 
  Installing       : libcacard-3:2.8.1-4.fc38.x86_64                    116/244 
  Installing       : pcre2-utf32-10.42-1.fc38.1.x86_64                  117/244 
  Installing       : brltty-6.5-10.fc38.x86_64                          118/244 
  Running scriptlet: brltty-6.5-10.fc38.x86_64                          118/244 
  Running scriptlet: brlapi-0.8.4-10.fc38.x86_64                        119/244 
  Installing       : brlapi-0.8.4-10.fc38.x86_64                        119/244 
  Running scriptlet: brlapi-0.8.4-10.fc38.x86_64                        119/244 
  Installing       : mpg123-libs-1.31.3-1.fc38.x86_64                   120/244 
  Installing       : lzo-2.10-8.fc38.x86_64                             121/244 
  Installing       : low-memory-monitor-2.1-7.fc38.x86_64               122/244 
  Running scriptlet: low-memory-monitor-2.1-7.fc38.x86_64               122/244 
  Installing       : lm_sensors-libs-3.6.0-13.fc38.x86_64               123/244 
  Installing       : mesa-libgbm-23.1.7-1.fc38.x86_64                   124/244 
  Installing       : libglvnd-egl-1:1.6.0-2.fc38.x86_64                 125/244 
  Installing       : mesa-libEGL-23.1.7-1.fc38.x86_64                   126/244 
  Installing       : mesa-libglapi-23.1.7-1.fc38.x86_64                 127/244 
  Installing       : mesa-dri-drivers-23.1.7-1.fc38.x86_64              128/244 
  Installing       : libvisual-1:0.4.1-1.fc38.x86_64                    129/244 
  Installing       : libstemmer-2.2.0-5.fc38.x86_64                     130/244 
  Installing       : libss-1.46.5-4.fc38.x86_64                         131/244 
  Installing       : libslirp-4.7.0-3.fc38.x86_64                       132/244 
  Installing       : libsigc++20-2.10.8-3.fc38.x86_64                   133/244 
  Installing       : glibmm2.4-2.66.6-1.fc38.x86_64                     134/244 
  Installing       : libxml++-2.42.2-2.fc38.x86_64                      135/244 
  Installing       : libsbc-2.0-2.fc38.x86_64                           136/244 
  Installing       : libsamplerate-0.2.2-4.fc38.x86_64                  137/244 
  Installing       : libnotify-0.8.2-1.fc38.x86_64                      138/244 
  Installing       : libnfs-4.0.0-8.fc38.x86_64                         139/244 
  Installing       : libldac-2.0.2.3-12.fc38.x86_64                     140/244 
  Installing       : libiptcdata-1.0.5-13.fc38.x86_64                   141/244 
  Installing       : libgxps-0.3.2-5.fc38.x86_64                        142/244 
  Installing       : libgsf-1.14.50-1.fc38.x86_64                       143/244 
  Installing       : libexif-0.6.24-4.fc38.x86_64                       144/244 
  Installing       : libcue-2.2.1-11.fc38.x86_64                        145/244 
  Installing       : libconfig-1.7.3-5.fc38.x86_64                      146/244 
  Installing       : libffado-2.4.7-1.fc38.x86_64                       147/244 
  Running scriptlet: jack-audio-connection-kit-1.9.22-1.fc38.x86_64     148/244 
  Installing       : jack-audio-connection-kit-1.9.22-1.fc38.x86_64     148/244 
  Installing       : libbpf-2:1.1.0-2.fc38.x86_64                       149/244 
  Installing       : libblkio-1.2.2-3.fc38.x86_64                       150/244 
  Installing       : libasyncns-0.8-24.fc38.x86_64                      151/244 
  Installing       : libXxf86vm-1.1.5-2.fc38.x86_64                     152/244 
  Installing       : libglvnd-glx-1:1.6.0-2.fc38.x86_64                 153/244 
  Installing       : mesa-libGL-23.1.7-1.fc38.x86_64                    154/244 
  Installing       : libva-2.18.0-1.fc38.x86_64                         155/244 
  Installing       : virglrenderer-0.10.4-2.20230104git88b9fe3b.fc38.   156/244 
  Installing       : libXv-1.0.11-18.fc38.x86_64                        157/244 
  Installing       : libXrandr-1.5.2-10.fc38.x86_64                     158/244 
  Installing       : libXinerama-1.1.5-2.fc38.x86_64                    159/244 
  Installing       : libXcomposite-0.4.5-9.fc38.x86_64                  160/244 
  Installing       : lame-libs-3.100-14.fc38.x86_64                     161/244 
  Installing       : iso-codes-4.13.0-1.fc38.noarch                     162/244 
  Installing       : ipxe-roms-qemu-20220210-3.git64113751.fc38.noarc   163/244 
  Installing       : qemu-common-2:7.2.5-1.fc38.x86_64                  164/244 
  Running scriptlet: qemu-common-2:7.2.5-1.fc38.x86_64                  164/244 
  Installing       : qemu-ui-opengl-2:7.2.5-1.fc38.x86_64               165/244 
  Installing       : qemu-ui-egl-headless-2:7.2.5-1.fc38.x86_64         166/244 
  Installing       : qemu-ui-sdl-2:7.2.5-1.fc38.x86_64                  167/244 
  Installing       : qemu-audio-alsa-2:7.2.5-1.fc38.x86_64              168/244 
  Installing       : qemu-audio-dbus-2:7.2.5-1.fc38.x86_64              169/244 
  Installing       : qemu-audio-jack-2:7.2.5-1.fc38.x86_64              170/244 
  Installing       : qemu-audio-oss-2:7.2.5-1.fc38.x86_64               171/244 
  Installing       : qemu-audio-sdl-2:7.2.5-1.fc38.x86_64               172/244 
  Installing       : qemu-block-blkio-2:7.2.5-1.fc38.x86_64             173/244 
  Installing       : qemu-block-curl-2:7.2.5-1.fc38.x86_64              174/244 
  Installing       : qemu-block-dmg-2:7.2.5-1.fc38.x86_64               175/244 
  Installing       : qemu-block-gluster-2:7.2.5-1.fc38.x86_64           176/244 
  Installing       : qemu-block-iscsi-2:7.2.5-1.fc38.x86_64             177/244 
  Installing       : qemu-block-nfs-2:7.2.5-1.fc38.x86_64               178/244 
  Installing       : qemu-block-rbd-2:7.2.5-1.fc38.x86_64               179/244 
  Installing       : qemu-block-ssh-2:7.2.5-1.fc38.x86_64               180/244 
  Installing       : qemu-char-baum-2:7.2.5-1.fc38.x86_64               181/244 
  Installing       : qemu-device-display-vhost-user-gpu-2:7.2.5-1.fc3   182/244 
  Installing       : qemu-device-display-virtio-gpu-2:7.2.5-1.fc38.x8   183/244 
  Installing       : qemu-device-display-virtio-gpu-ccw-2:7.2.5-1.fc3   184/244 
  Installing       : qemu-device-display-virtio-gpu-gl-2:7.2.5-1.fc38   185/244 
  Installing       : qemu-device-display-virtio-gpu-pci-2:7.2.5-1.fc3   186/244 
  Installing       : qemu-device-display-virtio-gpu-pci-gl-2:7.2.5-1.   187/244 
  Installing       : qemu-device-display-virtio-vga-2:7.2.5-1.fc38.x8   188/244 
  Installing       : qemu-device-display-virtio-vga-gl-2:7.2.5-1.fc38   189/244 
  Installing       : qemu-device-usb-host-2:7.2.5-1.fc38.x86_64         190/244 
  Installing       : qemu-device-usb-redirect-2:7.2.5-1.fc38.x86_64     191/244 
  Installing       : qemu-device-usb-smartcard-2:7.2.5-1.fc38.x86_64    192/244 
  Installing       : qemu-ui-curses-2:7.2.5-1.fc38.x86_64               193/244 
  Installing       : hicolor-icon-theme-0.17-15.fc38.noarch             194/244 
  Installing       : gsm-1.0.22-2.fc38.x86_64                           195/244 
  Installing       : libsndfile-1.1.0-6.fc38.x86_64                     196/244 
  Installing       : pulseaudio-libs-16.1-4.fc38.x86_64                 197/244 
  Installing       : libcanberra-0.30-31.fc38.x86_64                    198/244 
  Running scriptlet: libcanberra-0.30-31.fc38.x86_64                    198/244 
  Installing       : qemu-audio-pa-2:7.2.5-1.fc38.x86_64                199/244 
  Installing       : graphene-1.10.6-5.fc38.x86_64                      200/244 
  Installing       : gdk-pixbuf2-modules-2.42.10-2.fc38.x86_64          201/244 
  Installing       : fdk-aac-free-2.0.0-10.fc38.x86_64                  202/244 
  Installing       : wireplumber-0.4.14-1.fc38.x86_64                   203/244 
  Installing       : wireplumber-libs-0.4.14-1.fc38.x86_64              204/244 
  Installing       : pipewire-libs-0.3.80-1.fc38.x86_64                 205/244 
  Running scriptlet: pipewire-0.3.80-1.fc38.x86_64                      206/244 
  Installing       : pipewire-0.3.80-1.fc38.x86_64                      206/244 
  Running scriptlet: pipewire-0.3.80-1.fc38.x86_64                      206/244 
Created symlink /etc/systemd/user/sockets.target.wants/pipewire.socket → /usr/lib/systemd/user/pipewire.socket.

  Installing       : exempi-2.6.3-2.fc38.x86_64                         207/244 
  Installing       : dconf-0.40.0-8.fc38.x86_64                         208/244 
  Running scriptlet: dconf-0.40.0-8.fc38.x86_64                         208/244 
  Installing       : cdparanoia-libs-10.2-41.fc38.x86_64                209/244 
  Installing       : gstreamer1-plugins-base-1.22.5-1.fc38.x86_64       210/244 
  Installing       : spice-server-0.15.1-2.fc38.x86_64                  211/244 
  Installing       : qemu-ui-spice-core-2:7.2.5-1.fc38.x86_64           212/244 
  Installing       : qemu-char-spice-2:7.2.5-1.fc38.x86_64              213/244 
  Installing       : qemu-ui-spice-app-2:7.2.5-1.fc38.x86_64            214/244 
  Installing       : qemu-audio-spice-2:7.2.5-1.fc38.x86_64             215/244 
  Installing       : qemu-device-display-qxl-2:7.2.5-1.fc38.x86_64      216/244 
  Installing       : capstone-4.0.2-12.fc38.x86_64                      217/244 
  Installing       : qemu-system-x86-core-2:7.2.5-1.fc38.x86_64         218/244 
  Installing       : adwaita-cursor-theme-44.0-1.fc38.noarch            219/244 
  Installing       : adwaita-icon-theme-44.0-1.fc38.noarch              220/244 
  Installing       : abattis-cantarell-fonts-0.301-9.fc38.noarch        221/244 
  Installing       : gsettings-desktop-schemas-44.0-1.fc38.x86_64       222/244 
  Installing       : glib-networking-2.76.1-1.fc38.x86_64               223/244 
  Installing       : libsoup3-3.4.3-1.fc38.x86_64                       224/244 
  Installing       : osinfo-db-tools-1.10.0-6.fc38.x86_64               225/244 
  Installing       : libosinfo-1.10.0-5.fc38.x86_64                     226/244 
  Running scriptlet: geoclue2-2.7.0-1.fc38.x86_64                       227/244 
  Installing       : geoclue2-2.7.0-1.fc38.x86_64                       227/244 
  Running scriptlet: geoclue2-2.7.0-1.fc38.x86_64                       227/244 
  Installing       : xdg-desktop-portal-1.16.0-3.fc38.x86_64            228/244 
  Running scriptlet: xdg-desktop-portal-1.16.0-3.fc38.x86_64            228/244 
  Installing       : libsoup-2.74.3-2.fc38.x86_64                       229/244 
  Installing       : libgrss-0.7.0-16.fc38.x86_64                       230/244 
  Installing       : tracker-3.5.3-2.fc38.x86_64                        231/244 
  Running scriptlet: tracker-3.5.3-2.fc38.x86_64                        231/244 
  Installing       : libtracker-sparql-3.5.3-2.fc38.x86_64              232/244 
  Installing       : tracker-miners-3.5.2-1.fc38.x86_64                 233/244 
  Running scriptlet: tracker-miners-3.5.2-1.fc38.x86_64                 233/244 
  Installing       : libcanberra-gtk3-0.30-31.fc38.x86_64               234/244 
  Installing       : xdg-desktop-portal-gtk-1.14.1-2.fc38.x86_64        235/244 
  Running scriptlet: xdg-desktop-portal-gtk-1.14.1-2.fc38.x86_64        235/244 
  Installing       : gtk3-3.24.38-1.fc38.x86_64                         236/244 
  Installing       : vte291-0.72.2-1.fc38.x86_64                        237/244 
  Installing       : qemu-ui-gtk-2:7.2.5-1.fc38.x86_64                  238/244 
  Installing       : qemu-system-x86-2:7.2.5-1.fc38.x86_64              239/244 
  Installing       : pipewire-alsa-0.3.80-1.fc38.x86_64                 240/244 
  Installing       : pipewire-pulseaudio-0.3.80-1.fc38.x86_64           241/244 
  Running scriptlet: pipewire-pulseaudio-0.3.80-1.fc38.x86_64           241/244 
Created symlink /etc/systemd/user/sockets.target.wants/pipewire-pulse.socket → /usr/lib/systemd/user/pipewire-pulse.socket.

  Installing       : e2fsprogs-1.46.5-4.fc38.x86_64                     242/244 
  Installing       : rsync-3.2.7-2.fc38.x86_64                          243/244 
  Installing       : qemu-img-2:7.2.5-1.fc38.x86_64                     244/244 
  Running scriptlet: wireplumber-0.4.14-1.fc38.x86_64                   244/244 
Created symlink /etc/systemd/user/pipewire-session-manager.service → /usr/lib/systemd/user/wireplumber.service.
Created symlink /etc/systemd/user/pipewire.service.wants/wireplumber.service → /usr/lib/systemd/user/wireplumber.service.

  Running scriptlet: dconf-0.40.0-8.fc38.x86_64                         244/244 
  Running scriptlet: qemu-img-2:7.2.5-1.fc38.x86_64                     244/244 
  Verifying        : SDL2-2.26.3-1.fc38.x86_64                            1/244 
  Verifying        : SDL2_image-2.6.3-1.fc38.x86_64                       2/244 
  Verifying        : abattis-cantarell-fonts-0.301-9.fc38.noarch          3/244 
  Verifying        : adwaita-cursor-theme-44.0-1.fc38.noarch              4/244 
  Verifying        : adwaita-icon-theme-44.0-1.fc38.noarch                5/244 
  Verifying        : brlapi-0.8.4-10.fc38.x86_64                          6/244 
  Verifying        : brltty-6.5-10.fc38.x86_64                            7/244 
  Verifying        : capstone-4.0.2-12.fc38.x86_64                        8/244 
  Verifying        : cdparanoia-libs-10.2-41.fc38.x86_64                  9/244 
  Verifying        : dconf-0.40.0-8.fc38.x86_64                          10/244 
  Verifying        : device-mapper-multipath-libs-0.9.4-2.fc38.x86_64    11/244 
  Verifying        : duktape-2.7.0-2.fc38.x86_64                         12/244 
  Verifying        : e2fsprogs-1.46.5-4.fc38.x86_64                      13/244 
  Verifying        : e2fsprogs-libs-1.46.5-4.fc38.x86_64                 14/244 
  Verifying        : exempi-2.6.3-2.fc38.x86_64                          15/244 
  Verifying        : exiv2-0.27.6-4.fc38.x86_64                          16/244 
  Verifying        : exiv2-libs-0.27.6-4.fc38.x86_64                     17/244 
  Verifying        : fdk-aac-free-2.0.0-10.fc38.x86_64                   18/244 
  Verifying        : fmt-9.1.0-2.fc38.x86_64                             19/244 
  Verifying        : gdk-pixbuf2-modules-2.42.10-2.fc38.x86_64           20/244 
  Verifying        : gperftools-libs-2.9.1-5.fc38.x86_64                 21/244 
  Verifying        : graphene-1.10.6-5.fc38.x86_64                       22/244 
  Verifying        : gsettings-desktop-schemas-44.0-1.fc38.x86_64        23/244 
  Verifying        : gsm-1.0.22-2.fc38.x86_64                            24/244 
  Verifying        : hicolor-icon-theme-0.17-15.fc38.noarch              25/244 
  Verifying        : ipxe-roms-qemu-20220210-3.git64113751.fc38.noarc    26/244 
  Verifying        : iso-codes-4.13.0-1.fc38.noarch                      27/244 
  Verifying        : jack-audio-connection-kit-1.9.22-1.fc38.x86_64      28/244 
  Verifying        : json-glib-1.6.6-4.fc38.x86_64                       29/244 
  Verifying        : lame-libs-3.100-14.fc38.x86_64                      30/244 
  Verifying        : libXcomposite-0.4.5-9.fc38.x86_64                   31/244 
  Verifying        : libXcursor-1.2.1-3.fc38.x86_64                      32/244 
  Verifying        : libXdamage-1.1.5-9.fc38.x86_64                      33/244 
  Verifying        : libXfixes-6.0.0-5.fc38.x86_64                       34/244 
  Verifying        : libXinerama-1.1.5-2.fc38.x86_64                     35/244 
  Verifying        : libXrandr-1.5.2-10.fc38.x86_64                      36/244 
  Verifying        : libXtst-1.2.4-2.fc38.x86_64                         37/244 
  Verifying        : libXv-1.0.11-18.fc38.x86_64                         38/244 
  Verifying        : libXxf86vm-1.1.5-2.fc38.x86_64                      39/244 
  Verifying        : libaio-0.3.111-15.fc38.x86_64                       40/244 
  Verifying        : libasyncns-0.8-24.fc38.x86_64                       41/244 
  Verifying        : libblkio-1.2.2-3.fc38.x86_64                        42/244 
  Verifying        : libbpf-2:1.1.0-2.fc38.x86_64                        43/244 
  Verifying        : libcacard-3:2.8.1-4.fc38.x86_64                     44/244 
  Verifying        : libcanberra-0.30-31.fc38.x86_64                     45/244 
  Verifying        : libcanberra-gtk3-0.30-31.fc38.x86_64                46/244 
  Verifying        : libconfig-1.7.3-5.fc38.x86_64                       47/244 
  Verifying        : libcue-2.2.1-11.fc38.x86_64                         48/244 
  Verifying        : libdecor-0.1.1-2.fc38.x86_64                        49/244 
  Verifying        : libdrm-2.4.114-2.fc38.x86_64                        50/244 
  Verifying        : libepoxy-1.5.10-3.fc38.x86_64                       51/244 
  Verifying        : libexif-0.6.24-4.fc38.x86_64                        52/244 
  Verifying        : libffado-2.4.7-1.fc38.x86_64                        53/244 
  Verifying        : libglvnd-1:1.6.0-2.fc38.x86_64                      54/244 
  Verifying        : libglvnd-egl-1:1.6.0-2.fc38.x86_64                  55/244 
  Verifying        : libglvnd-glx-1:1.6.0-2.fc38.x86_64                  56/244 
  Verifying        : libgrss-0.7.0-16.fc38.x86_64                        57/244 
  Verifying        : libgsf-1.14.50-1.fc38.x86_64                        58/244 
  Verifying        : libgudev-237-4.fc38.x86_64                          59/244 
  Verifying        : libgusb-0.4.5-1.fc38.x86_64                         60/244 
  Verifying        : libgxps-0.3.2-5.fc38.x86_64                         61/244 
  Verifying        : libibverbs-44.0-3.fc38.x86_64                       62/244 
  Verifying        : libicu-72.1-2.fc38.x86_64                           63/244 
  Verifying        : libiec61883-1.2.0-31.fc38.x86_64                    64/244 
  Verifying        : libiptcdata-1.0.5-13.fc38.x86_64                    65/244 
  Verifying        : libiscsi-1.19.0-7.fc38.x86_64                       66/244 
  Verifying        : libldac-2.0.2.3-12.fc38.x86_64                      67/244 
  Verifying        : libnfs-4.0.0-8.fc38.x86_64                          68/244 
  Verifying        : libnl3-3.7.0-3.fc38.x86_64                          69/244 
  Verifying        : libnotify-0.8.2-1.fc38.x86_64                       70/244 
  Verifying        : libogg-2:1.3.5-5.fc38.x86_64                        71/244 
  Verifying        : libosinfo-1.10.0-5.fc38.x86_64                      72/244 
  Verifying        : libpciaccess-0.16-8.fc38.x86_64                     73/244 
  Verifying        : libpmem-1.12.1-3.fc38.x86_64                        74/244 
  Verifying        : libpmemobj-1.12.1-3.fc38.x86_64                     75/244 
  Verifying        : libproxy-0.4.18-6.fc38.x86_64                       76/244 
  Verifying        : libproxy-duktape-0.4.18-6.fc38.x86_64               77/244 
  Verifying        : libraw1394-2.1.2-17.fc38.x86_64                     78/244 
  Verifying        : librdmacm-44.0-3.fc38.x86_64                        79/244 
  Verifying        : libsamplerate-0.2.2-4.fc38.x86_64                   80/244 
  Verifying        : libsbc-2.0-2.fc38.x86_64                            81/244 
  Verifying        : libsigc++20-2.10.8-3.fc38.x86_64                    82/244 
  Verifying        : libslirp-4.7.0-3.fc38.x86_64                        83/244 
  Verifying        : libsndfile-1.1.0-6.fc38.x86_64                      84/244 
  Verifying        : libsoup-2.74.3-2.fc38.x86_64                        85/244 
  Verifying        : libss-1.46.5-4.fc38.x86_64                          86/244 
  Verifying        : libstemmer-2.2.0-5.fc38.x86_64                      87/244 
  Verifying        : libtdb-1.4.8-1.fc38.x86_64                          88/244 
  Verifying        : libtheora-1:1.1.1-33.fc38.x86_64                    89/244 
  Verifying        : libunwind-1.6.2-7.fc38.x86_64                       90/244 
  Verifying        : libusb1-1.0.26-2.fc38.x86_64                        91/244 
  Verifying        : libva-2.18.0-1.fc38.x86_64                          92/244 
  Verifying        : libvisual-1:0.4.1-1.fc38.x86_64                     93/244 
  Verifying        : libvorbis-1:1.3.7-7.fc38.x86_64                     94/244 
  Verifying        : libxkbcommon-1.5.0-2.fc38.x86_64                    95/244 
  Verifying        : libxml++-2.42.2-2.fc38.x86_64                       96/244 
  Verifying        : libxshmfence-1.3-12.fc38.x86_64                     97/244 
  Verifying        : lm_sensors-libs-3.6.0-13.fc38.x86_64                98/244 
  Verifying        : low-memory-monitor-2.1-7.fc38.x86_64                99/244 
  Verifying        : lttng-ust-2.13.5-2.fc38.x86_64                     100/244 
  Verifying        : lzo-2.10-8.fc38.x86_64                             101/244 
  Verifying        : mpg123-libs-1.31.3-1.fc38.x86_64                   102/244 
  Verifying        : numactl-libs-2.0.16-2.fc38.x86_64                  103/244 
  Verifying        : opus-1.3.1-12.fc38.x86_64                          104/244 
  Verifying        : orc-0.4.33-2.fc38.x86_64                           105/244 
  Verifying        : osinfo-db-tools-1.10.0-6.fc38.x86_64               106/244 
  Verifying        : pcre2-utf32-10.42-1.fc38.1.x86_64                  107/244 
  Verifying        : pcsc-lite-libs-1.9.9-3.fc38.x86_64                 108/244 
  Verifying        : polkit-pkla-compat-0.1-23.fc38.x86_64              109/244 
  Verifying        : pulseaudio-libs-16.1-4.fc38.x86_64                 110/244 
  Verifying        : rsync-3.2.7-2.fc38.x86_64                          111/244 
  Verifying        : rtkit-0.11-58.fc38.x86_64                          112/244 
  Verifying        : seabios-bin-1.16.2-1.fc38.noarch                   113/244 
  Verifying        : seavgabios-bin-1.16.2-1.fc38.noarch                114/244 
  Verifying        : sgabios-bin-1:0.20180715git-10.fc38.noarch         115/244 
  Verifying        : snappy-1.1.9-7.fc38.x86_64                         116/244 
  Verifying        : sound-theme-freedesktop-0.8-19.fc38.noarch         117/244 
  Verifying        : spice-server-0.15.1-2.fc38.x86_64                  118/244 
  Verifying        : totem-pl-parser-3.26.6-6.fc38.x86_64               119/244 
  Verifying        : uchardet-0.0.8-2.fc38.x86_64                       120/244 
  Verifying        : upower-0.99.20-3.fc38.x86_64                       121/244 
  Verifying        : usbredir-0.13.0-2.fc38.x86_64                      122/244 
  Verifying        : userspace-rcu-0.13.2-2.fc38.x86_64                 123/244 
  Verifying        : virglrenderer-0.10.4-2.20230104git88b9fe3b.fc38.   124/244 
  Verifying        : webrtc-audio-processing-0.3.1-10.fc38.x86_64       125/244 
  Verifying        : wireplumber-0.4.14-1.fc38.x86_64                   126/244 
  Verifying        : wireplumber-libs-0.4.14-1.fc38.x86_64              127/244 
  Verifying        : xdg-desktop-portal-1.16.0-3.fc38.x86_64            128/244 
  Verifying        : xdg-desktop-portal-gtk-1.14.1-2.fc38.x86_64        129/244 
  Verifying        : xkeyboard-config-2.38-1.fc38.noarch                130/244 
  Verifying        : xprop-1.2.5-3.fc38.x86_64                          131/244 
  Verifying        : ModemManager-glib-1.20.6-1.fc38.x86_64             132/244 
  Verifying        : NetworkManager-libnm-1:1.42.8-1.fc38.x86_64        133/244 
  Verifying        : adobe-source-code-pro-fonts-2.042.1.062.1.026-2.   134/244 
  Verifying        : alsa-lib-1.2.10-2.fc38.x86_64                      135/244 
  Verifying        : at-spi2-atk-2.48.3-1.fc38.x86_64                   136/244 
  Verifying        : at-spi2-core-2.48.3-1.fc38.x86_64                  137/244 
  Verifying        : atk-2.48.3-1.fc38.x86_64                           138/244 
  Verifying        : avahi-glib-0.8-22.fc38.x86_64                      139/244 
  Verifying        : bluez-libs-5.69-1.fc38.x86_64                      140/244 
  Verifying        : boost-iostreams-1.78.0-14.fc38.x86_64              141/244 
  Verifying        : colord-libs-1.4.6-4.fc38.x86_64                    142/244 
  Verifying        : daxctl-libs-78-1.fc38.x86_64                       143/244 
  Verifying        : edk2-ovmf-20230524-3.fc38.noarch                   144/244 
  Verifying        : flac-libs-1.4.3-1.fc38.x86_64                      145/244 
  Verifying        : fuse-common-3.14.1-1.fc38.x86_64                   146/244 
  Verifying        : fuse3-3.14.1-1.fc38.x86_64                         147/244 
  Verifying        : fuse3-libs-3.14.1-1.fc38.x86_64                    148/244 
  Verifying        : geoclue2-2.7.0-1.fc38.x86_64                       149/244 
  Verifying        : giflib-5.2.1-17.fc38.x86_64                        150/244 
  Verifying        : glib-networking-2.76.1-1.fc38.x86_64               151/244 
  Verifying        : glibmm2.4-2.66.6-1.fc38.x86_64                     152/244 
  Verifying        : glusterfs-client-xlators-11.0-3.fc38.x86_64        153/244 
  Verifying        : gobject-introspection-1.76.1-1.fc38.x86_64         154/244 
  Verifying        : gstreamer1-1.22.6-1.fc38.x86_64                    155/244 
  Verifying        : gstreamer1-plugins-base-1.22.5-1.fc38.x86_64       156/244 
  Verifying        : gtk-update-icon-cache-3.24.38-1.fc38.x86_64        157/244 
  Verifying        : gtk3-3.24.38-1.fc38.x86_64                         158/244 
  Verifying        : hwdata-0.374-1.fc38.noarch                         159/244 
  Verifying        : libX11-xcb-1.8.6-1.fc38.x86_64                     160/244 
  Verifying        : libXi-1.8.1-1.fc38.x86_64                          161/244 
  Verifying        : libcloudproviders-0.3.2-1.fc38.x86_64              162/244 
  Verifying        : libfdt-1.7.0-2.fc38.x86_64                         163/244 
  Verifying        : libgexiv2-0.14.2-1.fc38.x86_64                     164/244 
  Verifying        : libgfapi0-11.0-3.fc38.x86_64                       165/244 
  Verifying        : libgfrpc0-11.0-3.fc38.x86_64                       166/244 
  Verifying        : libgfxdr0-11.0-3.fc38.x86_64                       167/244 
  Verifying        : libglusterfs0-11.0-3.fc38.x86_64                   168/244 
  Verifying        : librados2-2:17.2.6-3.fc38.x86_64                   169/244 
  Verifying        : librbd1-2:17.2.6-3.fc38.x86_64                     170/244 
  Verifying        : libsoup3-3.4.3-1.fc38.x86_64                       171/244 
  Verifying        : libtracker-sparql-3.5.3-2.fc38.x86_64              172/244 
  Verifying        : liburing-2.4-2.fc38.x86_64                         173/244 
  Verifying        : libwayland-client-1.22.0-1.fc38.x86_64             174/244 
  Verifying        : libwayland-cursor-1.22.0-1.fc38.x86_64             175/244 
  Verifying        : libwayland-egl-1.22.0-1.fc38.x86_64                176/244 
  Verifying        : libwayland-server-1.22.0-1.fc38.x86_64             177/244 
  Verifying        : libxslt-1.1.38-1.fc38.x86_64                       178/244 
  Verifying        : llvm-libs-16.0.6-3.fc38.x86_64                     179/244 
  Verifying        : mesa-dri-drivers-23.1.7-1.fc38.x86_64              180/244 
  Verifying        : mesa-filesystem-23.1.7-1.fc38.x86_64               181/244 
  Verifying        : mesa-libEGL-23.1.7-1.fc38.x86_64                   182/244 
  Verifying        : mesa-libGL-23.1.7-1.fc38.x86_64                    183/244 
  Verifying        : mesa-libgbm-23.1.7-1.fc38.x86_64                   184/244 
  Verifying        : mesa-libglapi-23.1.7-1.fc38.x86_64                 185/244 
  Verifying        : mesa-va-drivers-23.1.7-1.fc38.x86_64               186/244 
  Verifying        : ndctl-libs-78-1.fc38.x86_64                        187/244 
  Verifying        : osinfo-db-20230719-1.fc38.noarch                   188/244 
  Verifying        : pipewire-0.3.80-1.fc38.x86_64                      189/244 
  Verifying        : pipewire-alsa-0.3.80-1.fc38.x86_64                 190/244 
  Verifying        : pipewire-libs-0.3.80-1.fc38.x86_64                 191/244 
  Verifying        : pipewire-pulseaudio-0.3.80-1.fc38.x86_64           192/244 
  Verifying        : polkit-122-3.fc38.1.x86_64                         193/244 
  Verifying        : polkit-libs-122-3.fc38.1.x86_64                    194/244 
  Verifying        : qemu-audio-alsa-2:7.2.5-1.fc38.x86_64              195/244 
  Verifying        : qemu-audio-dbus-2:7.2.5-1.fc38.x86_64              196/244 
  Verifying        : qemu-audio-jack-2:7.2.5-1.fc38.x86_64              197/244 
  Verifying        : qemu-audio-oss-2:7.2.5-1.fc38.x86_64               198/244 
  Verifying        : qemu-audio-pa-2:7.2.5-1.fc38.x86_64                199/244 
  Verifying        : qemu-audio-sdl-2:7.2.5-1.fc38.x86_64               200/244 
  Verifying        : qemu-audio-spice-2:7.2.5-1.fc38.x86_64             201/244 
  Verifying        : qemu-block-blkio-2:7.2.5-1.fc38.x86_64             202/244 
  Verifying        : qemu-block-curl-2:7.2.5-1.fc38.x86_64              203/244 
  Verifying        : qemu-block-dmg-2:7.2.5-1.fc38.x86_64               204/244 
  Verifying        : qemu-block-gluster-2:7.2.5-1.fc38.x86_64           205/244 
  Verifying        : qemu-block-iscsi-2:7.2.5-1.fc38.x86_64             206/244 
  Verifying        : qemu-block-nfs-2:7.2.5-1.fc38.x86_64               207/244 
  Verifying        : qemu-block-rbd-2:7.2.5-1.fc38.x86_64               208/244 
  Verifying        : qemu-block-ssh-2:7.2.5-1.fc38.x86_64               209/244 
  Verifying        : qemu-char-baum-2:7.2.5-1.fc38.x86_64               210/244 
  Verifying        : qemu-char-spice-2:7.2.5-1.fc38.x86_64              211/244 
  Verifying        : qemu-common-2:7.2.5-1.fc38.x86_64                  212/244 
  Verifying        : qemu-device-display-qxl-2:7.2.5-1.fc38.x86_64      213/244 
  Verifying        : qemu-device-display-vhost-user-gpu-2:7.2.5-1.fc3   214/244 
  Verifying        : qemu-device-display-virtio-gpu-2:7.2.5-1.fc38.x8   215/244 
  Verifying        : qemu-device-display-virtio-gpu-ccw-2:7.2.5-1.fc3   216/244 
  Verifying        : qemu-device-display-virtio-gpu-gl-2:7.2.5-1.fc38   217/244 
  Verifying        : qemu-device-display-virtio-gpu-pci-2:7.2.5-1.fc3   218/244 
  Verifying        : qemu-device-display-virtio-gpu-pci-gl-2:7.2.5-1.   219/244 
  Verifying        : qemu-device-display-virtio-vga-2:7.2.5-1.fc38.x8   220/244 
  Verifying        : qemu-device-display-virtio-vga-gl-2:7.2.5-1.fc38   221/244 
  Verifying        : qemu-device-usb-host-2:7.2.5-1.fc38.x86_64         222/244 
  Verifying        : qemu-device-usb-redirect-2:7.2.5-1.fc38.x86_64     223/244 
  Verifying        : qemu-device-usb-smartcard-2:7.2.5-1.fc38.x86_64    224/244 
  Verifying        : qemu-img-2:7.2.5-1.fc38.x86_64                     225/244 
  Verifying        : qemu-pr-helper-2:7.2.5-1.fc38.x86_64               226/244 
  Verifying        : qemu-system-x86-2:7.2.5-1.fc38.x86_64              227/244 
  Verifying        : qemu-system-x86-core-2:7.2.5-1.fc38.x86_64         228/244 
  Verifying        : qemu-ui-curses-2:7.2.5-1.fc38.x86_64               229/244 
  Verifying        : qemu-ui-egl-headless-2:7.2.5-1.fc38.x86_64         230/244 
  Verifying        : qemu-ui-gtk-2:7.2.5-1.fc38.x86_64                  231/244 
  Verifying        : qemu-ui-opengl-2:7.2.5-1.fc38.x86_64               232/244 
  Verifying        : qemu-ui-sdl-2:7.2.5-1.fc38.x86_64                  233/244 
  Verifying        : qemu-ui-spice-app-2:7.2.5-1.fc38.x86_64            234/244 
  Verifying        : qemu-ui-spice-core-2:7.2.5-1.fc38.x86_64           235/244 
  Verifying        : qemu-virtiofsd-2:7.2.5-1.fc38.x86_64               236/244 
  Verifying        : tracker-3.5.3-2.fc38.x86_64                        237/244 
  Verifying        : tracker-miners-3.5.2-1.fc38.x86_64                 238/244 
  Verifying        : vte-profile-0.72.2-1.fc38.x86_64                   239/244 
  Verifying        : vte291-0.72.2-1.fc38.x86_64                        240/244 
  Verifying        : xen-libs-4.17.2-1.fc38.x86_64                      241/244 
  Verifying        : xen-licenses-4.17.2-1.fc38.x86_64                  242/244 
  Verifying        : xxhash-libs-0.8.2-1.fc38.x86_64                    243/244 
  Verifying        : yajl-2.1.0-21.fc38.x86_64                          244/244 

Installed:
  ModemManager-glib-1.20.6-1.fc38.x86_64                                        
  NetworkManager-libnm-1:1.42.8-1.fc38.x86_64                                   
  SDL2-2.26.3-1.fc38.x86_64                                                     
  SDL2_image-2.6.3-1.fc38.x86_64                                                
  abattis-cantarell-fonts-0.301-9.fc38.noarch                                   
  adobe-source-code-pro-fonts-2.042.1.062.1.026-2.fc38.noarch                   
  adwaita-cursor-theme-44.0-1.fc38.noarch                                       
  adwaita-icon-theme-44.0-1.fc38.noarch                                         
  alsa-lib-1.2.10-2.fc38.x86_64                                                 
  at-spi2-atk-2.48.3-1.fc38.x86_64                                              
  at-spi2-core-2.48.3-1.fc38.x86_64                                             
  atk-2.48.3-1.fc38.x86_64                                                      
  avahi-glib-0.8-22.fc38.x86_64                                                 
  bluez-libs-5.69-1.fc38.x86_64                                                 
  boost-iostreams-1.78.0-14.fc38.x86_64                                         
  brlapi-0.8.4-10.fc38.x86_64                                                   
  brltty-6.5-10.fc38.x86_64                                                     
  capstone-4.0.2-12.fc38.x86_64                                                 
  cdparanoia-libs-10.2-41.fc38.x86_64                                           
  colord-libs-1.4.6-4.fc38.x86_64                                               
  daxctl-libs-78-1.fc38.x86_64                                                  
  dconf-0.40.0-8.fc38.x86_64                                                    
  device-mapper-multipath-libs-0.9.4-2.fc38.x86_64                              
  duktape-2.7.0-2.fc38.x86_64                                                   
  e2fsprogs-1.46.5-4.fc38.x86_64                                                
  e2fsprogs-libs-1.46.5-4.fc38.x86_64                                           
  edk2-ovmf-20230524-3.fc38.noarch                                              
  exempi-2.6.3-2.fc38.x86_64                                                    
  exiv2-0.27.6-4.fc38.x86_64                                                    
  exiv2-libs-0.27.6-4.fc38.x86_64                                               
  fdk-aac-free-2.0.0-10.fc38.x86_64                                             
  flac-libs-1.4.3-1.fc38.x86_64                                                 
  fmt-9.1.0-2.fc38.x86_64                                                       
  fuse-common-3.14.1-1.fc38.x86_64                                              
  fuse3-3.14.1-1.fc38.x86_64                                                    
  fuse3-libs-3.14.1-1.fc38.x86_64                                               
  gdk-pixbuf2-modules-2.42.10-2.fc38.x86_64                                     
  geoclue2-2.7.0-1.fc38.x86_64                                                  
  giflib-5.2.1-17.fc38.x86_64                                                   
  glib-networking-2.76.1-1.fc38.x86_64                                          
  glibmm2.4-2.66.6-1.fc38.x86_64                                                
  glusterfs-client-xlators-11.0-3.fc38.x86_64                                   
  gobject-introspection-1.76.1-1.fc38.x86_64                                    
  gperftools-libs-2.9.1-5.fc38.x86_64                                           
  graphene-1.10.6-5.fc38.x86_64                                                 
  gsettings-desktop-schemas-44.0-1.fc38.x86_64                                  
  gsm-1.0.22-2.fc38.x86_64                                                      
  gstreamer1-1.22.6-1.fc38.x86_64                                               
  gstreamer1-plugins-base-1.22.5-1.fc38.x86_64                                  
  gtk-update-icon-cache-3.24.38-1.fc38.x86_64                                   
  gtk3-3.24.38-1.fc38.x86_64                                                    
  hicolor-icon-theme-0.17-15.fc38.noarch                                        
  hwdata-0.374-1.fc38.noarch                                                    
  ipxe-roms-qemu-20220210-3.git64113751.fc38.noarch                             
  iso-codes-4.13.0-1.fc38.noarch                                                
  jack-audio-connection-kit-1.9.22-1.fc38.x86_64                                
  json-glib-1.6.6-4.fc38.x86_64                                                 
  lame-libs-3.100-14.fc38.x86_64                                                
  libX11-xcb-1.8.6-1.fc38.x86_64                                                
  libXcomposite-0.4.5-9.fc38.x86_64                                             
  libXcursor-1.2.1-3.fc38.x86_64                                                
  libXdamage-1.1.5-9.fc38.x86_64                                                
  libXfixes-6.0.0-5.fc38.x86_64                                                 
  libXi-1.8.1-1.fc38.x86_64                                                     
  libXinerama-1.1.5-2.fc38.x86_64                                               
  libXrandr-1.5.2-10.fc38.x86_64                                                
  libXtst-1.2.4-2.fc38.x86_64                                                   
  libXv-1.0.11-18.fc38.x86_64                                                   
  libXxf86vm-1.1.5-2.fc38.x86_64                                                
  libaio-0.3.111-15.fc38.x86_64                                                 
  libasyncns-0.8-24.fc38.x86_64                                                 
  libblkio-1.2.2-3.fc38.x86_64                                                  
  libbpf-2:1.1.0-2.fc38.x86_64                                                  
  libcacard-3:2.8.1-4.fc38.x86_64                                               
  libcanberra-0.30-31.fc38.x86_64                                               
  libcanberra-gtk3-0.30-31.fc38.x86_64                                          
  libcloudproviders-0.3.2-1.fc38.x86_64                                         
  libconfig-1.7.3-5.fc38.x86_64                                                 
  libcue-2.2.1-11.fc38.x86_64                                                   
  libdecor-0.1.1-2.fc38.x86_64                                                  
  libdrm-2.4.114-2.fc38.x86_64                                                  
  libepoxy-1.5.10-3.fc38.x86_64                                                 
  libexif-0.6.24-4.fc38.x86_64                                                  
  libfdt-1.7.0-2.fc38.x86_64                                                    
  libffado-2.4.7-1.fc38.x86_64                                                  
  libgexiv2-0.14.2-1.fc38.x86_64                                                
  libgfapi0-11.0-3.fc38.x86_64                                                  
  libgfrpc0-11.0-3.fc38.x86_64                                                  
  libgfxdr0-11.0-3.fc38.x86_64                                                  
  libglusterfs0-11.0-3.fc38.x86_64                                              
  libglvnd-1:1.6.0-2.fc38.x86_64                                                
  libglvnd-egl-1:1.6.0-2.fc38.x86_64                                            
  libglvnd-glx-1:1.6.0-2.fc38.x86_64                                            
  libgrss-0.7.0-16.fc38.x86_64                                                  
  libgsf-1.14.50-1.fc38.x86_64                                                  
  libgudev-237-4.fc38.x86_64                                                    
  libgusb-0.4.5-1.fc38.x86_64                                                   
  libgxps-0.3.2-5.fc38.x86_64                                                   
  libibverbs-44.0-3.fc38.x86_64                                                 
  libicu-72.1-2.fc38.x86_64                                                     
  libiec61883-1.2.0-31.fc38.x86_64                                              
  libiptcdata-1.0.5-13.fc38.x86_64                                              
  libiscsi-1.19.0-7.fc38.x86_64                                                 
  libldac-2.0.2.3-12.fc38.x86_64                                                
  libnfs-4.0.0-8.fc38.x86_64                                                    
  libnl3-3.7.0-3.fc38.x86_64                                                    
  libnotify-0.8.2-1.fc38.x86_64                                                 
  libogg-2:1.3.5-5.fc38.x86_64                                                  
  libosinfo-1.10.0-5.fc38.x86_64                                                
  libpciaccess-0.16-8.fc38.x86_64                                               
  libpmem-1.12.1-3.fc38.x86_64                                                  
  libpmemobj-1.12.1-3.fc38.x86_64                                               
  libproxy-0.4.18-6.fc38.x86_64                                                 
  libproxy-duktape-0.4.18-6.fc38.x86_64                                         
  librados2-2:17.2.6-3.fc38.x86_64                                              
  libraw1394-2.1.2-17.fc38.x86_64                                               
  librbd1-2:17.2.6-3.fc38.x86_64                                                
  librdmacm-44.0-3.fc38.x86_64                                                  
  libsamplerate-0.2.2-4.fc38.x86_64                                             
  libsbc-2.0-2.fc38.x86_64                                                      
  libsigc++20-2.10.8-3.fc38.x86_64                                              
  libslirp-4.7.0-3.fc38.x86_64                                                  
  libsndfile-1.1.0-6.fc38.x86_64                                                
  libsoup-2.74.3-2.fc38.x86_64                                                  
  libsoup3-3.4.3-1.fc38.x86_64                                                  
  libss-1.46.5-4.fc38.x86_64                                                    
  libstemmer-2.2.0-5.fc38.x86_64                                                
  libtdb-1.4.8-1.fc38.x86_64                                                    
  libtheora-1:1.1.1-33.fc38.x86_64                                              
  libtracker-sparql-3.5.3-2.fc38.x86_64                                         
  libunwind-1.6.2-7.fc38.x86_64                                                 
  liburing-2.4-2.fc38.x86_64                                                    
  libusb1-1.0.26-2.fc38.x86_64                                                  
  libva-2.18.0-1.fc38.x86_64                                                    
  libvisual-1:0.4.1-1.fc38.x86_64                                               
  libvorbis-1:1.3.7-7.fc38.x86_64                                               
  libwayland-client-1.22.0-1.fc38.x86_64                                        
  libwayland-cursor-1.22.0-1.fc38.x86_64                                        
  libwayland-egl-1.22.0-1.fc38.x86_64                                           
  libwayland-server-1.22.0-1.fc38.x86_64                                        
  libxkbcommon-1.5.0-2.fc38.x86_64                                              
  libxml++-2.42.2-2.fc38.x86_64                                                 
  libxshmfence-1.3-12.fc38.x86_64                                               
  libxslt-1.1.38-1.fc38.x86_64                                                  
  llvm-libs-16.0.6-3.fc38.x86_64                                                
  lm_sensors-libs-3.6.0-13.fc38.x86_64                                          
  low-memory-monitor-2.1-7.fc38.x86_64                                          
  lttng-ust-2.13.5-2.fc38.x86_64                                                
  lzo-2.10-8.fc38.x86_64                                                        
  mesa-dri-drivers-23.1.7-1.fc38.x86_64                                         
  mesa-filesystem-23.1.7-1.fc38.x86_64                                          
  mesa-libEGL-23.1.7-1.fc38.x86_64                                              
  mesa-libGL-23.1.7-1.fc38.x86_64                                               
  mesa-libgbm-23.1.7-1.fc38.x86_64                                              
  mesa-libglapi-23.1.7-1.fc38.x86_64                                            
  mesa-va-drivers-23.1.7-1.fc38.x86_64                                          
  mpg123-libs-1.31.3-1.fc38.x86_64                                              
  ndctl-libs-78-1.fc38.x86_64                                                   
  numactl-libs-2.0.16-2.fc38.x86_64                                             
  opus-1.3.1-12.fc38.x86_64                                                     
  orc-0.4.33-2.fc38.x86_64                                                      
  osinfo-db-20230719-1.fc38.noarch                                              
  osinfo-db-tools-1.10.0-6.fc38.x86_64                                          
  pcre2-utf32-10.42-1.fc38.1.x86_64                                             
  pcsc-lite-libs-1.9.9-3.fc38.x86_64                                            
  pipewire-0.3.80-1.fc38.x86_64                                                 
  pipewire-alsa-0.3.80-1.fc38.x86_64                                            
  pipewire-libs-0.3.80-1.fc38.x86_64                                            
  pipewire-pulseaudio-0.3.80-1.fc38.x86_64                                      
  polkit-122-3.fc38.1.x86_64                                                    
  polkit-libs-122-3.fc38.1.x86_64                                               
  polkit-pkla-compat-0.1-23.fc38.x86_64                                         
  pulseaudio-libs-16.1-4.fc38.x86_64                                            
  qemu-audio-alsa-2:7.2.5-1.fc38.x86_64                                         
  qemu-audio-dbus-2:7.2.5-1.fc38.x86_64                                         
  qemu-audio-jack-2:7.2.5-1.fc38.x86_64                                         
  qemu-audio-oss-2:7.2.5-1.fc38.x86_64                                          
  qemu-audio-pa-2:7.2.5-1.fc38.x86_64                                           
  qemu-audio-sdl-2:7.2.5-1.fc38.x86_64                                          
  qemu-audio-spice-2:7.2.5-1.fc38.x86_64                                        
  qemu-block-blkio-2:7.2.5-1.fc38.x86_64                                        
  qemu-block-curl-2:7.2.5-1.fc38.x86_64                                         
  qemu-block-dmg-2:7.2.5-1.fc38.x86_64                                          
  qemu-block-gluster-2:7.2.5-1.fc38.x86_64                                      
  qemu-block-iscsi-2:7.2.5-1.fc38.x86_64                                        
  qemu-block-nfs-2:7.2.5-1.fc38.x86_64                                          
  qemu-block-rbd-2:7.2.5-1.fc38.x86_64                                          
  qemu-block-ssh-2:7.2.5-1.fc38.x86_64                                          
  qemu-char-baum-2:7.2.5-1.fc38.x86_64                                          
  qemu-char-spice-2:7.2.5-1.fc38.x86_64                                         
  qemu-common-2:7.2.5-1.fc38.x86_64                                             
  qemu-device-display-qxl-2:7.2.5-1.fc38.x86_64                                 
  qemu-device-display-vhost-user-gpu-2:7.2.5-1.fc38.x86_64                      
  qemu-device-display-virtio-gpu-2:7.2.5-1.fc38.x86_64                          
  qemu-device-display-virtio-gpu-ccw-2:7.2.5-1.fc38.x86_64                      
  qemu-device-display-virtio-gpu-gl-2:7.2.5-1.fc38.x86_64                       
  qemu-device-display-virtio-gpu-pci-2:7.2.5-1.fc38.x86_64                      
  qemu-device-display-virtio-gpu-pci-gl-2:7.2.5-1.fc38.x86_64                   
  qemu-device-display-virtio-vga-2:7.2.5-1.fc38.x86_64                          
  qemu-device-display-virtio-vga-gl-2:7.2.5-1.fc38.x86_64                       
  qemu-device-usb-host-2:7.2.5-1.fc38.x86_64                                    
  qemu-device-usb-redirect-2:7.2.5-1.fc38.x86_64                                
  qemu-device-usb-smartcard-2:7.2.5-1.fc38.x86_64                               
  qemu-img-2:7.2.5-1.fc38.x86_64                                                
  qemu-pr-helper-2:7.2.5-1.fc38.x86_64                                          
  qemu-system-x86-2:7.2.5-1.fc38.x86_64                                         
  qemu-system-x86-core-2:7.2.5-1.fc38.x86_64                                    
  qemu-ui-curses-2:7.2.5-1.fc38.x86_64                                          
  qemu-ui-egl-headless-2:7.2.5-1.fc38.x86_64                                    
  qemu-ui-gtk-2:7.2.5-1.fc38.x86_64                                             
  qemu-ui-opengl-2:7.2.5-1.fc38.x86_64                                          
  qemu-ui-sdl-2:7.2.5-1.fc38.x86_64                                             
  qemu-ui-spice-app-2:7.2.5-1.fc38.x86_64                                       
  qemu-ui-spice-core-2:7.2.5-1.fc38.x86_64                                      
  qemu-virtiofsd-2:7.2.5-1.fc38.x86_64                                          
  rsync-3.2.7-2.fc38.x86_64                                                     
  rtkit-0.11-58.fc38.x86_64                                                     
  seabios-bin-1.16.2-1.fc38.noarch                                              
  seavgabios-bin-1.16.2-1.fc38.noarch                                           
  sgabios-bin-1:0.20180715git-10.fc38.noarch                                    
  snappy-1.1.9-7.fc38.x86_64                                                    
  sound-theme-freedesktop-0.8-19.fc38.noarch                                    
  spice-server-0.15.1-2.fc38.x86_64                                             
  totem-pl-parser-3.26.6-6.fc38.x86_64                                          
  tracker-3.5.3-2.fc38.x86_64                                                   
  tracker-miners-3.5.2-1.fc38.x86_64                                            
  uchardet-0.0.8-2.fc38.x86_64                                                  
  upower-0.99.20-3.fc38.x86_64                                                  
  usbredir-0.13.0-2.fc38.x86_64                                                 
  userspace-rcu-0.13.2-2.fc38.x86_64                                            
  virglrenderer-0.10.4-2.20230104git88b9fe3b.fc38.x86_64                        
  vte-profile-0.72.2-1.fc38.x86_64                                              
  vte291-0.72.2-1.fc38.x86_64                                                   
  webrtc-audio-processing-0.3.1-10.fc38.x86_64                                  
  wireplumber-0.4.14-1.fc38.x86_64                                              
  wireplumber-libs-0.4.14-1.fc38.x86_64                                         
  xdg-desktop-portal-1.16.0-3.fc38.x86_64                                       
  xdg-desktop-portal-gtk-1.14.1-2.fc38.x86_64                                   
  xen-libs-4.17.2-1.fc38.x86_64                                                 
  xen-licenses-4.17.2-1.fc38.x86_64                                             
  xkeyboard-config-2.38-1.fc38.noarch                                           
  xprop-1.2.5-3.fc38.x86_64                                                     
  xxhash-libs-0.8.2-1.fc38.x86_64                                               
  yajl-2.1.0-21.fc38.x86_64                                                     

Complete!
[#1063278] 2023/09/25 22:32:00 Cloning repositories
Cloning into 'builds.sr.ht'...
+ cd builds.sr.ht
+ git submodule update --init --recursive
[#1063278] 2023/09/25 22:32:02 Running task genimg
[#1063278] 2023/09/25 22:37:26 Running task sanity-check
[#1063278] 2023/09/25 22:38:38 Running task deploy
[#1063278] 2023/09/25 22:44:35 Processing post-success triggers...
[#1063278] 2023/09/25 22:44:35 Skipping trigger, condition unmet
genimg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
     
  zlib-1.2.13-4.fc39.x86_64                                                     

Complete!
+ mount --bind /dev /mnt/dev
+ mount --bind /dev/pts /mnt/dev/pts
+ mount --bind /dev/shm /mnt/dev/shm
+ mount --bind /proc /mnt/proc
+ mount --bind /run /mnt/run
+ mount --bind /sys /mnt/sys
+ rm -f /mnt/etc/resolv.conf
+ echo 'nameserver 8.8.8.8'
+ echo 'nameserver 8.8.4.4'
+ cat
+ echo build
+ cat
+ run_root systemd-machine-id-setup
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c systemd-machine-id-setup
+ run_root systemctl enable systemd-networkd.service
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'systemctl enable systemd-networkd.service'
Created symlink /etc/systemd/system/dbus-org.freedesktop.network1.service → /usr/lib/systemd/system/systemd-networkd.service.
Created symlink /etc/systemd/system/multi-user.target.wants/systemd-networkd.service → /usr/lib/systemd/system/systemd-networkd.service.
Created symlink /etc/systemd/system/sockets.target.wants/systemd-networkd.socket → /usr/lib/systemd/system/systemd-networkd.socket.
Created symlink /etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service → /usr/lib/systemd/system/systemd-networkd-wait-online.service.
+ run_root ln -sf /usr/share/zoneinfo/UTC /etc/localtime
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'ln -sf /usr/share/zoneinfo/UTC /etc/localtime'
+ run_root systemctl enable systemd-timesyncd.service
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'systemctl enable systemd-timesyncd.service'
Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /usr/lib/systemd/system/systemd-timesyncd.service.
Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /usr/lib/systemd/system/systemd-timesyncd.service.
+ run_root dnf -y --releasever=40 install @development-tools git mercurial openssh-server sudo kernel grub2
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'dnf -y --releasever=40 install @development-tools git mercurial openssh-server sudo kernel grub2'
Fedora 40 openh264 (From Cisco) - x86_64        719  B/s | 257  B     00:00    
Fedora - Rawhide - Developmental packages for t 1.2 MB/s | 1.7 MB     00:01    
Dependencies resolved.
==========================================================================================================
 Package                                Arch    Version                                     Repo      Size
==========================================================================================================
Installing:
 grub2-pc                               x86_64  1:2.06-100.fc40                             rawhide   17 k
 kernel                                 x86_64  6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40 rawhide  145 k
 mercurial                              x86_64  6.5.1-1.fc39                                rawhide  6.4 M
 openssh-server                         x86_64  9.3p1-11.fc40                               rawhide  466 k
 sudo                                   x86_64  1.9.14-1.p3.fc39                            rawhide  1.2 M
Installing group/module packages:
 diffstat                               x86_64  1.65-3.fc39                                 rawhide   44 k
 doxygen                                x86_64  2:1.9.8-1.fc40                              rawhide  5.3 M
 gettext                                x86_64  0.22-2.fc39                                 rawhide  1.1 M
 git                                    x86_64  2.41.0-2.fc39                               rawhide   54 k
 patch                                  x86_64  2.7.6-22.fc39                               rawhide  125 k
 patchutils                             x86_64  0.4.2-11.fc39                               rawhide  107 k
 subversion                             x86_64  1.14.2-20.fc39                              rawhide  1.0 M
 systemtap                              x86_64  5.0~pre16891249ge891a37e-0.2.fc39           rawhide  8.7 k
Installing dependencies:
 abattis-cantarell-vf-fonts             noarch  0.301-10.fc39                               rawhide  121 k
 adobe-mappings-cmap                    noarch  20230622-1.fc39                             rawhide  2.1 M
 adobe-mappings-cmap-deprecated         noarch  20230622-1.fc39                             rawhide  113 k
 adobe-mappings-pdf                     noarch  20190401-5.fc39                             rawhide  698 k
 apr                                    x86_64  1.7.3-2.fc39                                rawhide  127 k
 apr-util                               x86_64  1.6.3-5.fc40                                rawhide   96 k
 avahi-libs                             x86_64  0.8-24.fc39                                 rawhide   67 k
 binutils                               x86_64  2.41-5.fc40                                 rawhide  6.3 M
 binutils-gold                          x86_64  2.41-5.fc40                                 rawhide  796 k
 bison                                  x86_64  3.8.2-6.fc40                                rawhide  1.0 M
 boost-atomic                           x86_64  1.81.0-6.fc39                               rawhide   20 k
 boost-filesystem                       x86_64  1.81.0-6.fc39                               rawhide   68 k
 boost-system                           x86_64  1.81.0-6.fc39                               rawhide   16 k
 boost-thread                           x86_64  1.81.0-6.fc39                               rawhide   59 k
 cairo                                  x86_64  1.17.8-5.fc39                               rawhide  705 k
 cairo-gobject                          x86_64  1.17.8-5.fc39                               rawhide   18 k
 clang-libs                             x86_64  17.0.0~rc4-1.fc40                           rawhide   23 M
 clang-resource-filesystem              x86_64  17.0.0~rc4-1.fc40                           rawhide   13 k
 cpio                                   x86_64  2.14-4.fc39                                 rawhide  279 k
 cpp                                    x86_64  13.2.1-3.fc40                               rawhide   11 M
 crypto-policies-scripts                noarch  20230920-1.git570ea89.fc40                  rawhide  115 k
 cups-libs                              x86_64  1:2.4.7-1.fc40                              rawhide  269 k
 default-fonts-core-sans                noarch  4.0-9.fc40                                  rawhide   32 k
 dracut                                 x86_64  059-13.fc40                                 rawhide  432 k
 dyninst                                x86_64  12.3.0-3.fc39                               rawhide  3.9 M
 ed                                     x86_64  1.19-4.fc39                                 rawhide   79 k
 efivar-libs                            x86_64  38-8.fc39                                   rawhide  121 k
 elfutils-debuginfod-client             x86_64  0.189-6.fc40                                rawhide   38 k
 elfutils-devel                         x86_64  0.189-6.fc40                                rawhide   50 k
 elfutils-libelf-devel                  x86_64  0.189-6.fc40                                rawhide   23 k
 emacs-filesystem                       noarch  1:29.1-1.fc39                               rawhide  8.4 k
 file                                   x86_64  5.45-1.fc40                                 rawhide   49 k
 flex                                   x86_64  2.6.4-13.fc39                               rawhide  312 k
 fontconfig                             x86_64  2.14.2-5.fc40                               rawhide  297 k
 fonts-filesystem                       noarch  1:2.0.5-12.fc39                             rawhide  8.2 k
 freetype                               x86_64  2.13.1-2.fc39                               rawhide  414 k
 fribidi                                x86_64  1.0.13-2.fc39                               rawhide   91 k
 fuse-libs                              x86_64  2.9.9-17.fc39                               rawhide   97 k
 gc                                     x86_64  8.2.2-4.fc39                                rawhide  110 k
 gcc                                    x86_64  13.2.1-3.fc40                               rawhide   34 M
 gd                                     x86_64  2.3.3-12.fc39                               rawhide  139 k
 gdk-pixbuf2                            x86_64  2.42.10-5.fc39                              rawhide  484 k
 gettext-envsubst                       x86_64  0.22-2.fc39                                 rawhide   36 k
 gettext-libs                           x86_64  0.22-2.fc39                                 rawhide  328 k
 gettext-runtime                        x86_64  0.22-2.fc39                                 rawhide  120 k
 git-core                               x86_64  2.41.0-2.fc39                               rawhide  4.4 M
 git-core-doc                           noarch  2.41.0-2.fc39                               rawhide  2.8 M
 glibc-devel                            x86_64  2.38.9000-9.fc40                            rawhide   89 k
 glibc-headers-x86                      noarch  2.38.9000-9.fc40                            rawhide  573 k
 google-droid-sans-fonts                noarch  20200215-17.fc40                            rawhide  2.7 M
 google-noto-fonts-common               noarch  20230801-3.fc40                             rawhide   17 k
 google-noto-sans-vf-fonts              noarch  20230801-3.fc40                             rawhide  583 k
 graphite2                              x86_64  1.3.14-12.fc39                              rawhide   95 k
 graphviz                               x86_64  8.1.0-6.fc40                                rawhide  5.0 M
 groff-base                             x86_64  1.23.0-2.fc39                               rawhide  1.1 M
 grub2-common                           noarch  1:2.06-100.fc40                             rawhide  918 k
 grub2-pc-modules                       noarch  1:2.06-100.fc40                             rawhide  1.1 M
 grub2-tools                            x86_64  1:2.06-100.fc40                             rawhide  1.8 M
 grub2-tools-minimal                    x86_64  1:2.06-100.fc40                             rawhide  623 k
 gts                                    x86_64  0.7.6-46.20121130.fc39                      rawhide  240 k
 guile22                                x86_64  2.2.7-9.fc39                                rawhide  6.5 M
 harfbuzz                               x86_64  8.2.1-1.fc40                                rawhide  974 k
 highway                                x86_64  1.0.7-1.fc40                                rawhide  481 k
 jansson                                x86_64  2.13.1-7.fc39                               rawhide   44 k
 jbig2dec-libs                          x86_64  0.19-10.fc39                                rawhide   73 k
 jbigkit-libs                           x86_64  2.1-26.fc39                                 rawhide   53 k
 kernel-core                            x86_64  6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40 rawhide   16 M
 kernel-headers                         x86_64  6.6.0-0.rc2.git0.1.fc40                     rawhide  1.6 M
 kernel-modules                         x86_64  6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40 rawhide   58 M
 kernel-modules-core                    x86_64  6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40 rawhide   32 M
 lasi                                   x86_64  1.1.3-11.fc39                               rawhide   54 k
 lcms2                                  x86_64  2.15-2.fc39                                 rawhide  177 k
 less                                   x86_64  643-1.fc40                                  rawhide  176 k
 libICE                                 x86_64  1.0.10-12.fc40                              rawhide   70 k
 libSM                                  x86_64  1.2.3-14.fc40                               rawhide   41 k
 libX11                                 x86_64  1.8.6-3.fc40                                rawhide  650 k
 libX11-common                          noarch  1.8.6-3.fc40                                rawhide  175 k
 libXau                                 x86_64  1.0.11-4.fc40                               rawhide   31 k
 libXext                                x86_64  1.3.5-3.fc39                                rawhide   39 k
 libXft                                 x86_64  2.3.8-4.fc40                                rawhide   72 k
 libXpm                                 x86_64  3.5.15-5.fc40                               rawhide   63 k
 libXrender                             x86_64  0.9.11-4.fc40                               rawhide   27 k
 libXt                                  x86_64  1.2.1-6.fc40                                rawhide  178 k
 libaom                                 x86_64  3.7.0-1.fc40                                rawhide  1.8 M
 libavif                                x86_64  0.11.1-11.fc39                              rawhide   84 k
 libcbor                                x86_64  0.10.2-2.fc39                               rawhide   58 k
 libdatrie                              x86_64  0.2.13-7.fc39                               rawhide   32 k
 libdav1d                               x86_64  1.2.1-2.fc39                                rawhide  618 k
 libedit                                x86_64  3.1-48.20230828cvs.fc40                     rawhide  107 k
 libfido2                               x86_64  1.13.0-3.fc39                               rawhide   98 k
 libgs                                  x86_64  10.01.2-3.fc39                              rawhide  3.5 M
 libijs                                 x86_64  0.35-19.fc39                                rawhide   29 k
 libimagequant                          x86_64  4.0.1-5.fc39                                rawhide  308 k
 libjpeg-turbo                          x86_64  2.1.4-3.fc39                                rawhide  183 k
 libjxl                                 x86_64  1:0.8.2-3.fc40                              rawhide  1.2 M
 libkcapi                               x86_64  1.4.0-7.fc39                                rawhide   45 k
 libkcapi-hmaccalc                      x86_64  1.4.0-7.fc39                                rawhide   24 k
 liblerc                                x86_64  4.0.0-4.fc39                                rawhide  201 k
 libmpc                                 x86_64  1.3.1-3.fc39                                rawhide   70 k
 libpaper                               x86_64  1:2.1.1-1.fc39                              rawhide   27 k
 libpkgconf                             x86_64  1.9.5-2.fc39                                rawhide   38 k
 libpng                                 x86_64  2:1.6.40-1.fc40                             rawhide  119 k
 librsvg2                               x86_64  2.56.92-1.fc40                              rawhide  1.6 M
 libserf                                x86_64  1.3.10-2.fc39                               rawhide   57 k
 libthai                                x86_64  0.1.29-6.fc39                               rawhide  213 k
 libtiff                                x86_64  4.4.0-8.fc40                                rawhide  201 k
 libtool-ltdl                           x86_64  2.4.7-8.fc40                                rawhide   36 k
 libutempter                            x86_64  1.2.1-10.fc39                               rawhide   26 k
 libvmaf                                x86_64  2.3.0-6.fc39                                rawhide  180 k
 libwebp                                x86_64  1.3.2-1.fc40                                rawhide  284 k
 libxcb                                 x86_64  1.13.1-12.fc39                              rawhide  233 k
 libxcrypt-devel                        x86_64  4.4.36-2.fc39                               rawhide   30 k
 libzstd-devel                          x86_64  1.5.5-4.fc39                                rawhide   51 k
 linux-firmware-whence                  noarch  20230919-1.fc40                             rawhide   48 k
 llvm-libs                              x86_64  17.0.0~rc4-1.fc40                           rawhide   27 M
 m4                                     x86_64  1.4.19-7.fc40                               rawhide  303 k
 make                                   x86_64  1:4.4.1-2.fc39                              rawhide  589 k
 mokutil                                x86_64  2:0.6.0-7.fc39                              rawhide   47 k
 nano                                   x86_64  7.2-4.fc39                                  rawhide  743 k
 ncurses                                x86_64  6.4-7.20230520.fc40                         rawhide  415 k
 netpbm                                 x86_64  11.02.00-2.fc39                             rawhide  185 k
 nspr                                   x86_64  4.35.0-13.fc40                              rawhide  137 k
 nss                                    x86_64  3.93.0-2.fc40                               rawhide  695 k
 nss-softokn                            x86_64  3.93.0-2.fc40                               rawhide  1.0 M
 nss-softokn-freebl                     x86_64  3.93.0-2.fc40                               rawhide  326 k
 nss-sysinit                            x86_64  3.93.0-2.fc40                               rawhide   18 k
 nss-util                               x86_64  3.93.0-2.fc40                               rawhide   87 k
 openjpeg2                              x86_64  2.5.0-4.fc39                                rawhide  178 k
 openssh                                x86_64  9.3p1-11.fc40                               rawhide  438 k
 openssh-clients                        x86_64  9.3p1-11.fc40                               rawhide  734 k
 openssl-devel                          x86_64  1:3.1.1-4.fc40                              rawhide  2.6 M
 os-prober                              x86_64  1.81-4.fc39                                 rawhide   50 k
 pango                                  x86_64  1.51.0-1.fc40                               rawhide  343 k
 perl-AutoLoader                        noarch  5.74-500.fc39                               rawhide   21 k
 perl-B                                 x86_64  1.88-500.fc39                               rawhide  177 k
 perl-Carp                              noarch  1.54-500.fc39                               rawhide   29 k
 perl-Class-Struct                      noarch  0.68-500.fc39                               rawhide   22 k
 perl-Data-Dumper                       x86_64  2.188-501.fc39                              rawhide   56 k
 perl-Digest                            noarch  1.20-500.fc39                               rawhide   25 k
 perl-Digest-MD5                        x86_64  2.58-501.fc40                               rawhide   35 k
 perl-DynaLoader                        x86_64  1.54-500.fc39                               rawhide   26 k
 perl-Encode                            x86_64  4:3.19-500.fc39                             rawhide  1.7 M
 perl-Errno                             x86_64  1.37-500.fc39                               rawhide   15 k
 perl-Error                             noarch  1:0.17029-13.fc39                           rawhide   40 k
 perl-Exporter                          noarch  5.77-500.fc39                               rawhide   31 k
 perl-Fcntl                             x86_64  1.15-500.fc39                               rawhide   20 k
 perl-File-Basename                     noarch  2.86-500.fc39                               rawhide   17 k
 perl-File-Find                         noarch  1.43-500.fc39                               rawhide   25 k
 perl-File-Path                         noarch  2.18-500.fc39                               rawhide   35 k
 perl-File-Temp                         noarch  1:0.231.100-500.fc39                        rawhide   58 k
 perl-File-stat                         noarch  1.13-500.fc39                               rawhide   17 k
 perl-FileHandle                        noarch  2.05-500.fc39                               rawhide   16 k
 perl-Getopt-Long                       noarch  1:2.54-500.fc39                             rawhide   60 k
 perl-Getopt-Std                        noarch  1.13-500.fc39                               rawhide   16 k
 perl-Git                               noarch  2.41.0-2.fc39                               rawhide   41 k
 perl-HTTP-Tiny                         noarch  0.088-3.fc39                                rawhide   56 k
 perl-IO                                x86_64  1.52-500.fc39                               rawhide   82 k
 perl-IO-Socket-IP                      noarch  0.42-1.fc39                                 rawhide   42 k
 perl-IO-Socket-SSL                     noarch  2.083-3.fc39                                rawhide  225 k
 perl-IPC-Open3                         noarch  1.22-500.fc39                               rawhide   22 k
 perl-MIME-Base64                       x86_64  3.16-500.fc39                               rawhide   29 k
 perl-Mozilla-CA                        noarch  20230821-1.fc40                             rawhide   13 k
 perl-Net-SSLeay                        x86_64  1.92-10.fc39                                rawhide  360 k
 perl-POSIX                             x86_64  2.13-500.fc39                               rawhide   97 k
 perl-PathTools                         x86_64  3.89-500.fc39                               rawhide   87 k
 perl-Pod-Escapes                       noarch  1:1.07-501.fc40                             rawhide   19 k
 perl-Pod-Perldoc                       noarch  3.28.01-501.fc39                            rawhide   86 k
 perl-Pod-Simple                        noarch  1:3.45-4.fc39                               rawhide  218 k
 perl-Pod-Usage                         noarch  4:2.03-500.fc39                             rawhide   39 k
 perl-Scalar-List-Utils                 x86_64  5:1.63-500.fc39                             rawhide   72 k
 perl-SelectSaver                       noarch  1.02-500.fc39                               rawhide   12 k
 perl-Socket                            x86_64  4:2.037-3.fc39                              rawhide   55 k
 perl-Storable                          x86_64  1:3.32-500.fc39                             rawhide   99 k
 perl-Symbol                            noarch  1.09-500.fc39                               rawhide   14 k
 perl-Term-ANSIColor                    noarch  5.01-501.fc39                               rawhide   47 k
 perl-Term-Cap                          noarch  1.18-500.fc39                               rawhide   22 k
 perl-TermReadKey                       x86_64  2.38-18.fc39                                rawhide   35 k
 perl-Text-ParseWords                   noarch  3.31-500.fc39                               rawhide   16 k
 perl-Text-Tabs+Wrap                    noarch  2023.0511-3.fc39                            rawhide   22 k
 perl-Time-Local                        noarch  2:1.350-3.fc39                              rawhide   34 k
 perl-URI                               noarch  5.21-1.fc40                                 rawhide  125 k
 perl-base                              noarch  2.27-500.fc39                               rawhide   16 k
 perl-constant                          noarch  1.33-501.fc39                               rawhide   22 k
 perl-if                                noarch  0.61.000-500.fc39                           rawhide   14 k
 perl-interpreter                       x86_64  4:5.38.0-500.fc39                           rawhide   72 k
 perl-lib                               x86_64  0.65-500.fc39                               rawhide   15 k
 perl-libnet                            noarch  3.15-501.fc39                               rawhide  129 k
 perl-libs                              x86_64  4:5.38.0-500.fc39                           rawhide  2.3 M
 perl-locale                            noarch  1.10-500.fc39                               rawhide   14 k
 perl-mro                               x86_64  1.28-500.fc39                               rawhide   29 k
 perl-overload                          noarch  1.37-500.fc39                               rawhide   46 k
 perl-overloading                       noarch  0.02-500.fc39                               rawhide   13 k
 perl-parent                            noarch  1:0.241-500.fc39                            rawhide   14 k
 perl-podlators                         noarch  1:5.01-500.fc39                             rawhide  125 k
 perl-vars                              noarch  1.05-500.fc39                               rawhide   13 k
 pixman                                 x86_64  0.42.2-2.fc39                               rawhide  288 k
 pkgconf                                x86_64  1.9.5-2.fc39                                rawhide   42 k
 pkgconf-m4                             noarch  1.9.5-2.fc39                                rawhide   14 k
 pkgconf-pkg-config                     x86_64  1.9.5-2.fc39                                rawhide  9.6 k
 poppler                                x86_64  23.08.0-1.fc39                              rawhide  1.2 M
 poppler-data                           noarch  0.4.11-5.fc39                               rawhide  2.0 M
 poppler-glib                           x86_64  23.08.0-1.fc39                              rawhide  185 k
 procps-ng                              x86_64  4.0.3-5.fc40                                rawhide  373 k
 python3-zombie-imp                     noarch  0.0.2-2.fc39                                rawhide   29 k
 rav1e-libs                             x86_64  0.6.6-2.fc39                                rawhide  1.0 M
 re2                                    x86_64  1:20220601-3.fc39                           rawhide  200 k
 rsvg-pixbuf-loader                     x86_64  2.56.92-1.fc40                              rawhide   15 k
 shared-mime-info                       x86_64  2.2-4.fc39                                  rawhide  380 k
 subversion-libs                        x86_64  1.14.2-20.fc39                              rawhide  1.5 M
 svt-av1-libs                           x86_64  1.4.1-3.fc39                                rawhide  2.0 M
 systemtap-client                       x86_64  5.0~pre16891249ge891a37e-0.2.fc39           rawhide  4.0 M
 systemtap-devel                        x86_64  5.0~pre16891249ge891a37e-0.2.fc39           rawhide  2.4 M
 systemtap-runtime                      x86_64  5.0~pre16891249ge891a37e-0.2.fc39           rawhide  454 k
 tbb                                    x86_64  2020.3-21.fc40                              rawhide  169 k
 unzip                                  x86_64  6.0-62.fc39                                 rawhide  184 k
 urw-base35-bookman-fonts               noarch  20200910-18.fc39                            rawhide  847 k
 urw-base35-c059-fonts                  noarch  20200910-18.fc39                            rawhide  874 k
 urw-base35-d050000l-fonts              noarch  20200910-18.fc39                            rawhide   76 k
 urw-base35-fonts                       noarch  20200910-18.fc39                            rawhide   10 k
 urw-base35-fonts-common                noarch  20200910-18.fc39                            rawhide   21 k
 urw-base35-gothic-fonts                noarch  20200910-18.fc39                            rawhide  643 k
 urw-base35-nimbus-mono-ps-fonts        noarch  20200910-18.fc39                            rawhide  795 k
 urw-base35-nimbus-roman-fonts          noarch  20200910-18.fc39                            rawhide  856 k
 urw-base35-nimbus-sans-fonts           noarch  20200910-18.fc39                            rawhide  1.3 M
 urw-base35-p052-fonts                  noarch  20200910-18.fc39                            rawhide  974 k
 urw-base35-standard-symbols-ps-fonts   noarch  20200910-18.fc39                            rawhide   42 k
 urw-base35-z003-fonts                  noarch  20200910-18.fc39                            rawhide  276 k
 utf8proc                               x86_64  2.7.0-5.fc39                                rawhide   80 k
 util-linux                             x86_64  2.39.2-1.fc40                               rawhide  1.2 M
 which                                  x86_64  2.21-40.fc39                                rawhide   42 k
 xapian-core-libs                       x86_64  1.4.23-1.fc39                               rawhide  771 k
 xml-common                             noarch  0.6.3-61.fc39                               rawhide   31 k
 xz                                     x86_64  5.4.4-1.fc39                                rawhide  556 k
 xz-devel                               x86_64  5.4.4-1.fc39                                rawhide   66 k
 zip                                    x86_64  3.0-39.fc40                                 rawhide  266 k
 zlib-devel                             x86_64  1.2.13-4.fc39                               rawhide   45 k
Installing weak dependencies:
 amd-gpu-firmware                       noarch  20230919-1.fc40                             rawhide   19 M
 apr-util-bdb                           x86_64  1.6.3-5.fc40                                rawhide   13 k
 apr-util-openssl                       x86_64  1.6.3-5.fc40                                rawhide   15 k
 atheros-firmware                       noarch  20230919-1.fc40                             rawhide   20 M
 brcmfmac-firmware                      noarch  20230919-1.fc40                             rawhide  9.6 M
 compiler-rt                            x86_64  17.0.0~rc4-1.fc40                           rawhide  2.3 M
 elfutils-debuginfod-client-devel       x86_64  0.189-6.fc40                                rawhide   20 k
 grubby                                 x86_64  8.40-72.fc40                                rawhide   25 k
 intel-gpu-firmware                     noarch  20230919-1.fc40                             rawhide  8.7 M
 jxl-pixbuf-loader                      x86_64  1:0.8.2-3.fc40                              rawhide   61 k
 kernel-devel                           x86_64  6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40 rawhide   20 M
 kpartx                                 x86_64  0.9.6-1.fc40                                rawhide   48 k
 libatomic                              x86_64  13.2.1-3.fc40                               rawhide   36 k
 libomp                                 x86_64  17.0.0~rc4-1.fc40                           rawhide  623 k
 libomp-devel                           x86_64  17.0.0~rc4-1.fc40                           rawhide  1.7 M
 linux-firmware                         noarch  20230919-1.fc40                             rawhide   54 M
 memstrack                              x86_64  0.2.5-2.fc39                                rawhide   50 k
 mt7xxx-firmware                        noarch  20230919-1.fc40                             rawhide  7.2 M
 nano-default-editor                    noarch  7.2-4.fc39                                  rawhide  9.3 k
 nvidia-gpu-firmware                    noarch  20230919-1.fc40                             rawhide  1.2 M
 perl-NDBM_File                         x86_64  1.16-500.fc39                               rawhide   22 k
 pigz                                   x86_64  2.8-2.fc40                                  rawhide   94 k
 python3-fb-re2                         x86_64  1.0.7-13.fc39                               rawhide   24 k
 realtek-firmware                       noarch  20230919-1.fc40                             rawhide  2.4 M
 sudo-python-plugin                     x86_64  1.9.14-1.p3.fc39                            rawhide   53 k
 tpm2-tools                             x86_64  5.5-4.fc39                                  rawhide  796 k
Installing Groups:
 Development Tools                                                                                        

Transaction Summary
==========================================================================================================
Install  275 Packages

Total download size: 470 M
Installed size: 1.2 G
Downloading Packages:
(1/275): adobe-mappings-cmap-deprecated-2023062 399 kB/s | 113 kB     00:00    
(2/275): abattis-cantarell-vf-fonts-0.301-10.fc 415 kB/s | 121 kB     00:00    
(3/275): adobe-mappings-cmap-20230622-1.fc39.no 2.9 MB/s | 2.1 MB     00:00    
(4/275): adobe-mappings-pdf-20190401-5.fc39.noa 1.5 MB/s | 698 kB     00:00    
(5/275): apr-util-1.6.3-5.fc40.x86_64.rpm       215 kB/s |  96 kB     00:00    
(6/275): apr-1.7.3-2.fc39.x86_64.rpm            251 kB/s | 127 kB     00:00    
(7/275): apr-util-bdb-1.6.3-5.fc40.x86_64.rpm   236 kB/s |  13 kB     00:00    
(8/275): apr-util-openssl-1.6.3-5.fc40.x86_64.r 241 kB/s |  15 kB     00:00    
(9/275): avahi-libs-0.8-24.fc39.x86_64.rpm      455 kB/s |  67 kB     00:00    
(10/275): amd-gpu-firmware-20230919-1.fc40.noar 6.0 MB/s |  19 MB     00:03    
(11/275): binutils-gold-2.41-5.fc40.x86_64.rpm  3.7 MB/s | 796 kB     00:00    
(12/275): bison-3.8.2-6.fc40.x86_64.rpm         4.3 MB/s | 1.0 MB     00:00    
(13/275): boost-atomic-1.81.0-6.fc39.x86_64.rpm 283 kB/s |  20 kB     00:00    
(14/275): boost-filesystem-1.81.0-6.fc39.x86_64 891 kB/s |  68 kB     00:00    
(15/275): boost-system-1.81.0-6.fc39.x86_64.rpm 245 kB/s |  16 kB     00:00    
(16/275): boost-thread-1.81.0-6.fc39.x86_64.rpm 987 kB/s |  59 kB     00:00    
(17/275): brcmfmac-firmware-20230919-1.fc40.noa 5.6 MB/s | 9.6 MB     00:01    
(18/275): cairo-1.17.8-5.fc39.x86_64.rpm        2.8 MB/s | 705 kB     00:00    
(19/275): cairo-gobject-1.17.8-5.fc39.x86_64.rp 238 kB/s |  18 kB     00:00    
(20/275): atheros-firmware-20230919-1.fc40.noar 3.6 MB/s |  20 MB     00:05    
(21/275): clang-resource-filesystem-17.0.0~rc4-  75 kB/s |  13 kB     00:00    
(22/275): binutils-2.41-5.fc40.x86_64.rpm       1.0 MB/s | 6.3 MB     00:06    
(23/275): compiler-rt-17.0.0~rc4-1.fc40.x86_64. 2.4 MB/s | 2.3 MB     00:00    
(24/275): cpio-2.14-4.fc39.x86_64.rpm           1.1 MB/s | 279 kB     00:00    
(25/275): crypto-policies-scripts-20230920-1.gi 654 kB/s | 115 kB     00:00    
(26/275): cups-libs-2.4.7-1.fc40.x86_64.rpm     930 kB/s | 269 kB     00:00    
(27/275): default-fonts-core-sans-4.0-9.fc40.no 195 kB/s |  32 kB     00:00    
(28/275): diffstat-1.65-3.fc39.x86_64.rpm       292 kB/s |  44 kB     00:00    
(29/275): clang-libs-17.0.0~rc4-1.fc40.x86_64.r 4.3 MB/s |  23 MB     00:05    
(30/275): dracut-059-13.fc40.x86_64.rpm         1.7 MB/s | 432 kB     00:00    
(31/275): cpp-13.2.1-3.fc40.x86_64.rpm          2.7 MB/s |  11 MB     00:04    
(32/275): ed-1.19-4.fc39.x86_64.rpm             400 kB/s |  79 kB     00:00    
(33/275): efivar-libs-38-8.fc39.x86_64.rpm      786 kB/s | 121 kB     00:00    
(34/275): elfutils-debuginfod-client-0.189-6.fc 308 kB/s |  38 kB     00:00    
(35/275): doxygen-1.9.8-1.fc40.x86_64.rpm       1.4 MB/s | 5.3 MB     00:03    
(36/275): elfutils-debuginfod-client-devel-0.18 279 kB/s |  20 kB     00:00    
(37/275): elfutils-libelf-devel-0.189-6.fc40.x8 324 kB/s |  23 kB     00:00    
(38/275): elfutils-devel-0.189-6.fc40.x86_64.rp 378 kB/s |  50 kB     00:00    
(39/275): emacs-filesystem-29.1-1.fc39.noarch.r 128 kB/s | 8.4 kB     00:00    
(40/275): dyninst-12.3.0-3.fc39.x86_64.rpm      4.0 MB/s | 3.9 MB     00:00    
(41/275): file-5.45-1.fc40.x86_64.rpm           645 kB/s |  49 kB     00:00    
(42/275): flex-2.6.4-13.fc39.x86_64.rpm         1.3 MB/s | 312 kB     00:00    
(43/275): fontconfig-2.14.2-5.fc40.x86_64.rpm   1.5 MB/s | 297 kB     00:00    
(44/275): fonts-filesystem-2.0.5-12.fc39.noarch  45 kB/s | 8.2 kB     00:00    
(45/275): fuse-libs-2.9.9-17.fc39.x86_64.rpm    1.1 MB/s |  97 kB     00:00    
(46/275): gc-8.2.2-4.fc39.x86_64.rpm            1.2 MB/s | 110 kB     00:00    
(47/275): freetype-2.13.1-2.fc39.x86_64.rpm     1.9 MB/s | 414 kB     00:00    
(48/275): fribidi-1.0.13-2.fc39.x86_64.rpm      376 kB/s |  91 kB     00:00    
(49/275): gd-2.3.3-12.fc39.x86_64.rpm           1.2 MB/s | 139 kB     00:00    
(50/275): gettext-0.22-2.fc39.x86_64.rpm        2.7 MB/s | 1.1 MB     00:00    
(51/275): gdk-pixbuf2-2.42.10-5.fc39.x86_64.rpm 994 kB/s | 484 kB     00:00    
(52/275): gettext-envsubst-0.22-2.fc39.x86_64.r 522 kB/s |  36 kB     00:00    
(53/275): gettext-runtime-0.22-2.fc39.x86_64.rp 1.3 MB/s | 120 kB     00:00    
(54/275): git-2.41.0-2.fc39.x86_64.rpm          746 kB/s |  54 kB     00:00    
(55/275): gettext-libs-0.22-2.fc39.x86_64.rpm   1.2 MB/s | 328 kB     00:00    
(56/275): git-core-2.41.0-2.fc39.x86_64.rpm     2.9 MB/s | 4.4 MB     00:01    
(57/275): glibc-devel-2.38.9000-9.fc40.x86_64.r 744 kB/s |  89 kB     00:00    
(58/275): glibc-headers-x86-2.38.9000-9.fc40.no 2.1 MB/s | 573 kB     00:00    
(59/275): git-core-doc-2.41.0-2.fc39.noarch.rpm 1.5 MB/s | 2.8 MB     00:01    
(60/275): google-noto-fonts-common-20230801-3.f  93 kB/s |  17 kB     00:00    
(61/275): google-noto-sans-vf-fonts-20230801-3. 1.0 MB/s | 583 kB     00:00    
(62/275): graphite2-1.3.14-12.fc39.x86_64.rpm   898 kB/s |  95 kB     00:00    
(63/275): google-droid-sans-fonts-20200215-17.f 2.8 MB/s | 2.7 MB     00:00    
(64/275): groff-base-1.23.0-2.fc39.x86_64.rpm   2.4 MB/s | 1.1 MB     00:00    
(65/275): grub2-common-2.06-100.fc40.noarch.rpm 1.8 MB/s | 918 kB     00:00    
(66/275): grub2-pc-2.06-100.fc40.x86_64.rpm     230 kB/s |  17 kB     00:00    
(67/275): grub2-pc-modules-2.06-100.fc40.noarch 2.0 MB/s | 1.1 MB     00:00    
(68/275): gcc-13.2.1-3.fc40.x86_64.rpm          5.6 MB/s |  34 MB     00:06    
(69/275): graphviz-8.1.0-6.fc40.x86_64.rpm      1.9 MB/s | 5.0 MB     00:02    
(70/275): grub2-tools-2.06-100.fc40.x86_64.rpm  1.9 MB/s | 1.8 MB     00:00    
(71/275): grubby-8.40-72.fc40.x86_64.rpm        291 kB/s |  25 kB     00:00    
(72/275): gts-0.7.6-46.20121130.fc39.x86_64.rpm 2.2 MB/s | 240 kB     00:00    
(73/275): grub2-tools-minimal-2.06-100.fc40.x86 2.5 MB/s | 623 kB     00:00    
(74/275): highway-1.0.7-1.fc40.x86_64.rpm       2.1 MB/s | 481 kB     00:00    
(75/275): harfbuzz-8.2.1-1.fc40.x86_64.rpm      3.0 MB/s | 974 kB     00:00    
(76/275): jansson-2.13.1-7.fc39.x86_64.rpm      568 kB/s |  44 kB     00:00    
(77/275): jbig2dec-libs-0.19-10.fc39.x86_64.rpm 636 kB/s |  73 kB     00:00    
(78/275): jbigkit-libs-2.1-26.fc39.x86_64.rpm   758 kB/s |  53 kB     00:00    
(79/275): jxl-pixbuf-loader-0.8.2-3.fc40.x86_64 808 kB/s |  61 kB     00:00    
(80/275): kernel-6.6.0-0.rc2.20230922git27bbf45 789 kB/s | 145 kB     00:00    
(81/275): guile22-2.2.7-9.fc39.x86_64.rpm       3.4 MB/s | 6.5 MB     00:01    
(82/275): intel-gpu-firmware-20230919-1.fc40.no 4.1 MB/s | 8.7 MB     00:02    
(83/275): kernel-headers-6.6.0-0.rc2.git0.1.fc4 4.0 MB/s | 1.6 MB     00:00    
(84/275): kernel-core-6.6.0-0.rc2.20230922git27 2.9 MB/s |  16 MB     00:05    
(85/275): kernel-devel-6.6.0-0.rc2.20230922git2 3.6 MB/s |  20 MB     00:05    
(86/275): kpartx-0.9.6-1.fc40.x86_64.rpm        715 kB/s |  48 kB     00:00    
(87/275): lasi-1.1.3-11.fc39.x86_64.rpm         643 kB/s |  54 kB     00:00    
(88/275): lcms2-2.15-2.fc39.x86_64.rpm          1.6 MB/s | 177 kB     00:00    
(89/275): less-643-1.fc40.x86_64.rpm            1.1 MB/s | 176 kB     00:00    
(90/275): libICE-1.0.10-12.fc40.x86_64.rpm      685 kB/s |  70 kB     00:00    
(91/275): libSM-1.2.3-14.fc40.x86_64.rpm        532 kB/s |  41 kB     00:00    
(92/275): libX11-1.8.6-3.fc40.x86_64.rpm        1.9 MB/s | 650 kB     00:00    
(93/275): libX11-common-1.8.6-3.fc40.noarch.rpm 1.0 MB/s | 175 kB     00:00    
(94/275): libXau-1.0.11-4.fc40.x86_64.rpm       457 kB/s |  31 kB     00:00    
(95/275): libXext-1.3.5-3.fc39.x86_64.rpm       207 kB/s |  39 kB     00:00    
(96/275): libXft-2.3.8-4.fc40.x86_64.rpm        502 kB/s |  72 kB     00:00    
(97/275): libXpm-3.5.15-5.fc40.x86_64.rpm       645 kB/s |  63 kB     00:00    
(98/275): libXrender-0.9.11-4.fc40.x86_64.rpm   401 kB/s |  27 kB     00:00    
(99/275): libXt-1.2.1-6.fc40.x86_64.rpm         995 kB/s | 178 kB     00:00    
(100/275): libaom-3.7.0-1.fc40.x86_64.rpm       1.8 MB/s | 1.8 MB     00:01    
(101/275): libatomic-13.2.1-3.fc40.x86_64.rpm   462 kB/s |  36 kB     00:00    
(102/275): libavif-0.11.1-11.fc39.x86_64.rpm    598 kB/s |  84 kB     00:00    
(103/275): libcbor-0.10.2-2.fc39.x86_64.rpm     378 kB/s |  58 kB     00:00    
(104/275): libdatrie-0.2.13-7.fc39.x86_64.rpm   422 kB/s |  32 kB     00:00    
(105/275): libdav1d-1.2.1-2.fc39.x86_64.rpm     1.3 MB/s | 618 kB     00:00    
(106/275): libedit-3.1-48.20230828cvs.fc40.x86_ 549 kB/s | 107 kB     00:00    
(107/275): libfido2-1.13.0-3.fc39.x86_64.rpm    554 kB/s |  98 kB     00:00    
(108/275): kernel-modules-core-6.6.0-0.rc2.2023 4.7 MB/s |  32 MB     00:06    
(109/275): libijs-0.35-19.fc39.x86_64.rpm       438 kB/s |  29 kB     00:00    
(110/275): libimagequant-4.0.1-5.fc39.x86_64.rp 2.4 MB/s | 308 kB     00:00    
(111/275): libjpeg-turbo-2.1.4-3.fc39.x86_64.rp 1.6 MB/s | 183 kB     00:00    
(112/275): libjxl-0.8.2-3.fc40.x86_64.rpm       3.3 MB/s | 1.2 MB     00:00    
(113/275): libkcapi-1.4.0-7.fc39.x86_64.rpm     539 kB/s |  45 kB     00:00    
(114/275): libkcapi-hmaccalc-1.4.0-7.fc39.x86_6 415 kB/s |  24 kB     00:00    
(115/275): liblerc-4.0.0-4.fc39.x86_64.rpm      1.7 MB/s | 201 kB     00:00    
(116/275): libmpc-1.3.1-3.fc39.x86_64.rpm       767 kB/s |  70 kB     00:00    
(117/275): libgs-10.01.2-3.fc39.x86_64.rpm      1.3 MB/s | 3.5 MB     00:02    
(118/275): libomp-17.0.0~rc4-1.fc40.x86_64.rpm  2.6 MB/s | 623 kB     00:00    
(119/275): libpaper-2.1.1-1.fc39.x86_64.rpm     292 kB/s |  27 kB     00:00    
(120/275): libpkgconf-1.9.5-2.fc39.x86_64.rpm   563 kB/s |  38 kB     00:00    
(121/275): libpng-1.6.40-1.fc40.x86_64.rpm      1.4 MB/s | 119 kB     00:00    
(122/275): librsvg2-2.56.92-1.fc40.x86_64.rpm   3.4 MB/s | 1.6 MB     00:00    
(123/275): libserf-1.3.10-2.fc39.x86_64.rpm     739 kB/s |  57 kB     00:00    
(124/275): libthai-0.1.29-6.fc39.x86_64.rpm     1.6 MB/s | 213 kB     00:00    
(125/275): libtiff-4.4.0-8.fc40.x86_64.rpm      1.7 MB/s | 201 kB     00:00    
(126/275): libomp-devel-17.0.0~rc4-1.fc40.x86_6 1.5 MB/s | 1.7 MB     00:01    
(127/275): libtool-ltdl-2.4.7-8.fc40.x86_64.rpm 427 kB/s |  36 kB     00:00    
(128/275): libutempter-1.2.1-10.fc39.x86_64.rpm 210 kB/s |  26 kB     00:00    
(129/275): libvmaf-2.3.0-6.fc39.x86_64.rpm      1.1 MB/s | 180 kB     00:00    
(130/275): libwebp-1.3.2-1.fc40.x86_64.rpm      1.2 MB/s | 284 kB     00:00    
(131/275): libxcb-1.13.1-12.fc39.x86_64.rpm     1.0 MB/s | 233 kB     00:00    
(132/275): libzstd-devel-1.5.5-4.fc39.x86_64.rp 411 kB/s |  51 kB     00:00    
(133/275): libxcrypt-devel-4.4.36-2.fc39.x86_64 163 kB/s |  30 kB     00:00    
(134/275): linux-firmware-whence-20230919-1.fc4 561 kB/s |  48 kB     00:00    
(135/275): kernel-modules-6.6.0-0.rc2.20230922g 4.1 MB/s |  58 MB     00:14    
(136/275): m4-1.4.19-7.fc40.x86_64.rpm          1.6 MB/s | 303 kB     00:00    
(137/275): make-4.4.1-2.fc39.x86_64.rpm         1.2 MB/s | 589 kB     00:00    
(138/275): memstrack-0.2.5-2.fc39.x86_64.rpm    724 kB/s |  50 kB     00:00    
(139/275): mercurial-6.5.1-1.fc39.x86_64.rpm    3.1 MB/s | 6.4 MB     00:02    
(140/275): mokutil-0.6.0-7.fc39.x86_64.rpm      638 kB/s |  47 kB     00:00    
(141/275): mt7xxx-firmware-20230919-1.fc40.noar 3.1 MB/s | 7.2 MB     00:02    
(142/275): nano-7.2-4.fc39.x86_64.rpm           2.2 MB/s | 743 kB     00:00    
(143/275): nano-default-editor-7.2-4.fc39.noarc 178 kB/s | 9.3 kB     00:00    
(144/275): ncurses-6.4-7.20230520.fc40.x86_64.r 2.0 MB/s | 415 kB     00:00    
(145/275): netpbm-11.02.00-2.fc39.x86_64.rpm    1.1 MB/s | 185 kB     00:00    
(146/275): nspr-4.35.0-13.fc40.x86_64.rpm       902 kB/s | 137 kB     00:00    
(147/275): nss-3.93.0-2.fc40.x86_64.rpm         2.2 MB/s | 695 kB     00:00    
(148/275): nss-softokn-3.93.0-2.fc40.x86_64.rpm 2.1 MB/s | 1.0 MB     00:00    
(149/275): nss-softokn-freebl-3.93.0-2.fc40.x86 904 kB/s | 326 kB     00:00    
(150/275): nss-sysinit-3.93.0-2.fc40.x86_64.rpm 241 kB/s |  18 kB     00:00    
(151/275): nss-util-3.93.0-2.fc40.x86_64.rpm    701 kB/s |  87 kB     00:00    
(152/275): nvidia-gpu-firmware-20230919-1.fc40. 1.9 MB/s | 1.2 MB     00:00    
(153/275): llvm-libs-17.0.0~rc4-1.fc40.x86_64.r 2.9 MB/s |  27 MB     00:09    
(154/275): openjpeg2-2.5.0-4.fc39.x86_64.rpm    760 kB/s | 178 kB     00:00    
(155/275): openssh-clients-9.3p1-11.fc40.x86_64 2.5 MB/s | 734 kB     00:00    
(156/275): openssh-server-9.3p1-11.fc40.x86_64. 2.5 MB/s | 466 kB     00:00    
(157/275): openssh-9.3p1-11.fc40.x86_64.rpm     824 kB/s | 438 kB     00:00    
(158/275): os-prober-1.81-4.fc39.x86_64.rpm     640 kB/s |  50 kB     00:00    
(159/275): pango-1.51.0-1.fc40.x86_64.rpm       1.7 MB/s | 343 kB     00:00    
(160/275): patch-2.7.6-22.fc39.x86_64.rpm       709 kB/s | 125 kB     00:00    
(161/275): patchutils-0.4.2-11.fc39.x86_64.rpm  604 kB/s | 107 kB     00:00    
(162/275): perl-AutoLoader-5.74-500.fc39.noarch 160 kB/s |  21 kB     00:00    
(163/275): linux-firmware-20230919-1.fc40.noarc 4.9 MB/s |  54 MB     00:11    
(164/275): openssl-devel-3.1.1-4.fc40.x86_64.rp 2.3 MB/s | 2.6 MB     00:01    
(165/275): perl-B-1.88-500.fc39.x86_64.rpm      503 kB/s | 177 kB     00:00    
(166/275): perl-Carp-1.54-500.fc39.noarch.rpm   394 kB/s |  29 kB     00:00    
(167/275): perl-Data-Dumper-2.188-501.fc39.x86_ 931 kB/s |  56 kB     00:00    
(168/275): perl-Class-Struct-0.68-500.fc39.noar 347 kB/s |  22 kB     00:00    
(169/275): perl-Digest-1.20-500.fc39.noarch.rpm 414 kB/s |  25 kB     00:00    
(170/275): perl-DynaLoader-1.54-500.fc39.x86_64 430 kB/s |  26 kB     00:00    
(171/275): perl-Digest-MD5-2.58-501.fc40.x86_64 518 kB/s |  35 kB     00:00    
(172/275): perl-Errno-1.37-500.fc39.x86_64.rpm  240 kB/s |  15 kB     00:00    
(173/275): perl-Error-0.17029-13.fc39.noarch.rp 631 kB/s |  40 kB     00:00    
(174/275): perl-Exporter-5.77-500.fc39.noarch.r 517 kB/s |  31 kB     00:00    
(175/275): perl-Fcntl-1.15-500.fc39.x86_64.rpm  334 kB/s |  20 kB     00:00    
(176/275): perl-File-Basename-2.86-500.fc39.noa 297 kB/s |  17 kB     00:00    
(177/275): perl-File-Find-1.43-500.fc39.noarch. 440 kB/s |  25 kB     00:00    
(178/275): perl-File-Path-2.18-500.fc39.noarch. 614 kB/s |  35 kB     00:00    
(179/275): perl-File-Temp-0.231.100-500.fc39.no 943 kB/s |  58 kB     00:00    
(180/275): perl-File-stat-1.13-500.fc39.noarch. 296 kB/s |  17 kB     00:00    
(181/275): perl-FileHandle-2.05-500.fc39.noarch 297 kB/s |  16 kB     00:00    
(182/275): perl-Getopt-Std-1.13-500.fc39.noarch 282 kB/s |  16 kB     00:00    
(183/275): perl-Getopt-Long-2.54-500.fc39.noarc 902 kB/s |  60 kB     00:00    
(184/275): perl-Encode-3.19-500.fc39.x86_64.rpm 3.8 MB/s | 1.7 MB     00:00    
(185/275): perl-Git-2.41.0-2.fc39.noarch.rpm    577 kB/s |  41 kB     00:00    
(186/275): perl-HTTP-Tiny-0.088-3.fc39.noarch.r 776 kB/s |  56 kB     00:00    
(187/275): perl-IO-1.52-500.fc39.x86_64.rpm     1.2 MB/s |  82 kB     00:00    
(188/275): perl-IO-Socket-IP-0.42-1.fc39.noarch 571 kB/s |  42 kB     00:00    
(189/275): perl-IO-Socket-SSL-2.083-3.fc39.noar 2.7 MB/s | 225 kB     00:00    
(190/275): perl-IPC-Open3-1.22-500.fc39.noarch. 399 kB/s |  22 kB     00:00    
(191/275): perl-MIME-Base64-3.16-500.fc39.x86_6 444 kB/s |  29 kB     00:00    
(192/275): perl-Mozilla-CA-20230821-1.fc40.noar 212 kB/s |  13 kB     00:00    
(193/275): perl-NDBM_File-1.16-500.fc39.x86_64. 360 kB/s |  22 kB     00:00    
(194/275): perl-POSIX-2.13-500.fc39.x86_64.rpm  1.3 MB/s |  97 kB     00:00    
(195/275): perl-PathTools-3.89-500.fc39.x86_64. 1.1 MB/s |  87 kB     00:00    
(196/275): perl-Net-SSLeay-1.92-10.fc39.x86_64. 2.6 MB/s | 360 kB     00:00    
(197/275): perl-Pod-Escapes-1.07-501.fc40.noarc 316 kB/s |  19 kB     00:00    
(198/275): perl-Pod-Perldoc-3.28.01-501.fc39.no 1.2 MB/s |  86 kB     00:00    
(199/275): perl-Pod-Usage-2.03-500.fc39.noarch. 610 kB/s |  39 kB     00:00    
(200/275): perl-Pod-Simple-3.45-4.fc39.noarch.r 2.2 MB/s | 218 kB     00:00    
(201/275): perl-Scalar-List-Utils-1.63-500.fc39 885 kB/s |  72 kB     00:00    
(202/275): perl-SelectSaver-1.02-500.fc39.noarc 185 kB/s |  12 kB     00:00    
(203/275): perl-Socket-2.037-3.fc39.x86_64.rpm  843 kB/s |  55 kB     00:00    
(204/275): perl-Symbol-1.09-500.fc39.noarch.rpm 180 kB/s |  14 kB     00:00    
(205/275): perl-Storable-3.32-500.fc39.x86_64.r 1.1 MB/s |  99 kB     00:00    
(206/275): perl-Term-ANSIColor-5.01-501.fc39.no 642 kB/s |  47 kB     00:00    
(207/275): perl-Term-Cap-1.18-500.fc39.noarch.r 416 kB/s |  22 kB     00:00    
(208/275): perl-TermReadKey-2.38-18.fc39.x86_64 440 kB/s |  35 kB     00:00    
(209/275): perl-Text-ParseWords-3.31-500.fc39.n 222 kB/s |  16 kB     00:00    
(210/275): perl-Text-Tabs+Wrap-2023.0511-3.fc39 375 kB/s |  22 kB     00:00    
(211/275): perl-Time-Local-1.350-3.fc39.noarch. 534 kB/s |  34 kB     00:00    
(212/275): perl-URI-5.21-1.fc40.noarch.rpm      1.4 MB/s | 125 kB     00:00    
(213/275): perl-base-2.27-500.fc39.noarch.rpm   230 kB/s |  16 kB     00:00    
(214/275): perl-constant-1.33-501.fc39.noarch.r 297 kB/s |  22 kB     00:00    
(215/275): perl-if-0.61.000-500.fc39.noarch.rpm 200 kB/s |  14 kB     00:00    
(216/275): perl-interpreter-5.38.0-500.fc39.x86 378 kB/s |  72 kB     00:00    
(217/275): perl-libnet-3.15-501.fc39.noarch.rpm 836 kB/s | 129 kB     00:00    
(218/275): perl-lib-0.65-500.fc39.x86_64.rpm     71 kB/s |  15 kB     00:00    
(219/275): perl-locale-1.10-500.fc39.noarch.rpm 217 kB/s |  14 kB     00:00    
(220/275): perl-overload-1.37-500.fc39.noarch.r 796 kB/s |  46 kB     00:00    
(221/275): perl-overloading-0.02-500.fc39.noarc 189 kB/s |  13 kB     00:00    
(222/275): perl-parent-0.241-500.fc39.noarch.rp 280 kB/s |  14 kB     00:00    
(223/275): perl-podlators-5.01-500.fc39.noarch. 1.4 MB/s | 125 kB     00:00    
(224/275): perl-vars-1.05-500.fc39.noarch.rpm   213 kB/s |  13 kB     00:00    
(225/275): perl-mro-1.28-500.fc39.x86_64.rpm     66 kB/s |  29 kB     00:00    
(226/275): pigz-2.8-2.fc40.x86_64.rpm           1.0 MB/s |  94 kB     00:00    
(227/275): pkgconf-1.9.5-2.fc39.x86_64.rpm      694 kB/s |  42 kB     00:00    
(228/275): pkgconf-m4-1.9.5-2.fc39.noarch.rpm   237 kB/s |  14 kB     00:00    
(229/275): pkgconf-pkg-config-1.9.5-2.fc39.x86_ 155 kB/s | 9.6 kB     00:00    
(230/275): poppler-23.08.0-1.fc39.x86_64.rpm    3.9 MB/s | 1.2 MB     00:00    
(231/275): poppler-data-0.4.11-5.fc39.noarch.rp 5.5 MB/s | 2.0 MB     00:00    
(232/275): poppler-glib-23.08.0-1.fc39.x86_64.r 1.3 MB/s | 185 kB     00:00    
(233/275): procps-ng-4.0.3-5.fc40.x86_64.rpm    3.5 MB/s | 373 kB     00:00    
(234/275): perl-libs-5.38.0-500.fc39.x86_64.rpm 1.4 MB/s | 2.3 MB     00:01    
(235/275): python3-fb-re2-1.0.7-13.fc39.x86_64. 358 kB/s |  24 kB     00:00    
(236/275): python3-zombie-imp-0.0.2-2.fc39.noar 396 kB/s |  29 kB     00:00    
(237/275): pixman-0.42.2-2.fc39.x86_64.rpm      224 kB/s | 288 kB     00:01    
(238/275): rav1e-libs-0.6.6-2.fc39.x86_64.rpm   4.1 MB/s | 1.0 MB     00:00    
(239/275): re2-20220601-3.fc39.x86_64.rpm       1.0 MB/s | 200 kB     00:00    
(240/275): rsvg-pixbuf-loader-2.56.92-1.fc40.x8 266 kB/s |  15 kB     00:00    
(241/275): shared-mime-info-2.2-4.fc39.x86_64.r 1.5 MB/s | 380 kB     00:00    
(242/275): subversion-1.14.2-20.fc39.x86_64.rpm 4.8 MB/s | 1.0 MB     00:00    
(243/275): sudo-1.9.14-1.p3.fc39.x86_64.rpm     4.1 MB/s | 1.2 MB     00:00    
(244/275): sudo-python-plugin-1.9.14-1.p3.fc39. 934 kB/s |  53 kB     00:00    
(245/275): subversion-libs-1.14.2-20.fc39.x86_6 2.3 MB/s | 1.5 MB     00:00    
(246/275): svt-av1-libs-1.4.1-3.fc39.x86_64.rpm 5.7 MB/s | 2.0 MB     00:00    
(247/275): systemtap-5.0~pre16891249ge891a37e-0  96 kB/s | 8.7 kB     00:00    
(248/275): realtek-firmware-20230919-1.fc40.noa 1.3 MB/s | 2.4 MB     00:01    
(249/275): systemtap-client-5.0~pre16891249ge89 5.4 MB/s | 4.0 MB     00:00    
(250/275): tbb-2020.3-21.fc40.x86_64.rpm        1.7 MB/s | 169 kB     00:00    
(251/275): systemtap-devel-5.0~pre16891249ge891 2.6 MB/s | 2.4 MB     00:00    
(252/275): systemtap-runtime-5.0~pre16891249ge8 1.8 MB/s | 454 kB     00:00    
(253/275): tpm2-tools-5.5-4.fc39.x86_64.rpm     4.6 MB/s | 796 kB     00:00    
(254/275): unzip-6.0-62.fc39.x86_64.rpm         1.4 MB/s | 184 kB     00:00    
(255/275): urw-base35-d050000l-fonts-20200910-1 514 kB/s |  76 kB     00:00    
(256/275): urw-base35-c059-fonts-20200910-18.fc 4.0 MB/s | 874 kB     00:00    
(257/275): urw-base35-bookman-fonts-20200910-18 2.8 MB/s | 847 kB     00:00    
(258/275): urw-base35-fonts-20200910-18.fc39.no 120 kB/s |  10 kB     00:00    
(259/275): urw-base35-fonts-common-20200910-18. 254 kB/s |  21 kB     00:00    
(260/275): urw-base35-nimbus-roman-fonts-202009 4.0 MB/s | 856 kB     00:00    
(261/275): urw-base35-gothic-fonts-20200910-18. 2.2 MB/s | 643 kB     00:00    
(262/275): urw-base35-nimbus-mono-ps-fonts-2020 1.9 MB/s | 795 kB     00:00    
(263/275): urw-base35-nimbus-sans-fonts-2020091 4.8 MB/s | 1.3 MB     00:00    
(264/275): urw-base35-standard-symbols-ps-fonts 432 kB/s |  42 kB     00:00    
(265/275): urw-base35-p052-fonts-20200910-18.fc 2.9 MB/s | 974 kB     00:00    
(266/275): utf8proc-2.7.0-5.fc39.x86_64.rpm     1.1 MB/s |  80 kB     00:00    
(267/275): urw-base35-z003-fonts-20200910-18.fc 1.9 MB/s | 276 kB     00:00    
(268/275): which-2.21-40.fc39.x86_64.rpm        608 kB/s |  42 kB     00:00    
(269/275): xml-common-0.6.3-61.fc39.noarch.rpm  411 kB/s |  31 kB     00:00    
(270/275): xz-5.4.4-1.fc39.x86_64.rpm           2.5 MB/s | 556 kB     00:00    
(271/275): util-linux-2.39.2-1.fc40.x86_64.rpm  3.0 MB/s | 1.2 MB     00:00    
(272/275): xapian-core-libs-1.4.23-1.fc39.x86_6 2.3 MB/s | 771 kB     00:00    
(273/275): xz-devel-5.4.4-1.fc39.x86_64.rpm     1.1 MB/s |  66 kB     00:00    
(274/275): zlib-devel-1.2.13-4.fc39.x86_64.rpm  594 kB/s |  45 kB     00:00    
(275/275): zip-3.0-39.fc40.x86_64.rpm           1.8 MB/s | 266 kB     00:00    
--------------------------------------------------------------------------------
Total                                           8.8 MB/s | 470 MB     00:53     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : nspr-4.35.0-13.fc40.x86_64                           1/275 
  Installing       : linux-firmware-whence-20230919-1.fc40.noarch         2/275 
  Installing       : libpng-2:1.6.40-1.fc40.x86_64                        3/275 
  Installing       : elfutils-debuginfod-client-0.189-6.fc40.x86_64       4/275 
  Installing       : libjpeg-turbo-2.1.4-3.fc39.x86_64                    5/275 
  Installing       : fonts-filesystem-1:2.0.5-12.fc39.noarch              6/275 
  Installing       : urw-base35-fonts-common-20200910-18.fc39.noarch      7/275 
  Installing       : boost-system-1.81.0-6.fc39.x86_64                    8/275 
  Installing       : nss-util-3.93.0-2.fc40.x86_64                        9/275 
  Installing       : grub2-common-1:2.06-100.fc40.noarch                 10/275 
  Installing       : apr-1.7.3-2.fc39.x86_64                             11/275 
  Installing       : apr-util-bdb-1.6.3-5.fc40.x86_64                    12/275 
  Installing       : apr-util-openssl-1.6.3-5.fc40.x86_64                13/275 
  Installing       : apr-util-1.6.3-5.fc40.x86_64                        14/275 
  Installing       : libwebp-1.3.2-1.fc40.x86_64                         15/275 
  Installing       : clang-resource-filesystem-17.0.0~rc4-1.fc40.x86_    16/275 
  Installing       : avahi-libs-0.8-24.fc39.x86_64                       17/275 
  Installing       : unzip-6.0-62.fc39.x86_64                            18/275 
  Installing       : shared-mime-info-2.2-4.fc39.x86_64                  19/275 
  Running scriptlet: shared-mime-info-2.2-4.fc39.x86_64                  19/275 
  Installing       : gdk-pixbuf2-2.42.10-5.fc39.x86_64                   20/275 
  Installing       : openjpeg2-2.5.0-4.fc39.x86_64                       21/275 
  Installing       : m4-1.4.19-7.fc40.x86_64                             22/275 
  Installing       : libtool-ltdl-2.4.7-8.fc40.x86_64                    23/275 
  Installing       : libmpc-1.3.1-3.fc39.x86_64                          24/275 
  Installing       : libedit-3.1-48.20230828cvs.fc40.x86_64              25/275 
  Installing       : llvm-libs-17.0.0~rc4-1.fc40.x86_64                  26/275 
  Installing       : libomp-17.0.0~rc4-1.fc40.x86_64                     27/275 
  Installing       : libICE-1.0.10-12.fc40.x86_64                        28/275 
  Installing       : lcms2-2.15-2.fc39.x86_64                            29/275 
  Installing       : jansson-2.13.1-7.fc39.x86_64                        30/275 
  Installing       : binutils-gold-2.41-5.fc40.x86_64                    31/275 
  Running scriptlet: binutils-gold-2.41-5.fc40.x86_64                    31/275 
  Installing       : binutils-2.41-5.fc40.x86_64                         32/275 
  Running scriptlet: binutils-2.41-5.fc40.x86_64                         32/275 
  Installing       : gettext-libs-0.22-2.fc39.x86_64                     33/275 
  Installing       : file-5.45-1.fc40.x86_64                             34/275 
  Installing       : adobe-mappings-cmap-20230622-1.fc39.noarch          35/275 
  Installing       : adobe-mappings-cmap-deprecated-20230622-1.fc39.n    36/275 
  Installing       : libSM-1.2.3-14.fc40.x86_64                          37/275 
  Installing       : libomp-devel-17.0.0~rc4-1.fc40.x86_64               38/275 
  Installing       : cpp-13.2.1-3.fc40.x86_64                            39/275 
  Installing       : bison-3.8.2-6.fc40.x86_64                           40/275 
  Installing       : flex-2.6.4-13.fc39.x86_64                           41/275 
  Installing       : zip-3.0-39.fc40.x86_64                              42/275 
  Installing       : cups-libs-1:2.4.7-1.fc40.x86_64                     43/275 
  Installing       : compiler-rt-17.0.0~rc4-1.fc40.x86_64                44/275 
  Installing       : libserf-1.3.10-2.fc39.x86_64                        45/275 
  Installing       : grub2-pc-modules-1:2.06-100.fc40.noarch             46/275 
  Installing       : nss-softokn-freebl-3.93.0-2.fc40.x86_64             47/275 
  Installing       : nss-softokn-3.93.0-2.fc40.x86_64                    48/275 
  Installing       : boost-thread-1.81.0-6.fc39.x86_64                   49/275 
  Installing       : urw-base35-bookman-fonts-20200910-18.fc39.noarch    50/275 
  Running scriptlet: urw-base35-bookman-fonts-20200910-18.fc39.noarch    50/275 
  Installing       : urw-base35-c059-fonts-20200910-18.fc39.noarch       51/275 
  Running scriptlet: urw-base35-c059-fonts-20200910-18.fc39.noarch       51/275 
  Installing       : urw-base35-d050000l-fonts-20200910-18.fc39.noarc    52/275 
  Running scriptlet: urw-base35-d050000l-fonts-20200910-18.fc39.noarc    52/275 
  Installing       : urw-base35-gothic-fonts-20200910-18.fc39.noarch     53/275 
  Running scriptlet: urw-base35-gothic-fonts-20200910-18.fc39.noarch     53/275 
  Installing       : urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39    54/275 
  Running scriptlet: urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39    54/275 
  Installing       : urw-base35-nimbus-roman-fonts-20200910-18.fc39.n    55/275 
  Running scriptlet: urw-base35-nimbus-roman-fonts-20200910-18.fc39.n    55/275 
  Installing       : urw-base35-nimbus-sans-fonts-20200910-18.fc39.no    56/275 
  Running scriptlet: urw-base35-nimbus-sans-fonts-20200910-18.fc39.no    56/275 
  Installing       : urw-base35-p052-fonts-20200910-18.fc39.noarch       57/275 
  Running scriptlet: urw-base35-p052-fonts-20200910-18.fc39.noarch       57/275 
  Installing       : urw-base35-standard-symbols-ps-fonts-20200910-18    58/275 
  Running scriptlet: urw-base35-standard-symbols-ps-fonts-20200910-18    58/275 
  Installing       : urw-base35-z003-fonts-20200910-18.fc39.noarch       59/275 
  Running scriptlet: urw-base35-z003-fonts-20200910-18.fc39.noarch       59/275 
  Installing       : urw-base35-fonts-20200910-18.fc39.noarch            60/275 
  Installing       : abattis-cantarell-vf-fonts-0.301-10.fc39.noarch     61/275 
  Installing       : amd-gpu-firmware-20230919-1.fc40.noarch             62/275 
  Installing       : atheros-firmware-20230919-1.fc40.noarch             63/275 
  Installing       : brcmfmac-firmware-20230919-1.fc40.noarch            64/275 
  Installing       : intel-gpu-firmware-20230919-1.fc40.noarch           65/275 
  Installing       : mt7xxx-firmware-20230919-1.fc40.noarch              66/275 
  Installing       : nvidia-gpu-firmware-20230919-1.fc40.noarch          67/275 
  Installing       : realtek-firmware-20230919-1.fc40.noarch             68/275 
  Installing       : linux-firmware-20230919-1.fc40.noarch               69/275 
  Installing       : xz-5.4.4-1.fc39.x86_64                              70/275 
  Running scriptlet: xml-common-0.6.3-61.fc39.noarch                     71/275 
  Installing       : xml-common-0.6.3-61.fc39.noarch                     71/275 
  Installing       : xapian-core-libs-1.4.23-1.fc39.x86_64               72/275 
  Installing       : which-2.21-40.fc39.x86_64                           73/275 
  Installing       : utf8proc-2.7.0-5.fc39.x86_64                        74/275 
  Installing       : subversion-libs-1.14.2-20.fc39.x86_64               75/275 
  Installing       : tpm2-tools-5.5-4.fc39.x86_64                        76/275 
  Installing       : tbb-2020.3-21.fc40.x86_64                           77/275 
  Installing       : svt-av1-libs-1.4.1-3.fc39.x86_64                    78/275 
  Installing       : re2-1:20220601-3.fc39.x86_64                        79/275 
  Installing       : python3-fb-re2-1.0.7-13.fc39.x86_64                 80/275 
  Installing       : rav1e-libs-0.6.6-2.fc39.x86_64                      81/275 
  Installing       : python3-zombie-imp-0.0.2-2.fc39.noarch              82/275 
  Installing       : procps-ng-4.0.3-5.fc40.x86_64                       83/275 
  Installing       : poppler-data-0.4.11-5.fc39.noarch                   84/275 
  Installing       : pkgconf-m4-1.9.5-2.fc39.noarch                      85/275 
  Installing       : pixman-0.42.2-2.fc39.x86_64                         86/275 
  Installing       : pigz-2.8-2.fc40.x86_64                              87/275 
  Installing       : netpbm-11.02.00-2.fc39.x86_64                       88/275 
  Installing       : gts-0.7.6-46.20121130.fc39.x86_64                   89/275 
  Installing       : ncurses-6.4-7.20230520.fc40.x86_64                  90/275 
  Installing       : nano-7.2-4.fc39.x86_64                              91/275 
  Installing       : nano-default-editor-7.2-4.fc39.noarch               92/275 
  Installing       : sudo-python-plugin-1.9.14-1.p3.fc39.x86_64          93/275 
  Installing       : sudo-1.9.14-1.p3.fc39.x86_64                        94/275 
  Installing       : memstrack-0.2.5-2.fc39.x86_64                       95/275 
  Installing       : libvmaf-2.3.0-6.fc39.x86_64                         96/275 
  Running scriptlet: libutempter-1.2.1-10.fc39.x86_64                    97/275 
  Installing       : libutempter-1.2.1-10.fc39.x86_64                    97/275 
  Installing       : util-linux-2.39.2-1.fc40.x86_64                     98/275 
  Installing       : openssh-9.3p1-11.fc40.x86_64                        99/275 
  Installing       : libpkgconf-1.9.5-2.fc39.x86_64                     100/275 
  Installing       : pkgconf-1.9.5-2.fc39.x86_64                        101/275 
  Installing       : pkgconf-pkg-config-1.9.5-2.fc39.x86_64             102/275 
  Installing       : libzstd-devel-1.5.5-4.fc39.x86_64                  103/275 
  Installing       : zlib-devel-1.2.13-4.fc39.x86_64                    104/275 
  Installing       : elfutils-libelf-devel-0.189-6.fc40.x86_64          105/275 
  Installing       : elfutils-debuginfod-client-devel-0.189-6.fc40.x8   106/275 
  Installing       : openssl-devel-1:3.1.1-4.fc40.x86_64                107/275 
  Installing       : xz-devel-5.4.4-1.fc39.x86_64                       108/275 
  Installing       : elfutils-devel-0.189-6.fc40.x86_64                 109/275 
  Installing       : libpaper-1:2.1.1-1.fc39.x86_64                     110/275 
  Installing       : liblerc-4.0.0-4.fc39.x86_64                        111/275 
  Installing       : libkcapi-1.4.0-7.fc39.x86_64                       112/275 
  Installing       : libkcapi-hmaccalc-1.4.0-7.fc39.x86_64              113/275 
  Installing       : libimagequant-4.0.1-5.fc39.x86_64                  114/275 
  Installing       : libijs-0.35-19.fc39.x86_64                         115/275 
  Installing       : libdav1d-1.2.1-2.fc39.x86_64                       116/275 
  Installing       : libdatrie-0.2.13-7.fc39.x86_64                     117/275 
  Installing       : libthai-0.1.29-6.fc39.x86_64                       118/275 
  Installing       : libcbor-0.10.2-2.fc39.x86_64                       119/275 
  Installing       : libfido2-1.13.0-3.fc39.x86_64                      120/275 
  Installing       : openssh-clients-9.3p1-11.fc40.x86_64               121/275 
  Running scriptlet: openssh-clients-9.3p1-11.fc40.x86_64               121/275 
  Installing       : libatomic-13.2.1-3.fc40.x86_64                     122/275 
  Installing       : clang-libs-17.0.0~rc4-1.fc40.x86_64                123/275 
  Installing       : libXau-1.0.11-4.fc40.x86_64                        124/275 
  Installing       : libxcb-1.13.1-12.fc39.x86_64                       125/275 
  Installing       : libX11-common-1.8.6-3.fc40.noarch                  126/275 
  Installing       : libX11-1.8.6-3.fc40.x86_64                         127/275 
  Installing       : libXrender-0.9.11-4.fc40.x86_64                    128/275 
  Installing       : libXext-1.3.5-3.fc39.x86_64                        129/275 
  Installing       : libXpm-3.5.15-5.fc40.x86_64                        130/275 
  Installing       : libXt-1.2.1-6.fc40.x86_64                          131/275 
  Installing       : less-643-1.fc40.x86_64                             132/275 
  Installing       : git-core-2.41.0-2.fc39.x86_64                      133/275 
  Installing       : git-core-doc-2.41.0-2.fc39.noarch                  134/275 
  Installing       : kpartx-0.9.6-1.fc40.x86_64                         135/275 
  Installing       : kernel-headers-6.6.0-0.rc2.git0.1.fc40.x86_64      136/275 
  Installing       : jbigkit-libs-2.1-26.fc39.x86_64                    137/275 
  Installing       : libtiff-4.4.0-8.fc40.x86_64                        138/275 
  Installing       : jbig2dec-libs-0.19-10.fc39.x86_64                  139/275 
  Installing       : highway-1.0.7-1.fc40.x86_64                        140/275 
  Installing       : libjxl-1:0.8.2-3.fc40.x86_64                       141/275 
  Installing       : jxl-pixbuf-loader-1:0.8.2-3.fc40.x86_64            142/275 
  Installing       : libaom-3.7.0-1.fc40.x86_64                         143/275 
  Installing       : libavif-0.11.1-11.fc39.x86_64                      144/275 
  Running scriptlet: groff-base-1.23.0-2.fc39.x86_64                    145/275 
  Installing       : groff-base-1.23.0-2.fc39.x86_64                    145/275 
  Running scriptlet: groff-base-1.23.0-2.fc39.x86_64                    145/275 
  Installing       : perl-Digest-1.20-500.fc39.noarch                   146/275 
  Installing       : perl-Digest-MD5-2.58-501.fc40.x86_64               147/275 
  Installing       : perl-B-1.88-500.fc39.x86_64                        148/275 
  Installing       : perl-FileHandle-2.05-500.fc39.noarch               149/275 
  Installing       : perl-Data-Dumper-2.188-501.fc39.x86_64             150/275 
  Installing       : perl-libnet-3.15-501.fc39.noarch                   151/275 
  Installing       : perl-AutoLoader-5.74-500.fc39.noarch               152/275 
  Installing       : perl-base-2.27-500.fc39.noarch                     153/275 
  Installing       : perl-URI-5.21-1.fc40.noarch                        154/275 
  Installing       : perl-Text-Tabs+Wrap-2023.0511-3.fc39.noarch        155/275 
  Installing       : perl-Mozilla-CA-20230821-1.fc40.noarch             156/275 
  Installing       : perl-if-0.61.000-500.fc39.noarch                   157/275 
  Installing       : perl-locale-1.10-500.fc39.noarch                   158/275 
  Installing       : perl-IO-Socket-IP-0.42-1.fc39.noarch               159/275 
  Installing       : perl-Time-Local-2:1.350-3.fc39.noarch              160/275 
  Installing       : perl-File-Path-2.18-500.fc39.noarch                161/275 
  Installing       : perl-IO-Socket-SSL-2.083-3.fc39.noarch             162/275 
  Installing       : perl-Net-SSLeay-1.92-10.fc39.x86_64                163/275 
  Installing       : perl-Pod-Escapes-1:1.07-501.fc40.noarch            164/275 
  Installing       : perl-Class-Struct-0.68-500.fc39.noarch             165/275 
  Installing       : perl-Term-ANSIColor-5.01-501.fc39.noarch           166/275 
  Installing       : perl-POSIX-2.13-500.fc39.x86_64                    167/275 
  Installing       : perl-IPC-Open3-1.22-500.fc39.noarch                168/275 
  Installing       : perl-File-Temp-1:0.231.100-500.fc39.noarch         169/275 
  Installing       : perl-HTTP-Tiny-0.088-3.fc39.noarch                 170/275 
  Installing       : perl-Term-Cap-1.18-500.fc39.noarch                 171/275 
  Installing       : perl-Pod-Simple-1:3.45-4.fc39.noarch               172/275 
  Installing       : perl-Socket-4:2.037-3.fc39.x86_64                  173/275 
  Installing       : perl-SelectSaver-1.02-500.fc39.noarch              174/275 
  Installing       : perl-Symbol-1.09-500.fc39.noarch                   175/275 
  Installing       : perl-File-stat-1.13-500.fc39.noarch                176/275 
  Installing       : perl-podlators-1:5.01-500.fc39.noarch              177/275 
  Installing       : perl-Pod-Perldoc-3.28.01-501.fc39.noarch           178/275 
  Installing       : perl-Fcntl-1.15-500.fc39.x86_64                    179/275 
  Installing       : perl-Text-ParseWords-3.31-500.fc39.noarch          180/275 
  Installing       : perl-mro-1.28-500.fc39.x86_64                      181/275 
  Installing       : perl-IO-1.52-500.fc39.x86_64                       182/275 
  Installing       : perl-overloading-0.02-500.fc39.noarch              183/275 
  Installing       : perl-Pod-Usage-4:2.03-500.fc39.noarch              184/275 
  Installing       : perl-Errno-1.37-500.fc39.x86_64                    185/275 
  Installing       : perl-File-Basename-2.86-500.fc39.noarch            186/275 
  Installing       : perl-Getopt-Std-1.13-500.fc39.noarch               187/275 
  Installing       : perl-MIME-Base64-3.16-500.fc39.x86_64              188/275 
  Installing       : perl-Scalar-List-Utils-5:1.63-500.fc39.x86_64      189/275 
  Installing       : perl-constant-1.33-501.fc39.noarch                 190/275 
  Installing       : perl-Storable-1:3.32-500.fc39.x86_64               191/275 
  Installing       : perl-overload-1.37-500.fc39.noarch                 192/275 
  Installing       : perl-parent-1:0.241-500.fc39.noarch                193/275 
  Installing       : perl-vars-1.05-500.fc39.noarch                     194/275 
  Installing       : perl-Getopt-Long-1:2.54-500.fc39.noarch            195/275 
  Installing       : perl-Carp-1.54-500.fc39.noarch                     196/275 
  Installing       : perl-Exporter-5.77-500.fc39.noarch                 197/275 
  Installing       : perl-NDBM_File-1.16-500.fc39.x86_64                198/275 
  Installing       : perl-PathTools-3.89-500.fc39.x86_64                199/275 
  Installing       : perl-DynaLoader-1.54-500.fc39.x86_64               200/275 
  Installing       : perl-Encode-4:3.19-500.fc39.x86_64                 201/275 
  Installing       : perl-libs-4:5.38.0-500.fc39.x86_64                 202/275 
  Installing       : perl-interpreter-4:5.38.0-500.fc39.x86_64          203/275 
  Installing       : perl-Error-1:0.17029-13.fc39.noarch                204/275 
  Installing       : perl-File-Find-1.43-500.fc39.noarch                205/275 
  Installing       : perl-TermReadKey-2.38-18.fc39.x86_64               206/275 
  Installing       : perl-lib-0.65-500.fc39.x86_64                      207/275 
  Installing       : perl-Git-2.41.0-2.fc39.noarch                      208/275 
  Installing       : git-2.41.0-2.fc39.x86_64                           209/275 
  Installing       : graphite2-1.3.14-12.fc39.x86_64                    210/275 
  Installing       : google-noto-fonts-common-20230801-3.fc40.noarch    211/275 
  Installing       : google-noto-sans-vf-fonts-20230801-3.fc40.noarch   212/275 
  Installing       : default-fonts-core-sans-4.0-9.fc40.noarch          213/275 
  Installing       : cairo-1.17.8-5.fc39.x86_64                         214/275 
  Installing       : harfbuzz-8.2.1-1.fc40.x86_64                       215/275 
  Installing       : freetype-2.13.1-2.fc39.x86_64                      216/275 
  Installing       : fontconfig-2.14.2-5.fc40.x86_64                    217/275 
  Running scriptlet: fontconfig-2.14.2-5.fc40.x86_64                    217/275 
  Installing       : cairo-gobject-1.17.8-5.fc39.x86_64                 218/275 
  Installing       : gd-2.3.3-12.fc39.x86_64                            219/275 
  Installing       : libXft-2.3.8-4.fc40.x86_64                         220/275 
  Installing       : google-droid-sans-fonts-20200215-17.fc40.noarch    221/275 
  Installing       : glibc-headers-x86-2.38.9000-9.fc40.noarch          222/275 
  Installing       : libxcrypt-devel-4.4.36-2.fc39.x86_64               223/275 
  Installing       : glibc-devel-2.38.9000-9.fc40.x86_64                224/275 
  Installing       : gettext-envsubst-0.22-2.fc39.x86_64                225/275 
  Installing       : gettext-runtime-0.22-2.fc39.x86_64                 226/275 
  Installing       : gc-8.2.2-4.fc39.x86_64                             227/275 
  Installing       : guile22-2.2.7-9.fc39.x86_64                        228/275 
  Installing       : make-1:4.4.1-2.fc39.x86_64                         229/275 
  Installing       : gcc-13.2.1-3.fc40.x86_64                           230/275 
  Installing       : kernel-devel-6.6.0-0.rc2.20230922git27bbf45eae9c   231/275 
  Running scriptlet: kernel-devel-6.6.0-0.rc2.20230922git27bbf45eae9c   231/275 
  Installing       : fuse-libs-2.9.9-17.fc39.x86_64                     232/275 
  Installing       : grub2-tools-minimal-1:2.06-100.fc40.x86_64         233/275 
  Installing       : os-prober-1.81-4.fc39.x86_64                       234/275 
  Installing       : fribidi-1.0.13-2.fc39.x86_64                       235/275 
  Installing       : pango-1.51.0-1.fc40.x86_64                         236/275 
  Installing       : librsvg2-2.56.92-1.fc40.x86_64                     237/275 
  Installing       : rsvg-pixbuf-loader-2.56.92-1.fc40.x86_64           238/275 
  Installing       : lasi-1.1.3-11.fc39.x86_64                          239/275 
  Installing       : emacs-filesystem-1:29.1-1.fc39.noarch              240/275 
  Installing       : efivar-libs-38-8.fc39.x86_64                       241/275 
  Installing       : mokutil-2:0.6.0-7.fc39.x86_64                      242/275 
  Installing       : ed-1.19-4.fc39.x86_64                              243/275 
  Installing       : patch-2.7.6-22.fc39.x86_64                         244/275 
  Installing       : cpio-2.14-4.fc39.x86_64                            245/275 
  Installing       : dracut-059-13.fc40.x86_64                          246/275 
  Installing       : kernel-modules-core-6.6.0-0.rc2.20230922git27bbf   247/275 
  Installing       : kernel-core-6.6.0-0.rc2.20230922git27bbf45eae9c.   248/275 
  Running scriptlet: kernel-core-6.6.0-0.rc2.20230922git27bbf45eae9c.   248/275 
  Running scriptlet: grub2-tools-1:2.06-100.fc40.x86_64                 249/275 
  Installing       : grub2-tools-1:2.06-100.fc40.x86_64                 249/275 
  Running scriptlet: grub2-tools-1:2.06-100.fc40.x86_64                 249/275 
Created symlink /etc/systemd/system/system-update.target.wants/grub-boot-indeterminate.service → /usr/lib/systemd/system/grub-boot-indeterminate.service.
Failed to preset unit, unit grub-systemd-integration.service does not exist.
Created symlink /etc/systemd/user/timers.target.wants/grub-boot-success.timer → /usr/lib/systemd/user/grub-boot-success.timer.

  Installing       : grubby-8.40-72.fc40.x86_64                         250/275 
  Running scriptlet: grubby-8.40-72.fc40.x86_64                         250/275 
  Installing       : crypto-policies-scripts-20230920-1.git570ea89.fc   251/275 
  Installing       : nss-sysinit-3.93.0-2.fc40.x86_64                   252/275 
  Installing       : nss-3.93.0-2.fc40.x86_64                           253/275 
  Running scriptlet: nss-3.93.0-2.fc40.x86_64                           253/275 
  Installing       : poppler-23.08.0-1.fc39.x86_64                      254/275 
  Installing       : poppler-glib-23.08.0-1.fc39.x86_64                 255/275 
  Installing       : kernel-modules-6.6.0-0.rc2.20230922git27bbf45eae   256/275 
  Running scriptlet: kernel-modules-6.6.0-0.rc2.20230922git27bbf45eae   256/275 
  Installing       : boost-atomic-1.81.0-6.fc39.x86_64                  257/275 
  Installing       : boost-filesystem-1.81.0-6.fc39.x86_64              258/275 
  Installing       : dyninst-12.3.0-3.fc39.x86_64                       259/275 
  Running scriptlet: dyninst-12.3.0-3.fc39.x86_64                       259/275 
  Installing       : systemtap-devel-5.0~pre16891249ge891a37e-0.2.fc3   260/275 
  Running scriptlet: systemtap-runtime-5.0~pre16891249ge891a37e-0.2.f   261/275 
Creating group 'stapusr' with GID 156.
Creating group 'stapsys' with GID 157.
Creating group 'stapdev' with GID 158.

  Installing       : systemtap-runtime-5.0~pre16891249ge891a37e-0.2.f   261/275 
  Installing       : systemtap-client-5.0~pre16891249ge891a37e-0.2.fc   262/275 
  Installing       : adobe-mappings-pdf-20190401-5.fc39.noarch          263/275 
  Installing       : libgs-10.01.2-3.fc39.x86_64                        264/275 
  Installing       : graphviz-8.1.0-6.fc40.x86_64                       265/275 
  Running scriptlet: graphviz-8.1.0-6.fc40.x86_64                       265/275 
  Installing       : doxygen-2:1.9.8-1.fc40.x86_64                      266/275 
  Installing       : systemtap-5.0~pre16891249ge891a37e-0.2.fc39.x86_   267/275 
  Running scriptlet: systemtap-5.0~pre16891249ge891a37e-0.2.fc39.x86_   267/275 
  Installing       : kernel-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc   268/275 
  Installing       : grub2-pc-1:2.06-100.fc40.x86_64                    269/275 
  Installing       : patchutils-0.4.2-11.fc39.x86_64                    270/275 
  Installing       : mercurial-6.5.1-1.fc39.x86_64                      271/275 
  Installing       : gettext-0.22-2.fc39.x86_64                         272/275 
  Running scriptlet: openssh-server-9.3p1-11.fc40.x86_64                273/275 
  Installing       : openssh-server-9.3p1-11.fc40.x86_64                273/275 
  Running scriptlet: openssh-server-9.3p1-11.fc40.x86_64                273/275 
Created symlink /etc/systemd/system/multi-user.target.wants/sshd.service → /usr/lib/systemd/system/sshd.service.

  Installing       : subversion-1.14.2-20.fc39.x86_64                   274/275 
  Running scriptlet: subversion-1.14.2-20.fc39.x86_64                   274/275 
  Installing       : diffstat-1.65-3.fc39.x86_64                        275/275 
  Running scriptlet: grub2-common-1:2.06-100.fc40.noarch                275/275 
  Running scriptlet: urw-base35-bookman-fonts-20200910-18.fc39.noarch   275/275 
  Running scriptlet: urw-base35-c059-fonts-20200910-18.fc39.noarch      275/275 
  Running scriptlet: urw-base35-d050000l-fonts-20200910-18.fc39.noarc   275/275 
  Running scriptlet: urw-base35-gothic-fonts-20200910-18.fc39.noarch    275/275 
  Running scriptlet: urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39   275/275 
  Running scriptlet: urw-base35-nimbus-roman-fonts-20200910-18.fc39.n   275/275 
  Running scriptlet: urw-base35-nimbus-sans-fonts-20200910-18.fc39.no   275/275 
  Running scriptlet: urw-base35-p052-fonts-20200910-18.fc39.noarch      275/275 
  Running scriptlet: urw-base35-standard-symbols-ps-fonts-20200910-18   275/275 
  Running scriptlet: urw-base35-z003-fonts-20200910-18.fc39.noarch      275/275 
  Running scriptlet: fontconfig-2.14.2-5.fc40.x86_64                    275/275 
  Running scriptlet: kernel-modules-core-6.6.0-0.rc2.20230922git27bbf   275/275 
  Running scriptlet: kernel-core-6.6.0-0.rc2.20230922git27bbf45eae9c.   275/275 
dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y

  Running scriptlet: crypto-policies-scripts-20230920-1.git570ea89.fc   275/275 
  Running scriptlet: nss-3.93.0-2.fc40.x86_64                           275/275 
  Running scriptlet: kernel-modules-6.6.0-0.rc2.20230922git27bbf45eae   275/275 
  Running scriptlet: diffstat-1.65-3.fc39.x86_64                        275/275 
Running in chroot, ignoring request.

Running in chroot, ignoring command 'daemon-reload'
Running in chroot, ignoring command 'reload-or-restart'

Running in chroot, ignoring command 'list-units'

  Verifying        : abattis-cantarell-vf-fonts-0.301-10.fc39.noarch      1/275 
  Verifying        : adobe-mappings-cmap-20230622-1.fc39.noarch           2/275 
  Verifying        : adobe-mappings-cmap-deprecated-20230622-1.fc39.n     3/275 
  Verifying        : adobe-mappings-pdf-20190401-5.fc39.noarch            4/275 
  Verifying        : amd-gpu-firmware-20230919-1.fc40.noarch              5/275 
  Verifying        : apr-1.7.3-2.fc39.x86_64                              6/275 
  Verifying        : apr-util-1.6.3-5.fc40.x86_64                         7/275 
  Verifying        : apr-util-bdb-1.6.3-5.fc40.x86_64                     8/275 
  Verifying        : apr-util-openssl-1.6.3-5.fc40.x86_64                 9/275 
  Verifying        : atheros-firmware-20230919-1.fc40.noarch             10/275 
  Verifying        : avahi-libs-0.8-24.fc39.x86_64                       11/275 
  Verifying        : binutils-2.41-5.fc40.x86_64                         12/275 
  Verifying        : binutils-gold-2.41-5.fc40.x86_64                    13/275 
  Verifying        : bison-3.8.2-6.fc40.x86_64                           14/275 
  Verifying        : boost-atomic-1.81.0-6.fc39.x86_64                   15/275 
  Verifying        : boost-filesystem-1.81.0-6.fc39.x86_64               16/275 
  Verifying        : boost-system-1.81.0-6.fc39.x86_64                   17/275 
  Verifying        : boost-thread-1.81.0-6.fc39.x86_64                   18/275 
  Verifying        : brcmfmac-firmware-20230919-1.fc40.noarch            19/275 
  Verifying        : cairo-1.17.8-5.fc39.x86_64                          20/275 
  Verifying        : cairo-gobject-1.17.8-5.fc39.x86_64                  21/275 
  Verifying        : clang-libs-17.0.0~rc4-1.fc40.x86_64                 22/275 
  Verifying        : clang-resource-filesystem-17.0.0~rc4-1.fc40.x86_    23/275 
  Verifying        : compiler-rt-17.0.0~rc4-1.fc40.x86_64                24/275 
  Verifying        : cpio-2.14-4.fc39.x86_64                             25/275 
  Verifying        : cpp-13.2.1-3.fc40.x86_64                            26/275 
  Verifying        : crypto-policies-scripts-20230920-1.git570ea89.fc    27/275 
  Verifying        : cups-libs-1:2.4.7-1.fc40.x86_64                     28/275 
  Verifying        : default-fonts-core-sans-4.0-9.fc40.noarch           29/275 
  Verifying        : diffstat-1.65-3.fc39.x86_64                         30/275 
  Verifying        : doxygen-2:1.9.8-1.fc40.x86_64                       31/275 
  Verifying        : dracut-059-13.fc40.x86_64                           32/275 
  Verifying        : dyninst-12.3.0-3.fc39.x86_64                        33/275 
  Verifying        : ed-1.19-4.fc39.x86_64                               34/275 
  Verifying        : efivar-libs-38-8.fc39.x86_64                        35/275 
  Verifying        : elfutils-debuginfod-client-0.189-6.fc40.x86_64      36/275 
  Verifying        : elfutils-debuginfod-client-devel-0.189-6.fc40.x8    37/275 
  Verifying        : elfutils-devel-0.189-6.fc40.x86_64                  38/275 
  Verifying        : elfutils-libelf-devel-0.189-6.fc40.x86_64           39/275 
  Verifying        : emacs-filesystem-1:29.1-1.fc39.noarch               40/275 
  Verifying        : file-5.45-1.fc40.x86_64                             41/275 
  Verifying        : flex-2.6.4-13.fc39.x86_64                           42/275 
  Verifying        : fontconfig-2.14.2-5.fc40.x86_64                     43/275 
  Verifying        : fonts-filesystem-1:2.0.5-12.fc39.noarch             44/275 
  Verifying        : freetype-2.13.1-2.fc39.x86_64                       45/275 
  Verifying        : fribidi-1.0.13-2.fc39.x86_64                        46/275 
  Verifying        : fuse-libs-2.9.9-17.fc39.x86_64                      47/275 
  Verifying        : gc-8.2.2-4.fc39.x86_64                              48/275 
  Verifying        : gcc-13.2.1-3.fc40.x86_64                            49/275 
  Verifying        : gd-2.3.3-12.fc39.x86_64                             50/275 
  Verifying        : gdk-pixbuf2-2.42.10-5.fc39.x86_64                   51/275 
  Verifying        : gettext-0.22-2.fc39.x86_64                          52/275 
  Verifying        : gettext-envsubst-0.22-2.fc39.x86_64                 53/275 
  Verifying        : gettext-libs-0.22-2.fc39.x86_64                     54/275 
  Verifying        : gettext-runtime-0.22-2.fc39.x86_64                  55/275 
  Verifying        : git-2.41.0-2.fc39.x86_64                            56/275 
  Verifying        : git-core-2.41.0-2.fc39.x86_64                       57/275 
  Verifying        : git-core-doc-2.41.0-2.fc39.noarch                   58/275 
  Verifying        : glibc-devel-2.38.9000-9.fc40.x86_64                 59/275 
  Verifying        : glibc-headers-x86-2.38.9000-9.fc40.noarch           60/275 
  Verifying        : google-droid-sans-fonts-20200215-17.fc40.noarch     61/275 
  Verifying        : google-noto-fonts-common-20230801-3.fc40.noarch     62/275 
  Verifying        : google-noto-sans-vf-fonts-20230801-3.fc40.noarch    63/275 
  Verifying        : graphite2-1.3.14-12.fc39.x86_64                     64/275 
  Verifying        : graphviz-8.1.0-6.fc40.x86_64                        65/275 
  Verifying        : groff-base-1.23.0-2.fc39.x86_64                     66/275 
  Verifying        : grub2-common-1:2.06-100.fc40.noarch                 67/275 
  Verifying        : grub2-pc-1:2.06-100.fc40.x86_64                     68/275 
  Verifying        : grub2-pc-modules-1:2.06-100.fc40.noarch             69/275 
  Verifying        : grub2-tools-1:2.06-100.fc40.x86_64                  70/275 
  Verifying        : grub2-tools-minimal-1:2.06-100.fc40.x86_64          71/275 
  Verifying        : grubby-8.40-72.fc40.x86_64                          72/275 
  Verifying        : gts-0.7.6-46.20121130.fc39.x86_64                   73/275 
  Verifying        : guile22-2.2.7-9.fc39.x86_64                         74/275 
  Verifying        : harfbuzz-8.2.1-1.fc40.x86_64                        75/275 
  Verifying        : highway-1.0.7-1.fc40.x86_64                         76/275 
  Verifying        : intel-gpu-firmware-20230919-1.fc40.noarch           77/275 
  Verifying        : jansson-2.13.1-7.fc39.x86_64                        78/275 
  Verifying        : jbig2dec-libs-0.19-10.fc39.x86_64                   79/275 
  Verifying        : jbigkit-libs-2.1-26.fc39.x86_64                     80/275 
  Verifying        : jxl-pixbuf-loader-1:0.8.2-3.fc40.x86_64             81/275 
  Verifying        : kernel-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc    82/275 
  Verifying        : kernel-core-6.6.0-0.rc2.20230922git27bbf45eae9c.    83/275 
  Verifying        : kernel-devel-6.6.0-0.rc2.20230922git27bbf45eae9c    84/275 
  Verifying        : kernel-headers-6.6.0-0.rc2.git0.1.fc40.x86_64       85/275 
  Verifying        : kernel-modules-6.6.0-0.rc2.20230922git27bbf45eae    86/275 
  Verifying        : kernel-modules-core-6.6.0-0.rc2.20230922git27bbf    87/275 
  Verifying        : kpartx-0.9.6-1.fc40.x86_64                          88/275 
  Verifying        : lasi-1.1.3-11.fc39.x86_64                           89/275 
  Verifying        : lcms2-2.15-2.fc39.x86_64                            90/275 
  Verifying        : less-643-1.fc40.x86_64                              91/275 
  Verifying        : libICE-1.0.10-12.fc40.x86_64                        92/275 
  Verifying        : libSM-1.2.3-14.fc40.x86_64                          93/275 
  Verifying        : libX11-1.8.6-3.fc40.x86_64                          94/275 
  Verifying        : libX11-common-1.8.6-3.fc40.noarch                   95/275 
  Verifying        : libXau-1.0.11-4.fc40.x86_64                         96/275 
  Verifying        : libXext-1.3.5-3.fc39.x86_64                         97/275 
  Verifying        : libXft-2.3.8-4.fc40.x86_64                          98/275 
  Verifying        : libXpm-3.5.15-5.fc40.x86_64                         99/275 
  Verifying        : libXrender-0.9.11-4.fc40.x86_64                    100/275 
  Verifying        : libXt-1.2.1-6.fc40.x86_64                          101/275 
  Verifying        : libaom-3.7.0-1.fc40.x86_64                         102/275 
  Verifying        : libatomic-13.2.1-3.fc40.x86_64                     103/275 
  Verifying        : libavif-0.11.1-11.fc39.x86_64                      104/275 
  Verifying        : libcbor-0.10.2-2.fc39.x86_64                       105/275 
  Verifying        : libdatrie-0.2.13-7.fc39.x86_64                     106/275 
  Verifying        : libdav1d-1.2.1-2.fc39.x86_64                       107/275 
  Verifying        : libedit-3.1-48.20230828cvs.fc40.x86_64             108/275 
  Verifying        : libfido2-1.13.0-3.fc39.x86_64                      109/275 
  Verifying        : libgs-10.01.2-3.fc39.x86_64                        110/275 
  Verifying        : libijs-0.35-19.fc39.x86_64                         111/275 
  Verifying        : libimagequant-4.0.1-5.fc39.x86_64                  112/275 
  Verifying        : libjpeg-turbo-2.1.4-3.fc39.x86_64                  113/275 
  Verifying        : libjxl-1:0.8.2-3.fc40.x86_64                       114/275 
  Verifying        : libkcapi-1.4.0-7.fc39.x86_64                       115/275 
  Verifying        : libkcapi-hmaccalc-1.4.0-7.fc39.x86_64              116/275 
  Verifying        : liblerc-4.0.0-4.fc39.x86_64                        117/275 
  Verifying        : libmpc-1.3.1-3.fc39.x86_64                         118/275 
  Verifying        : libomp-17.0.0~rc4-1.fc40.x86_64                    119/275 
  Verifying        : libomp-devel-17.0.0~rc4-1.fc40.x86_64              120/275 
  Verifying        : libpaper-1:2.1.1-1.fc39.x86_64                     121/275 
  Verifying        : libpkgconf-1.9.5-2.fc39.x86_64                     122/275 
  Verifying        : libpng-2:1.6.40-1.fc40.x86_64                      123/275 
  Verifying        : librsvg2-2.56.92-1.fc40.x86_64                     124/275 
  Verifying        : libserf-1.3.10-2.fc39.x86_64                       125/275 
  Verifying        : libthai-0.1.29-6.fc39.x86_64                       126/275 
  Verifying        : libtiff-4.4.0-8.fc40.x86_64                        127/275 
  Verifying        : libtool-ltdl-2.4.7-8.fc40.x86_64                   128/275 
  Verifying        : libutempter-1.2.1-10.fc39.x86_64                   129/275 
  Verifying        : libvmaf-2.3.0-6.fc39.x86_64                        130/275 
  Verifying        : libwebp-1.3.2-1.fc40.x86_64                        131/275 
  Verifying        : libxcb-1.13.1-12.fc39.x86_64                       132/275 
  Verifying        : libxcrypt-devel-4.4.36-2.fc39.x86_64               133/275 
  Verifying        : libzstd-devel-1.5.5-4.fc39.x86_64                  134/275 
  Verifying        : linux-firmware-20230919-1.fc40.noarch              135/275 
  Verifying        : linux-firmware-whence-20230919-1.fc40.noarch       136/275 
  Verifying        : llvm-libs-17.0.0~rc4-1.fc40.x86_64                 137/275 
  Verifying        : m4-1.4.19-7.fc40.x86_64                            138/275 
  Verifying        : make-1:4.4.1-2.fc39.x86_64                         139/275 
  Verifying        : memstrack-0.2.5-2.fc39.x86_64                      140/275 
  Verifying        : mercurial-6.5.1-1.fc39.x86_64                      141/275 
  Verifying        : mokutil-2:0.6.0-7.fc39.x86_64                      142/275 
  Verifying        : mt7xxx-firmware-20230919-1.fc40.noarch             143/275 
  Verifying        : nano-7.2-4.fc39.x86_64                             144/275 
  Verifying        : nano-default-editor-7.2-4.fc39.noarch              145/275 
  Verifying        : ncurses-6.4-7.20230520.fc40.x86_64                 146/275 
  Verifying        : netpbm-11.02.00-2.fc39.x86_64                      147/275 
  Verifying        : nspr-4.35.0-13.fc40.x86_64                         148/275 
  Verifying        : nss-3.93.0-2.fc40.x86_64                           149/275 
  Verifying        : nss-softokn-3.93.0-2.fc40.x86_64                   150/275 
  Verifying        : nss-softokn-freebl-3.93.0-2.fc40.x86_64            151/275 
  Verifying        : nss-sysinit-3.93.0-2.fc40.x86_64                   152/275 
  Verifying        : nss-util-3.93.0-2.fc40.x86_64                      153/275 
  Verifying        : nvidia-gpu-firmware-20230919-1.fc40.noarch         154/275 
  Verifying        : openjpeg2-2.5.0-4.fc39.x86_64                      155/275 
  Verifying        : openssh-9.3p1-11.fc40.x86_64                       156/275 
  Verifying        : openssh-clients-9.3p1-11.fc40.x86_64               157/275 
  Verifying        : openssh-server-9.3p1-11.fc40.x86_64                158/275 
  Verifying        : openssl-devel-1:3.1.1-4.fc40.x86_64                159/275 
  Verifying        : os-prober-1.81-4.fc39.x86_64                       160/275 
  Verifying        : pango-1.51.0-1.fc40.x86_64                         161/275 
  Verifying        : patch-2.7.6-22.fc39.x86_64                         162/275 
  Verifying        : patchutils-0.4.2-11.fc39.x86_64                    163/275 
  Verifying        : perl-AutoLoader-5.74-500.fc39.noarch               164/275 
  Verifying        : perl-B-1.88-500.fc39.x86_64                        165/275 
  Verifying        : perl-Carp-1.54-500.fc39.noarch                     166/275 
  Verifying        : perl-Class-Struct-0.68-500.fc39.noarch             167/275 
  Verifying        : perl-Data-Dumper-2.188-501.fc39.x86_64             168/275 
  Verifying        : perl-Digest-1.20-500.fc39.noarch                   169/275 
  Verifying        : perl-Digest-MD5-2.58-501.fc40.x86_64               170/275 
  Verifying        : perl-DynaLoader-1.54-500.fc39.x86_64               171/275 
  Verifying        : perl-Encode-4:3.19-500.fc39.x86_64                 172/275 
  Verifying        : perl-Errno-1.37-500.fc39.x86_64                    173/275 
  Verifying        : perl-Error-1:0.17029-13.fc39.noarch                174/275 
  Verifying        : perl-Exporter-5.77-500.fc39.noarch                 175/275 
  Verifying        : perl-Fcntl-1.15-500.fc39.x86_64                    176/275 
  Verifying        : perl-File-Basename-2.86-500.fc39.noarch            177/275 
  Verifying        : perl-File-Find-1.43-500.fc39.noarch                178/275 
  Verifying        : perl-File-Path-2.18-500.fc39.noarch                179/275 
  Verifying        : perl-File-Temp-1:0.231.100-500.fc39.noarch         180/275 
  Verifying        : perl-File-stat-1.13-500.fc39.noarch                181/275 
  Verifying        : perl-FileHandle-2.05-500.fc39.noarch               182/275 
  Verifying        : perl-Getopt-Long-1:2.54-500.fc39.noarch            183/275 
  Verifying        : perl-Getopt-Std-1.13-500.fc39.noarch               184/275 
  Verifying        : perl-Git-2.41.0-2.fc39.noarch                      185/275 
  Verifying        : perl-HTTP-Tiny-0.088-3.fc39.noarch                 186/275 
  Verifying        : perl-IO-1.52-500.fc39.x86_64                       187/275 
  Verifying        : perl-IO-Socket-IP-0.42-1.fc39.noarch               188/275 
  Verifying        : perl-IO-Socket-SSL-2.083-3.fc39.noarch             189/275 
  Verifying        : perl-IPC-Open3-1.22-500.fc39.noarch                190/275 
  Verifying        : perl-MIME-Base64-3.16-500.fc39.x86_64              191/275 
  Verifying        : perl-Mozilla-CA-20230821-1.fc40.noarch             192/275 
  Verifying        : perl-NDBM_File-1.16-500.fc39.x86_64                193/275 
  Verifying        : perl-Net-SSLeay-1.92-10.fc39.x86_64                194/275 
  Verifying        : perl-POSIX-2.13-500.fc39.x86_64                    195/275 
  Verifying        : perl-PathTools-3.89-500.fc39.x86_64                196/275 
  Verifying        : perl-Pod-Escapes-1:1.07-501.fc40.noarch            197/275 
  Verifying        : perl-Pod-Perldoc-3.28.01-501.fc39.noarch           198/275 
  Verifying        : perl-Pod-Simple-1:3.45-4.fc39.noarch               199/275 
  Verifying        : perl-Pod-Usage-4:2.03-500.fc39.noarch              200/275 
  Verifying        : perl-Scalar-List-Utils-5:1.63-500.fc39.x86_64      201/275 
  Verifying        : perl-SelectSaver-1.02-500.fc39.noarch              202/275 
  Verifying        : perl-Socket-4:2.037-3.fc39.x86_64                  203/275 
  Verifying        : perl-Storable-1:3.32-500.fc39.x86_64               204/275 
  Verifying        : perl-Symbol-1.09-500.fc39.noarch                   205/275 
  Verifying        : perl-Term-ANSIColor-5.01-501.fc39.noarch           206/275 
  Verifying        : perl-Term-Cap-1.18-500.fc39.noarch                 207/275 
  Verifying        : perl-TermReadKey-2.38-18.fc39.x86_64               208/275 
  Verifying        : perl-Text-ParseWords-3.31-500.fc39.noarch          209/275 
  Verifying        : perl-Text-Tabs+Wrap-2023.0511-3.fc39.noarch        210/275 
  Verifying        : perl-Time-Local-2:1.350-3.fc39.noarch              211/275 
  Verifying        : perl-URI-5.21-1.fc40.noarch                        212/275 
  Verifying        : perl-base-2.27-500.fc39.noarch                     213/275 
  Verifying        : perl-constant-1.33-501.fc39.noarch                 214/275 
  Verifying        : perl-if-0.61.000-500.fc39.noarch                   215/275 
  Verifying        : perl-interpreter-4:5.38.0-500.fc39.x86_64          216/275 
  Verifying        : perl-lib-0.65-500.fc39.x86_64                      217/275 
  Verifying        : perl-libnet-3.15-501.fc39.noarch                   218/275 
  Verifying        : perl-libs-4:5.38.0-500.fc39.x86_64                 219/275 
  Verifying        : perl-locale-1.10-500.fc39.noarch                   220/275 
  Verifying        : perl-mro-1.28-500.fc39.x86_64                      221/275 
  Verifying        : perl-overload-1.37-500.fc39.noarch                 222/275 
  Verifying        : perl-overloading-0.02-500.fc39.noarch              223/275 
  Verifying        : perl-parent-1:0.241-500.fc39.noarch                224/275 
  Verifying        : perl-podlators-1:5.01-500.fc39.noarch              225/275 
  Verifying        : perl-vars-1.05-500.fc39.noarch                     226/275 
  Verifying        : pigz-2.8-2.fc40.x86_64                             227/275 
  Verifying        : pixman-0.42.2-2.fc39.x86_64                        228/275 
  Verifying        : pkgconf-1.9.5-2.fc39.x86_64                        229/275 
  Verifying        : pkgconf-m4-1.9.5-2.fc39.noarch                     230/275 
  Verifying        : pkgconf-pkg-config-1.9.5-2.fc39.x86_64             231/275 
  Verifying        : poppler-23.08.0-1.fc39.x86_64                      232/275 
  Verifying        : poppler-data-0.4.11-5.fc39.noarch                  233/275 
  Verifying        : poppler-glib-23.08.0-1.fc39.x86_64                 234/275 
  Verifying        : procps-ng-4.0.3-5.fc40.x86_64                      235/275 
  Verifying        : python3-fb-re2-1.0.7-13.fc39.x86_64                236/275 
  Verifying        : python3-zombie-imp-0.0.2-2.fc39.noarch             237/275 
  Verifying        : rav1e-libs-0.6.6-2.fc39.x86_64                     238/275 
  Verifying        : re2-1:20220601-3.fc39.x86_64                       239/275 
  Verifying        : realtek-firmware-20230919-1.fc40.noarch            240/275 
  Verifying        : rsvg-pixbuf-loader-2.56.92-1.fc40.x86_64           241/275 
  Verifying        : shared-mime-info-2.2-4.fc39.x86_64                 242/275 
  Verifying        : subversion-1.14.2-20.fc39.x86_64                   243/275 
  Verifying        : subversion-libs-1.14.2-20.fc39.x86_64              244/275 
  Verifying        : sudo-1.9.14-1.p3.fc39.x86_64                       245/275 
  Verifying        : sudo-python-plugin-1.9.14-1.p3.fc39.x86_64         246/275 
  Verifying        : svt-av1-libs-1.4.1-3.fc39.x86_64                   247/275 
  Verifying        : systemtap-5.0~pre16891249ge891a37e-0.2.fc39.x86_   248/275 
  Verifying        : systemtap-client-5.0~pre16891249ge891a37e-0.2.fc   249/275 
  Verifying        : systemtap-devel-5.0~pre16891249ge891a37e-0.2.fc3   250/275 
  Verifying        : systemtap-runtime-5.0~pre16891249ge891a37e-0.2.f   251/275 
  Verifying        : tbb-2020.3-21.fc40.x86_64                          252/275 
  Verifying        : tpm2-tools-5.5-4.fc39.x86_64                       253/275 
  Verifying        : unzip-6.0-62.fc39.x86_64                           254/275 
  Verifying        : urw-base35-bookman-fonts-20200910-18.fc39.noarch   255/275 
  Verifying        : urw-base35-c059-fonts-20200910-18.fc39.noarch      256/275 
  Verifying        : urw-base35-d050000l-fonts-20200910-18.fc39.noarc   257/275 
  Verifying        : urw-base35-fonts-20200910-18.fc39.noarch           258/275 
  Verifying        : urw-base35-fonts-common-20200910-18.fc39.noarch    259/275 
  Verifying        : urw-base35-gothic-fonts-20200910-18.fc39.noarch    260/275 
  Verifying        : urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39   261/275 
  Verifying        : urw-base35-nimbus-roman-fonts-20200910-18.fc39.n   262/275 
  Verifying        : urw-base35-nimbus-sans-fonts-20200910-18.fc39.no   263/275 
  Verifying        : urw-base35-p052-fonts-20200910-18.fc39.noarch      264/275 
  Verifying        : urw-base35-standard-symbols-ps-fonts-20200910-18   265/275 
  Verifying        : urw-base35-z003-fonts-20200910-18.fc39.noarch      266/275 
  Verifying        : utf8proc-2.7.0-5.fc39.x86_64                       267/275 
  Verifying        : util-linux-2.39.2-1.fc40.x86_64                    268/275 
  Verifying        : which-2.21-40.fc39.x86_64                          269/275 
  Verifying        : xapian-core-libs-1.4.23-1.fc39.x86_64              270/275 
  Verifying        : xml-common-0.6.3-61.fc39.noarch                    271/275 
  Verifying        : xz-5.4.4-1.fc39.x86_64                             272/275 
  Verifying        : xz-devel-5.4.4-1.fc39.x86_64                       273/275 
  Verifying        : zip-3.0-39.fc40.x86_64                             274/275 
  Verifying        : zlib-devel-1.2.13-4.fc39.x86_64                    275/275 

Installed:
  abattis-cantarell-vf-fonts-0.301-10.fc39.noarch                               
  adobe-mappings-cmap-20230622-1.fc39.noarch                                    
  adobe-mappings-cmap-deprecated-20230622-1.fc39.noarch                         
  adobe-mappings-pdf-20190401-5.fc39.noarch                                     
  amd-gpu-firmware-20230919-1.fc40.noarch                                       
  apr-1.7.3-2.fc39.x86_64                                                       
  apr-util-1.6.3-5.fc40.x86_64                                                  
  apr-util-bdb-1.6.3-5.fc40.x86_64                                              
  apr-util-openssl-1.6.3-5.fc40.x86_64                                          
  atheros-firmware-20230919-1.fc40.noarch                                       
  avahi-libs-0.8-24.fc39.x86_64                                                 
  binutils-2.41-5.fc40.x86_64                                                   
  binutils-gold-2.41-5.fc40.x86_64                                              
  bison-3.8.2-6.fc40.x86_64                                                     
  boost-atomic-1.81.0-6.fc39.x86_64                                             
  boost-filesystem-1.81.0-6.fc39.x86_64                                         
  boost-system-1.81.0-6.fc39.x86_64                                             
  boost-thread-1.81.0-6.fc39.x86_64                                             
  brcmfmac-firmware-20230919-1.fc40.noarch                                      
  cairo-1.17.8-5.fc39.x86_64                                                    
  cairo-gobject-1.17.8-5.fc39.x86_64                                            
  clang-libs-17.0.0~rc4-1.fc40.x86_64                                           
  clang-resource-filesystem-17.0.0~rc4-1.fc40.x86_64                            
  compiler-rt-17.0.0~rc4-1.fc40.x86_64                                          
  cpio-2.14-4.fc39.x86_64                                                       
  cpp-13.2.1-3.fc40.x86_64                                                      
  crypto-policies-scripts-20230920-1.git570ea89.fc40.noarch                     
  cups-libs-1:2.4.7-1.fc40.x86_64                                               
  default-fonts-core-sans-4.0-9.fc40.noarch                                     
  diffstat-1.65-3.fc39.x86_64                                                   
  doxygen-2:1.9.8-1.fc40.x86_64                                                 
  dracut-059-13.fc40.x86_64                                                     
  dyninst-12.3.0-3.fc39.x86_64                                                  
  ed-1.19-4.fc39.x86_64                                                         
  efivar-libs-38-8.fc39.x86_64                                                  
  elfutils-debuginfod-client-0.189-6.fc40.x86_64                                
  elfutils-debuginfod-client-devel-0.189-6.fc40.x86_64                          
  elfutils-devel-0.189-6.fc40.x86_64                                            
  elfutils-libelf-devel-0.189-6.fc40.x86_64                                     
  emacs-filesystem-1:29.1-1.fc39.noarch                                         
  file-5.45-1.fc40.x86_64                                                       
  flex-2.6.4-13.fc39.x86_64                                                     
  fontconfig-2.14.2-5.fc40.x86_64                                               
  fonts-filesystem-1:2.0.5-12.fc39.noarch                                       
  freetype-2.13.1-2.fc39.x86_64                                                 
  fribidi-1.0.13-2.fc39.x86_64                                                  
  fuse-libs-2.9.9-17.fc39.x86_64                                                
  gc-8.2.2-4.fc39.x86_64                                                        
  gcc-13.2.1-3.fc40.x86_64                                                      
  gd-2.3.3-12.fc39.x86_64                                                       
  gdk-pixbuf2-2.42.10-5.fc39.x86_64                                             
  gettext-0.22-2.fc39.x86_64                                                    
  gettext-envsubst-0.22-2.fc39.x86_64                                           
  gettext-libs-0.22-2.fc39.x86_64                                               
  gettext-runtime-0.22-2.fc39.x86_64                                            
  git-2.41.0-2.fc39.x86_64                                                      
  git-core-2.41.0-2.fc39.x86_64                                                 
  git-core-doc-2.41.0-2.fc39.noarch                                             
  glibc-devel-2.38.9000-9.fc40.x86_64                                           
  glibc-headers-x86-2.38.9000-9.fc40.noarch                                     
  google-droid-sans-fonts-20200215-17.fc40.noarch                               
  google-noto-fonts-common-20230801-3.fc40.noarch                               
  google-noto-sans-vf-fonts-20230801-3.fc40.noarch                              
  graphite2-1.3.14-12.fc39.x86_64                                               
  graphviz-8.1.0-6.fc40.x86_64                                                  
  groff-base-1.23.0-2.fc39.x86_64                                               
  grub2-common-1:2.06-100.fc40.noarch                                           
  grub2-pc-1:2.06-100.fc40.x86_64                                               
  grub2-pc-modules-1:2.06-100.fc40.noarch                                       
  grub2-tools-1:2.06-100.fc40.x86_64                                            
  grub2-tools-minimal-1:2.06-100.fc40.x86_64                                    
  grubby-8.40-72.fc40.x86_64                                                    
  gts-0.7.6-46.20121130.fc39.x86_64                                             
  guile22-2.2.7-9.fc39.x86_64                                                   
  harfbuzz-8.2.1-1.fc40.x86_64                                                  
  highway-1.0.7-1.fc40.x86_64                                                   
  intel-gpu-firmware-20230919-1.fc40.noarch                                     
  jansson-2.13.1-7.fc39.x86_64                                                  
  jbig2dec-libs-0.19-10.fc39.x86_64                                             
  jbigkit-libs-2.1-26.fc39.x86_64                                               
  jxl-pixbuf-loader-1:0.8.2-3.fc40.x86_64                                       
  kernel-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64                     
  kernel-core-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64                
  kernel-devel-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64               
  kernel-headers-6.6.0-0.rc2.git0.1.fc40.x86_64                                 
  kernel-modules-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64             
  kernel-modules-core-6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64        
  kpartx-0.9.6-1.fc40.x86_64                                                    
  lasi-1.1.3-11.fc39.x86_64                                                     
  lcms2-2.15-2.fc39.x86_64                                                      
  less-643-1.fc40.x86_64                                                        
  libICE-1.0.10-12.fc40.x86_64                                                  
  libSM-1.2.3-14.fc40.x86_64                                                    
  libX11-1.8.6-3.fc40.x86_64                                                    
  libX11-common-1.8.6-3.fc40.noarch                                             
  libXau-1.0.11-4.fc40.x86_64                                                   
  libXext-1.3.5-3.fc39.x86_64                                                   
  libXft-2.3.8-4.fc40.x86_64                                                    
  libXpm-3.5.15-5.fc40.x86_64                                                   
  libXrender-0.9.11-4.fc40.x86_64                                               
  libXt-1.2.1-6.fc40.x86_64                                                     
  libaom-3.7.0-1.fc40.x86_64                                                    
  libatomic-13.2.1-3.fc40.x86_64                                                
  libavif-0.11.1-11.fc39.x86_64                                                 
  libcbor-0.10.2-2.fc39.x86_64                                                  
  libdatrie-0.2.13-7.fc39.x86_64                                                
  libdav1d-1.2.1-2.fc39.x86_64                                                  
  libedit-3.1-48.20230828cvs.fc40.x86_64                                        
  libfido2-1.13.0-3.fc39.x86_64                                                 
  libgs-10.01.2-3.fc39.x86_64                                                   
  libijs-0.35-19.fc39.x86_64                                                    
  libimagequant-4.0.1-5.fc39.x86_64                                             
  libjpeg-turbo-2.1.4-3.fc39.x86_64                                             
  libjxl-1:0.8.2-3.fc40.x86_64                                                  
  libkcapi-1.4.0-7.fc39.x86_64                                                  
  libkcapi-hmaccalc-1.4.0-7.fc39.x86_64                                         
  liblerc-4.0.0-4.fc39.x86_64                                                   
  libmpc-1.3.1-3.fc39.x86_64                                                    
  libomp-17.0.0~rc4-1.fc40.x86_64                                               
  libomp-devel-17.0.0~rc4-1.fc40.x86_64                                         
  libpaper-1:2.1.1-1.fc39.x86_64                                                
  libpkgconf-1.9.5-2.fc39.x86_64                                                
  libpng-2:1.6.40-1.fc40.x86_64                                                 
  librsvg2-2.56.92-1.fc40.x86_64                                                
  libserf-1.3.10-2.fc39.x86_64                                                  
  libthai-0.1.29-6.fc39.x86_64                                                  
  libtiff-4.4.0-8.fc40.x86_64                                                   
  libtool-ltdl-2.4.7-8.fc40.x86_64                                              
  libutempter-1.2.1-10.fc39.x86_64                                              
  libvmaf-2.3.0-6.fc39.x86_64                                                   
  libwebp-1.3.2-1.fc40.x86_64                                                   
  libxcb-1.13.1-12.fc39.x86_64                                                  
  libxcrypt-devel-4.4.36-2.fc39.x86_64                                          
  libzstd-devel-1.5.5-4.fc39.x86_64                                             
  linux-firmware-20230919-1.fc40.noarch                                         
  linux-firmware-whence-20230919-1.fc40.noarch                                  
  llvm-libs-17.0.0~rc4-1.fc40.x86_64                                            
  m4-1.4.19-7.fc40.x86_64                                                       
  make-1:4.4.1-2.fc39.x86_64                                                    
  memstrack-0.2.5-2.fc39.x86_64                                                 
  mercurial-6.5.1-1.fc39.x86_64                                                 
  mokutil-2:0.6.0-7.fc39.x86_64                                                 
  mt7xxx-firmware-20230919-1.fc40.noarch                                        
  nano-7.2-4.fc39.x86_64                                                        
  nano-default-editor-7.2-4.fc39.noarch                                         
  ncurses-6.4-7.20230520.fc40.x86_64                                            
  netpbm-11.02.00-2.fc39.x86_64                                                 
  nspr-4.35.0-13.fc40.x86_64                                                    
  nss-3.93.0-2.fc40.x86_64                                                      
  nss-softokn-3.93.0-2.fc40.x86_64                                              
  nss-softokn-freebl-3.93.0-2.fc40.x86_64                                       
  nss-sysinit-3.93.0-2.fc40.x86_64                                              
  nss-util-3.93.0-2.fc40.x86_64                                                 
  nvidia-gpu-firmware-20230919-1.fc40.noarch                                    
  openjpeg2-2.5.0-4.fc39.x86_64                                                 
  openssh-9.3p1-11.fc40.x86_64                                                  
  openssh-clients-9.3p1-11.fc40.x86_64                                          
  openssh-server-9.3p1-11.fc40.x86_64                                           
  openssl-devel-1:3.1.1-4.fc40.x86_64                                           
  os-prober-1.81-4.fc39.x86_64                                                  
  pango-1.51.0-1.fc40.x86_64                                                    
  patch-2.7.6-22.fc39.x86_64                                                    
  patchutils-0.4.2-11.fc39.x86_64                                               
  perl-AutoLoader-5.74-500.fc39.noarch                                          
  perl-B-1.88-500.fc39.x86_64                                                   
  perl-Carp-1.54-500.fc39.noarch                                                
  perl-Class-Struct-0.68-500.fc39.noarch                                        
  perl-Data-Dumper-2.188-501.fc39.x86_64                                        
  perl-Digest-1.20-500.fc39.noarch                                              
  perl-Digest-MD5-2.58-501.fc40.x86_64                                          
  perl-DynaLoader-1.54-500.fc39.x86_64                                          
  perl-Encode-4:3.19-500.fc39.x86_64                                            
  perl-Errno-1.37-500.fc39.x86_64                                               
  perl-Error-1:0.17029-13.fc39.noarch                                           
  perl-Exporter-5.77-500.fc39.noarch                                            
  perl-Fcntl-1.15-500.fc39.x86_64                                               
  perl-File-Basename-2.86-500.fc39.noarch                                       
  perl-File-Find-1.43-500.fc39.noarch                                           
  perl-File-Path-2.18-500.fc39.noarch                                           
  perl-File-Temp-1:0.231.100-500.fc39.noarch                                    
  perl-File-stat-1.13-500.fc39.noarch                                           
  perl-FileHandle-2.05-500.fc39.noarch                                          
  perl-Getopt-Long-1:2.54-500.fc39.noarch                                       
  perl-Getopt-Std-1.13-500.fc39.noarch                                          
  perl-Git-2.41.0-2.fc39.noarch                                                 
  perl-HTTP-Tiny-0.088-3.fc39.noarch                                            
  perl-IO-1.52-500.fc39.x86_64                                                  
  perl-IO-Socket-IP-0.42-1.fc39.noarch                                          
  perl-IO-Socket-SSL-2.083-3.fc39.noarch                                        
  perl-IPC-Open3-1.22-500.fc39.noarch                                           
  perl-MIME-Base64-3.16-500.fc39.x86_64                                         
  perl-Mozilla-CA-20230821-1.fc40.noarch                                        
  perl-NDBM_File-1.16-500.fc39.x86_64                                           
  perl-Net-SSLeay-1.92-10.fc39.x86_64                                           
  perl-POSIX-2.13-500.fc39.x86_64                                               
  perl-PathTools-3.89-500.fc39.x86_64                                           
  perl-Pod-Escapes-1:1.07-501.fc40.noarch                                       
  perl-Pod-Perldoc-3.28.01-501.fc39.noarch                                      
  perl-Pod-Simple-1:3.45-4.fc39.noarch                                          
  perl-Pod-Usage-4:2.03-500.fc39.noarch                                         
  perl-Scalar-List-Utils-5:1.63-500.fc39.x86_64                                 
  perl-SelectSaver-1.02-500.fc39.noarch                                         
  perl-Socket-4:2.037-3.fc39.x86_64                                             
  perl-Storable-1:3.32-500.fc39.x86_64                                          
  perl-Symbol-1.09-500.fc39.noarch                                              
  perl-Term-ANSIColor-5.01-501.fc39.noarch                                      
  perl-Term-Cap-1.18-500.fc39.noarch                                            
  perl-TermReadKey-2.38-18.fc39.x86_64                                          
  perl-Text-ParseWords-3.31-500.fc39.noarch                                     
  perl-Text-Tabs+Wrap-2023.0511-3.fc39.noarch                                   
  perl-Time-Local-2:1.350-3.fc39.noarch                                         
  perl-URI-5.21-1.fc40.noarch                                                   
  perl-base-2.27-500.fc39.noarch                                                
  perl-constant-1.33-501.fc39.noarch                                            
  perl-if-0.61.000-500.fc39.noarch                                              
  perl-interpreter-4:5.38.0-500.fc39.x86_64                                     
  perl-lib-0.65-500.fc39.x86_64                                                 
  perl-libnet-3.15-501.fc39.noarch                                              
  perl-libs-4:5.38.0-500.fc39.x86_64                                            
  perl-locale-1.10-500.fc39.noarch                                              
  perl-mro-1.28-500.fc39.x86_64                                                 
  perl-overload-1.37-500.fc39.noarch                                            
  perl-overloading-0.02-500.fc39.noarch                                         
  perl-parent-1:0.241-500.fc39.noarch                                           
  perl-podlators-1:5.01-500.fc39.noarch                                         
  perl-vars-1.05-500.fc39.noarch                                                
  pigz-2.8-2.fc40.x86_64                                                        
  pixman-0.42.2-2.fc39.x86_64                                                   
  pkgconf-1.9.5-2.fc39.x86_64                                                   
  pkgconf-m4-1.9.5-2.fc39.noarch                                                
  pkgconf-pkg-config-1.9.5-2.fc39.x86_64                                        
  poppler-23.08.0-1.fc39.x86_64                                                 
  poppler-data-0.4.11-5.fc39.noarch                                             
  poppler-glib-23.08.0-1.fc39.x86_64                                            
  procps-ng-4.0.3-5.fc40.x86_64                                                 
  python3-fb-re2-1.0.7-13.fc39.x86_64                                           
  python3-zombie-imp-0.0.2-2.fc39.noarch                                        
  rav1e-libs-0.6.6-2.fc39.x86_64                                                
  re2-1:20220601-3.fc39.x86_64                                                  
  realtek-firmware-20230919-1.fc40.noarch                                       
  rsvg-pixbuf-loader-2.56.92-1.fc40.x86_64                                      
  shared-mime-info-2.2-4.fc39.x86_64                                            
  subversion-1.14.2-20.fc39.x86_64                                              
  subversion-libs-1.14.2-20.fc39.x86_64                                         
  sudo-1.9.14-1.p3.fc39.x86_64                                                  
  sudo-python-plugin-1.9.14-1.p3.fc39.x86_64                                    
  svt-av1-libs-1.4.1-3.fc39.x86_64                                              
  systemtap-5.0~pre16891249ge891a37e-0.2.fc39.x86_64                            
  systemtap-client-5.0~pre16891249ge891a37e-0.2.fc39.x86_64                     
  systemtap-devel-5.0~pre16891249ge891a37e-0.2.fc39.x86_64                      
  systemtap-runtime-5.0~pre16891249ge891a37e-0.2.fc39.x86_64                    
  tbb-2020.3-21.fc40.x86_64                                                     
  tpm2-tools-5.5-4.fc39.x86_64                                                  
  unzip-6.0-62.fc39.x86_64                                                      
  urw-base35-bookman-fonts-20200910-18.fc39.noarch                              
  urw-base35-c059-fonts-20200910-18.fc39.noarch                                 
  urw-base35-d050000l-fonts-20200910-18.fc39.noarch                             
  urw-base35-fonts-20200910-18.fc39.noarch                                      
  urw-base35-fonts-common-20200910-18.fc39.noarch                               
  urw-base35-gothic-fonts-20200910-18.fc39.noarch                               
  urw-base35-nimbus-mono-ps-fonts-20200910-18.fc39.noarch                       
  urw-base35-nimbus-roman-fonts-20200910-18.fc39.noarch                         
  urw-base35-nimbus-sans-fonts-20200910-18.fc39.noarch                          
  urw-base35-p052-fonts-20200910-18.fc39.noarch                                 
  urw-base35-standard-symbols-ps-fonts-20200910-18.fc39.noarch                  
  urw-base35-z003-fonts-20200910-18.fc39.noarch                                 
  utf8proc-2.7.0-5.fc39.x86_64                                                  
  util-linux-2.39.2-1.fc40.x86_64                                               
  which-2.21-40.fc39.x86_64                                                     
  xapian-core-libs-1.4.23-1.fc39.x86_64                                         
  xml-common-0.6.3-61.fc39.noarch                                               
  xz-5.4.4-1.fc39.x86_64                                                        
  xz-devel-5.4.4-1.fc39.x86_64                                                  
  zip-3.0-39.fc40.x86_64                                                        
  zlib-devel-1.2.13-4.fc39.x86_64                                               

Complete!
+ run_root dnf clean all
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'dnf clean all'
28 files removed
+ cat
++ ls /mnt/boot
++ cut -d- -f2-
++ grep 'vmlinuz.*.x86_64'
+ kernel_version=6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64
+ run_root dracut --force --kver 6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'dracut --force --kver 6.6.0-0.rc2.20230922git27bbf45eae9c.23.fc40.x86_64'
dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y
+ run_root grub2-install --target=i386-pc /dev/nbd0
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'grub2-install --target=i386-pc /dev/nbd0'
Installing for i386-pc platform.
Installation finished. No error reported.
+ run_root grub2-mkconfig -o /boot/grub2/grub.cfg
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'grub2-mkconfig -o /boot/grub2/grub.cfg'
Generating grub configuration file ...
Found Fedora Linux 38 (Thirty Eight) on /dev/vda3
Adding boot menu entry for UEFI Firmware Settings ...
done
+ run_root ln -sf /usr/share/zoneinfo/UTC /etc/localtime
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'ln -sf /usr/share/zoneinfo/UTC /etc/localtime'
+ run_root systemctl enable systemd-timesyncd.service
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'systemctl enable systemd-timesyncd.service'
+ run_root groupadd sudo
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'groupadd sudo'
+ run_root useradd -mG sudo build
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'useradd -mG sudo build'
+ run_root passwd -d build
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'passwd -d build'
passwd: Note: deleting a password also unlocks the password.
Removing password for user build.
passwd: Success
+ echo '%sudo ALL=(ALL) NOPASSWD: ALL'
+ echo 'PermitEmptyPasswords yes'
+ echo ssh
+ run_root systemctl enable sshd
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'systemctl enable sshd'
++ blkid --match-tag UUID --output value /dev/nbd0p1
+ boot_uuid=750ff973-06a0-4677-9219-8c5f12c9d77a
++ blkid --match-tag UUID --output value /dev/nbd0p2
+ swap_uuid=b99afc1b-5647-4fc6-a023-73e03ba72599
++ blkid --match-tag UUID --output value /dev/nbd0p3
+ root_uuid=24cb0ec3-8327-403d-890f-3698196ddb02
+ cat
+ cat
+ chown build:build /mnt/home/build/.gitconfig
+ sync
+ cleanup
+ umount /mnt/dev/pts
+ umount /mnt/dev/shm
+ umount /mnt/dev
+ umount /mnt/proc
+ umount /mnt/run
+ umount /mnt/sys
+ umount /mnt/boot
+ umount /mnt
+ qemu-nbd --disconnect /dev/nbd0
/dev/nbd0 disconnected
sanity-check
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
+ cd builds.sr.ht
+ sudo chown build:build /dev/kvm
+ MEMORY=1024
+ ./images/control fedora/rawhide sanity-check
Booting...
Waiting for VM to come up...
ssh: connect to host localhost port 8022: Connection refused

Attempt 1...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Testing sudo...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

.
..
.bash_logout
.bash_profile
.bashrc
.gitconfig
Testing networking...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  1256  100  1256    0     0  23227      0 --:--:-- --:--:-- --:--:-- 23698
<!doctype html>
<html>
<head>
    <title>Example Domain</title>

    <meta charset="utf-8" />
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <style type="text/css">
    body {
        background-color: #f0f0f2;
        margin: 0;
        padding: 0;
        font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
        
    }
    div {
        width: 600px;
        margin: 5em auto;
        padding: 2em;
        background-color: #fdfdff;
        border-radius: 0.5em;
        box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
    }
    a:link, a:visited {
        color: #38488f;
        text-decoration: none;
    }
    @media (max-width: 700px) {
        div {
            margin: 0 auto;
            width: auto;
        }
    }
    </style>    
</head>

<body>
<div>
    <h1>Example Domain</h1>
    <p>This domain is for use in illustrative examples in documents. You may use this
    domain in literature without prior coordination or asking for permission.</p>
    <p><a href="https://www.iana.org/domains/example">More information...</a></p>
</div>
</body>
</html>
Testing dnf...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Fedora rawhide openh264 (From Cisco) - x86_64   464  B/s | 257  B     00:00    
Fedora - Rawhide - Developmental packages for t 8.9 MB/s |  73 MB     00:08    
Dependencies resolved.
Nothing to do.
Complete!
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Last metadata expiration check: 0:00:32 ago on Mon Sep 25 22:38:00 2023.
Dependencies resolved.
================================================================================
 Package         Architecture    Version                 Repository        Size
================================================================================
Installing:
 htop            x86_64          3.2.2-3.fc39            rawhide          186 k
Installing dependencies:
 libnl3          x86_64          3.8.0-1.fc40            rawhide          348 k

Transaction Summary
================================================================================
Install  2 Packages

Total download size: 533 k
Installed size: 1.5 M
Downloading Packages:
(1/2): htop-3.2.2-3.fc39.x86_64.rpm             509 kB/s | 186 kB     00:00    
(2/2): libnl3-3.8.0-1.fc40.x86_64.rpm           761 kB/s | 348 kB     00:00    
--------------------------------------------------------------------------------
Total                                           652 kB/s | 533 kB     00:00     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : libnl3-3.8.0-1.fc40.x86_64                             1/2 
  Installing       : htop-3.2.2-3.fc39.x86_64                               2/2 
  Running scriptlet: htop-3.2.2-3.fc39.x86_64                               2/2 
  Verifying        : htop-3.2.2-3.fc39.x86_64                               1/2 
  Verifying        : libnl3-3.8.0-1.fc40.x86_64                             2/2 

Installed:
  htop-3.2.2-3.fc39.x86_64              libnl3-3.8.0-1.fc40.x86_64             

Complete!
Testing git...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

git version 2.41.0
Testing mercurial...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Mercurial Distributed SCM (version 6.5.1)
(see https://mercurial-scm.org for more information)

Copyright (C) 2005-2023 Olivia Mackall and others
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Everything works!
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Connection to localhost closed by remote host.

kex_exchange_identification: read: Connection reset by peer

Connection reset by 127.0.0.1 port 8022

./images/control: line 206: kill: (34702) - No such process
deploy
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
+ cd builds.sr.ht/images/fedora/rawhide
+ echo StrictHostKeyChecking=no
+ chmod 600 /home/build/.ssh/config
+ for server in "${slaves[@]}"
+ ssh deploy@cirno2.sr.ht mkdir -p /var/lib/images/fedora/rawhide/x86_64
Warning: Permanently added 'cirno2.sr.ht' (ED25519) to the list of known hosts.

+ rsync -rzP x86_64/root.img.qcow2 deploy@cirno2.sr.ht:/var/lib/images/fedora/rawhide/x86_64/new_root.img.qcow2
sending incremental file list
root.img.qcow2

         32,768   0%    0.00kB/s    0:00:00  
    207,355,904   6%  196.54MB/s    0:00:15  
    309,526,528   9%  146.63MB/s    0:00:20  
    536,543,232  15%  169.87MB/s    0:00:16  
    584,581,120  17%  138.95MB/s    0:00:19  
    644,218,880  19%  103.95MB/s    0:00:25  
    702,676,992  20%   93.73MB/s    0:00:27  
    755,630,080  22%   52.21MB/s    0:00:48  
    812,122,112  24%   54.21MB/s    0:00:46  
    869,400,576  25%   53.67MB/s    0:00:45  
    939,655,168  27%   56.49MB/s    0:00:42  
  1,002,307,584  29%   58.81MB/s    0:00:39  
  1,087,766,528  32%   65.72MB/s    0:00:33  
  1,186,463,744  35%   75.56MB/s    0:00:28  
  1,254,752,256  37%   75.07MB/s    0:00:27  
  1,323,696,128  39%   76.55MB/s    0:00:26  
  1,396,867,072  41%   73.66MB/s    0:00:26  
  1,474,985,984  43%   68.81MB/s    0:00:26  
  1,547,730,944  45%   69.89MB/s    0:00:25  
  1,613,004,800  47%   69.03MB/s    0:00:24  
  1,697,939,456  50%   71.76MB/s    0:00:22  
  1,790,836,736  53%   75.29MB/s    0:00:20  
  1,874,853,888  55%   77.97MB/s    0:00:18  
  1,964,376,064  58%   83.75MB/s    0:00:16  
  2,037,907,456  60%   81.07MB/s    0:00:16  
  2,112,618,496  62%   76.74MB/s    0:00:16  
  2,184,609,792  64%   73.89MB/s    0:00:15  
  2,262,925,312  67%   71.22MB/s    0:00:15  
  2,337,669,120  69%   71.52MB/s    0:00:14  
  2,402,549,760  71%   69.18MB/s    0:00:13  
  2,484,731,904  73%   71.59MB/s    0:00:12  
  2,562,883,584  75%   71.55MB/s    0:00:11  
  2,635,202,560  78%   70.97MB/s    0:00:10  
  2,708,471,808  80%   72.96MB/s    0:00:08  
  2,765,094,912  81%   66.86MB/s    0:00:08  
  2,831,548,416  83%   64.05MB/s    0:00:08  
  2,926,673,920  86%   69.49MB/s    0:00:06  
  2,988,048,384  88%   66.69MB/s    0:00:05  
  3,057,254,400  90%   69.67MB/s    0:00:04  
  3,134,062,592  92%   72.16MB/s    0:00:03  
  3,213,099,008  95%   68.32MB/s    0:00:02  
  3,293,184,000  97%   72.79MB/s    0:00:01  
  3,374,317,568 100%   76.63MB/s    0:00:41 (xfr#1, to-chk=0/1)
+ ssh deploy@cirno2.sr.ht mv /var/lib/images/fedora/rawhide/x86_64/new_root.img.qcow2 /var/lib/images/fedora/rawhide/x86_64/root.img.qcow2
+ for server in "${slaves[@]}"
+ ssh deploy@patchouli2.sr.ht mkdir -p /var/lib/images/fedora/rawhide/x86_64
Warning: Permanently added 'patchouli2.sr.ht' (ED25519) to the list of known hosts.

+ rsync -rzP x86_64/root.img.qcow2 deploy@patchouli2.sr.ht:/var/lib/images/fedora/rawhide/x86_64/new_root.img.qcow2
sending incremental file list
root.img.qcow2

         32,768   0%    0.00kB/s    0:00:00  
    111,411,200   3%  106.22MB/s    0:00:29  
    207,093,760   6%   97.18MB/s    0:00:31  
    215,744,512   6%   67.80MB/s    0:00:45  
    224,002,048   6%   52.69MB/s    0:00:58  
    230,162,432   6%   27.74MB/s    0:01:50  
    236,322,816   7%    6.88MB/s    0:07:25  
    301,465,600   8%   20.07MB/s    0:02:29  
    307,494,912   9%   19.60MB/s    0:02:32  
    313,262,080   9%   19.60MB/s    0:02:32  
    319,029,248   9%   19.51MB/s    0:02:32  
    324,665,344   9%    5.49MB/s    0:09:02  
    330,039,296   9%    5.34MB/s    0:09:16  
    335,675,392   9%    5.32MB/s    0:09:17  
    360,579,072  10%    9.86MB/s    0:04:58  
    551,288,832  16%   53.90MB/s    0:00:51  
    563,609,600  16%   55.56MB/s    0:00:49  
    572,915,712  16%   56.31MB/s    0:00:48  
    582,483,968  17%   52.60MB/s    0:00:51  
    589,824,000  17%    9.11MB/s    0:04:58  
    597,032,960  17%    7.90MB/s    0:05:43  
    603,193,344  17%    7.13MB/s    0:06:19  
    608,862,208  18%    6.22MB/s    0:07:13  
    612,368,384  18%    5.34MB/s    0:08:25  
    615,383,040  18%    4.33MB/s    0:10:21  
    618,790,912  18%    3.70MB/s    0:12:07  
    624,295,936  18%    3.63MB/s    0:12:20  
    630,194,176  18%    4.18MB/s    0:10:41  
    635,437,056  18%    4.70MB/s    0:09:29  
    640,286,720  18%    5.04MB/s    0:08:49  
    645,038,080  19%    4.90MB/s    0:09:03  
    650,772,480  19%    4.87MB/s    0:09:05  
    656,670,720  19%    5.01MB/s    0:08:49  
    664,797,184  19%    5.78MB/s    0:07:37  
    671,711,232  19%    6.29MB/s    0:06:59  
    678,035,456  20%    6.43MB/s    0:06:49  
    684,457,984  20%    6.58MB/s    0:06:38  
    689,963,008  20%    5.95MB/s    0:07:20  
    695,468,032  20%    5.61MB/s    0:07:46  
    708,575,232  20%    7.18MB/s    0:06:02  
    722,731,008  21%    8.98MB/s    0:04:48  
    736,362,496  21%   10.93MB/s    0:03:55  
    749,076,480  22%   12.50MB/s    0:03:25  
    756,285,440  22%   11.18MB/s    0:03:48  
    770,048,000  22%   11.14MB/s    0:03:48  
    779,091,968  23%   10.01MB/s    0:04:13  
    786,038,784  23%    8.75MB/s    0:04:48  
    790,298,624  23%    8.07MB/s    0:05:12  
    801,636,352  23%    7.48MB/s    0:05:35  
    808,976,384  23%    7.11MB/s    0:05:52  
    816,971,776  24%    7.35MB/s    0:05:39  
    824,442,880  24%    8.07MB/s    0:05:08  
    832,045,056  24%    7.15MB/s    0:05:47  
    838,860,800  24%    7.02MB/s    0:05:52  
    849,739,776  25%    7.65MB/s    0:05:22  
    863,633,408  25%    9.20MB/s    0:04:26  
    873,201,664  25%    9.71MB/s    0:04:11  
    881,328,128  26%    9.96MB/s    0:04:04  
    891,551,744  26%    9.89MB/s    0:04:05  
    902,037,504  26%    9.08MB/s    0:04:25  
    907,804,672  26%    8.17MB/s    0:04:54  
    915,668,992  27%    8.13MB/s    0:04:55  
    932,184,064  27%    9.59MB/s    0:04:08  
    939,655,168  27%    8.88MB/s    0:04:27  
    947,257,344  28%    9.29MB/s    0:04:15  
    953,188,352  28%    8.88MB/s    0:04:26  
    969,408,512  28%    8.80MB/s    0:04:26  
    986,087,424  29%   10.98MB/s    0:03:32  
    996,278,272  29%   11.64MB/s    0:03:19  
  1,001,521,152  29%   11.45MB/s    0:03:22  
  1,007,550,464  29%    9.07MB/s    0:04:14  
  1,025,900,544  30%    9.42MB/s    0:04:03  
  1,041,498,112  30%   10.64MB/s    0:03:34  
  1,061,421,056  31%   14.11MB/s    0:02:40  
  1,081,475,072  32%   17.38MB/s    0:02:08  
  1,095,761,920  32%   16.43MB/s    0:02:15  
  1,114,636,288  33%   17.31MB/s    0:02:07  
  1,130,627,072  33%   15.24MB/s    0:02:23  
  1,168,769,024  34%   19.28MB/s    0:01:51  
  1,184,366,592  35%   19.63MB/s    0:01:48  
  1,190,920,192  35%   16.91MB/s    0:02:06  
  1,196,556,288  35%   15.66MB/s    0:02:15  
  1,202,192,384  35%    7.94MB/s    0:04:27  
  1,207,828,480  35%    5.56MB/s    0:06:20  
  1,213,595,648  35%    5.38MB/s    0:06:32  
  1,219,231,744  36%    5.36MB/s    0:06:32  
  1,224,867,840  36%    5.37MB/s    0:06:31  
  1,230,503,936  36%    5.37MB/s    0:06:29  
  1,241,382,912  36%    6.56MB/s    0:05:17  
  1,248,329,728  36%    6.77MB/s    0:05:06  
  1,251,999,744  37%    6.27MB/s    0:05:30  
  1,255,964,672  37%    5.89MB/s    0:05:50  
  1,267,826,688  37%    6.14MB/s    0:05:35  
  1,280,049,152  37%    7.47MB/s    0:04:33  
  1,288,830,976  38%    8.73MB/s    0:03:53  
  1,298,530,304  38%   10.08MB/s    0:03:21  
  1,307,574,272  38%    9.41MB/s    0:03:34  
  1,311,768,576  38%    7.30MB/s    0:04:35  
  1,325,268,992  39%    8.39MB/s    0:03:58  
  1,332,215,808  39%    7.72MB/s    0:04:18  
  1,338,638,336  39%    7.11MB/s    0:04:39  
  1,351,090,176  40%    9.31MB/s    0:03:32  
  1,358,168,064  40%    7.69MB/s    0:04:16  
  1,364,983,808  40%    7.68MB/s    0:04:15  
  1,371,013,120  40%    7.61MB/s    0:04:17  
  1,376,649,216  40%    6.00MB/s    0:05:25  
  1,382,678,528  40%    5.80MB/s    0:05:35  
  1,387,397,120  41%    5.00MB/s    0:06:28  
  1,394,606,080  41%    5.26MB/s    0:06:07  
  1,400,635,392  41%    5.35MB/s    0:06:00  
  1,406,402,560  41%    5.30MB/s    0:06:02  
  1,412,268,032  41%    5.91MB/s    0:05:24  
  1,417,936,896  42%    5.54MB/s    0:05:44  
  1,423,441,920  42%    5.38MB/s    0:05:54  
  1,428,029,440  42%    5.06MB/s    0:06:15  
  1,433,403,392  42%    4.94MB/s    0:06:23  
  1,439,301,632  42%    4.98MB/s    0:06:19  
  1,444,806,656  42%    5.01MB/s    0:06:16  
  1,450,737,664  42%    5.38MB/s    0:05:49  
  1,456,603,136  43%    5.50MB/s    0:05:40  
  1,462,763,520  43%    5.57MB/s    0:05:35  
  1,469,054,976  43%    5.76MB/s    0:05:23  
  1,472,593,920  43%    5.15MB/s    0:06:00  
  1,475,739,648  43%    4.50MB/s    0:06:51  
  1,479,311,360  43%    3.90MB/s    0:07:53  
  1,484,783,616  44%    3.71MB/s    0:08:17  
  1,490,419,712  44%    4.24MB/s    0:07:13  
  1,495,924,736  44%    4.81MB/s    0:06:21  
  1,499,856,896  44%    4.77MB/s    0:06:23  
  1,507,196,928  44%    5.17MB/s    0:05:52  
  1,513,095,168  44%    5.20MB/s    0:05:49  
  1,518,731,264  45%    5.22MB/s    0:05:46  
  1,524,760,576  45%    5.86MB/s    0:05:08  
  1,531,445,248  45%    5.46MB/s    0:05:29  
  1,543,503,872  45%    6.88MB/s    0:04:19  
  1,552,547,840  46%    7.66MB/s    0:03:52  
  1,562,509,312  46%    8.53MB/s    0:03:27  
  1,569,193,984  46%    8.84MB/s    0:03:19  
  1,575,616,512  46%    7.50MB/s    0:03:54  
  1,582,563,328  46%    7.02MB/s    0:04:09  
  1,588,199,424  47%    5.97MB/s    0:04:52  
  1,593,835,520  47%    5.81MB/s    0:04:59  
  1,601,175,552  47%    5.97MB/s    0:04:50  
  1,606,942,720  47%    5.68MB/s    0:05:03  
  1,612,447,744  47%    5.69MB/s    0:05:02  
  1,618,083,840  47%    5.67MB/s    0:05:02  
  1,625,980,928  48%    5.87MB/s    0:04:51  
  1,635,647,488  48%    6.80MB/s    0:04:09  
  1,641,938,944  48%    6.95MB/s    0:04:03  
  1,647,706,112  48%    6.98MB/s    0:04:01  
  1,653,997,568  49%    6.56MB/s    0:04:16  
  1,659,568,128  49%    5.60MB/s    0:04:58  
  1,665,531,904  49%    5.54MB/s    0:05:01  
  1,672,478,720  49%    5.84MB/s    0:04:44  
  1,678,639,104  49%    5.77MB/s    0:04:46  
  1,681,391,616  49%    5.09MB/s    0:05:25  
  1,684,275,200  49%    4.37MB/s    0:06:17  
  1,688,993,792  50%    3.86MB/s    0:07:06  
  1,696,858,112  50%    4.30MB/s    0:06:21  
  1,703,411,712  50%    5.22MB/s    0:05:12  
  1,708,916,736  50%    5.85MB/s    0:04:37  
  1,714,028,544  50%    5.93MB/s    0:04:33  
  1,719,140,352  50%    5.29MB/s    0:05:05  
  1,724,252,160  51%    4.92MB/s    0:05:27  
  1,729,888,256  51%    4.94MB/s    0:05:25  
  1,735,917,568  51%    5.16MB/s    0:05:09  
  1,741,422,592  51%    5.24MB/s    0:05:04  
  1,746,796,544  51%    5.31MB/s    0:04:59  
  1,751,646,208  51%    5.13MB/s    0:05:08  
  1,757,282,304  52%    5.03MB/s    0:05:13  
  1,762,394,112  52%    4.91MB/s    0:05:20  
  1,767,636,992  52%    4.88MB/s    0:05:21  
  1,773,535,232  52%    5.05MB/s    0:05:09  
  1,779,171,328  52%    5.04MB/s    0:05:08  
  1,784,676,352  52%    5.12MB/s    0:05:03  
  1,789,919,232  53%    5.11MB/s    0:05:02  
  1,795,457,024  53%    5.11MB/s    0:05:02  
  1,800,667,136  53%    5.02MB/s    0:05:06  
  1,806,434,304  53%    5.13MB/s    0:04:58  
  1,812,463,616  53%    5.33MB/s    0:04:45  
  1,817,837,568  53%    5.29MB/s    0:04:47  
  1,823,735,808  54%    5.46MB/s    0:04:37  
  1,838,415,872  54%    7.58MB/s    0:03:17  
  1,857,159,168  55%   10.61MB/s    0:02:19  
  1,871,577,088  55%   12.71MB/s    0:01:55  
  1,885,470,720  55%   14.54MB/s    0:01:40  
  1,902,379,008  56%   14.98MB/s    0:01:35  
  1,938,948,096  57%   19.06MB/s    0:01:13  
  1,949,958,144  57%   18.29MB/s    0:01:16  
  1,954,283,520  57%   16.12MB/s    0:01:26  
  1,955,332,096  57%   12.00MB/s    0:01:55  
  1,977,090,048  58%    8.69MB/s    0:02:36  
  1,992,294,400  59%    9.63MB/s    0:02:20  
  2,022,834,176  59%   15.54MB/s    0:01:24  
  2,032,402,432  60%   18.06MB/s    0:01:12  
  2,040,135,680  60%   14.68MB/s    0:01:28  
  2,046,427,136  60%   12.61MB/s    0:01:42  
  2,052,980,736  60%    7.05MB/s    0:03:02  
  2,058,616,832  61%    6.15MB/s    0:03:28  
  2,065,039,360  61%    5.84MB/s    0:03:38  
  2,078,932,992  61%    7.58MB/s    0:02:46  
  2,088,501,248  61%    8.27MB/s    0:02:31  
  2,093,613,056  62%    8.11MB/s    0:02:34  
  2,098,724,864  62%    7.83MB/s    0:02:39  
  2,103,312,384  62%    5.73MB/s    0:03:36  
  2,108,293,120  62%    4.63MB/s    0:04:27  
  2,112,356,352  62%    4.39MB/s    0:04:40  
  2,116,157,440  62%    4.08MB/s    0:05:01  
  2,119,958,528  62%    3.90MB/s    0:05:14  
  2,122,711,040  62%    3.39MB/s    0:06:01  
  2,124,152,832  62%    2.67MB/s    0:07:36  
  2,134,376,448  63%    4.13MB/s    0:04:53  
  2,149,318,656  63%    6.65MB/s    0:02:59  
  2,157,445,120  63%    7.86MB/s    0:02:31  
  2,165,047,296  64%    9.60MB/s    0:02:03  
  2,168,193,024  64%    7.93MB/s    0:02:28  
  2,171,207,680  64%    5.11MB/s    0:03:50  
  2,175,533,056  64%    4.22MB/s    0:04:37  
  2,181,693,440  64%    3.89MB/s    0:04:59  
  2,187,722,752  64%    4.59MB/s    0:04:12  
  2,193,752,064  65%    5.33MB/s    0:03:36  
  2,198,077,440  65%    5.25MB/s    0:03:38  
  2,205,810,688  65%    5.60MB/s    0:03:23  
  2,211,708,928  65%    5.55MB/s    0:03:24  
  2,218,000,384  65%    5.60MB/s    0:03:21  
  2,224,029,696  65%    6.11MB/s    0:03:03  
  2,229,927,936  66%    5.67MB/s    0:03:16  
  2,236,088,320  66%    5.76MB/s    0:03:13  
  2,242,904,064  66%    5.90MB/s    0:03:07  
  2,257,977,344  66%    8.04MB/s    0:02:15  
  2,276,982,784  67%   11.20MB/s    0:01:35  
  2,294,808,576  68%   13.97MB/s    0:01:15  
  2,312,241,152  68%   16.48MB/s    0:01:02  
  2,344,484,864  69%   20.53MB/s    0:00:48  
  2,363,817,984  70%   20.63MB/s    0:00:47  
  2,379,087,872  70%   19.92MB/s    0:00:48  
  2,395,602,944  70%   19.72MB/s    0:00:48  
  2,411,986,944  71%   15.97MB/s    0:00:58  
  2,427,191,296  71%   14.99MB/s    0:01:01  
  2,446,983,168  72%   14.92MB/s    0:01:00  
  2,494,038,016  73%   21.61MB/s    0:00:39  
  2,511,470,592  74%   21.87MB/s    0:00:38  
  2,528,903,168  74%   22.37MB/s    0:00:36  
  2,545,483,776  75%   23.46MB/s    0:00:34  
  2,576,809,984  76%   19.74MB/s    0:00:39  
  2,590,113,792  76%   18.76MB/s    0:00:40  
  2,616,852,480  77%   20.91MB/s    0:00:35  
  2,636,120,064  78%   21.54MB/s    0:00:33  
  2,651,062,272  78%   17.62MB/s    0:00:40  
  2,686,451,712  79%   22.86MB/s    0:00:29  
  2,706,112,512  80%   21.22MB/s    0:00:30  
  2,722,463,744  80%   20.53MB/s    0:00:31  
  2,734,325,760  81%   19.83MB/s    0:00:31  
  2,748,448,768  81%   14.75MB/s    0:00:41  
  2,758,934,528  81%   12.59MB/s    0:00:47  
  2,765,619,200  81%   10.27MB/s    0:00:57  
  2,769,158,144  82%    8.28MB/s    0:01:11  
  2,789,343,232  82%    9.74MB/s    0:00:58  
  2,795,765,760  82%    8.74MB/s    0:01:04  
  2,809,659,392  83%   10.46MB/s    0:00:52  
  2,848,980,992  84%   18.96MB/s    0:00:27  
  2,887,516,160  85%   23.33MB/s    0:00:20  
  2,917,662,720  86%   29.06MB/s    0:00:15  
  2,938,503,168  87%   30.58MB/s    0:00:13  
  2,959,605,760  87%   26.21MB/s    0:00:15  
  2,968,518,656  87%   19.12MB/s    0:00:20  
  2,975,203,328  88%   13.58MB/s    0:00:28  
  2,981,625,856  88%   10.21MB/s    0:00:37  
  2,987,786,240  88%    6.65MB/s    0:00:56  
  2,993,684,480  88%    5.93MB/s    0:01:02  
  3,006,660,608  89%    7.41MB/s    0:00:48  
  3,013,083,136  89%    7.42MB/s    0:00:47  
  3,018,588,160  89%    7.30MB/s    0:00:47  
  3,028,549,632  89%    8.28MB/s    0:00:40  
  3,039,690,752  90%    7.81MB/s    0:00:41  
  3,044,704,256  90%    7.48MB/s    0:00:43  
  3,050,569,728  90%    7.57MB/s    0:00:41  
  3,055,943,680  90%    6.47MB/s    0:00:48  
  3,062,366,208  90%    5.03MB/s    0:01:00  
  3,069,444,096  90%    5.47MB/s    0:00:54  
  3,075,211,264  91%    5.43MB/s    0:00:53  
  3,081,633,792  91%    5.67MB/s    0:00:50  
  3,087,925,248  91%    6.01MB/s    0:00:46  
  3,093,823,488  91%    5.76MB/s    0:00:47  
  3,100,114,944  91%    5.89MB/s    0:00:45  
  3,117,023,232  92%    8.41MB/s    0:00:29  
  3,135,897,600  92%   11.43MB/s    0:00:20  
  3,148,611,584  93%   11.57MB/s    0:00:19  
  3,178,102,784  94%   16.45MB/s    0:00:11  
  3,198,976,000  94%   17.29MB/s    0:00:09  
  3,215,982,592  95%   16.85MB/s    0:00:09  
  3,240,886,272  96%   21.89MB/s    0:00:05  
  3,263,037,440  96%   20.10MB/s    0:00:05  
  3,275,358,208  97%   18.05MB/s    0:00:05  
  3,281,780,736  97%   15.56MB/s    0:00:05  
  3,299,213,312  97%   13.72MB/s    0:00:05  
  3,313,893,376  98%   11.99MB/s    0:00:04  
  3,324,116,992  98%   11.47MB/s    0:00:04  
  3,331,850,240  98%   11.80MB/s    0:00:03  
  3,338,141,696  98%    9.23MB/s    0:00:03  
  3,349,807,104  99%    8.52MB/s    0:00:02  
  3,355,443,200  99%    7.46MB/s    0:00:02  
  3,361,079,296  99%    6.94MB/s    0:00:01  
  3,374,317,568 100%   10.43MB/s    0:05:08 (xfr#1, to-chk=0/1)
+ ssh deploy@patchouli2.sr.ht mv /var/lib/images/fedora/rawhide/x86_64/new_root.img.qcow2 /var/lib/images/fedora/rawhide/x86_64/root.img.qcow2
Build complete: success 2 months ago (took 14 minutes)