~sircmpwn/#1350464

success

Daily scheduled build image refresh

Owner
~sircmpwn
Created
7 months ago
Updated
7 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
[#1350464] 2024/10/14 22:30:00 Booting image fedora/latest (default) on port 22936
[#1350464] 2024/10/14 22:30:01 Waiting for guest to settle
[#1350464] 2024/10/14 22:30:22 Sending tasks
[#1350464] 2024/10/14 22:30:23 Sending build environment
[#1350464] 2024/10/14 22:30:23 Sending secrets
[#1350464] 2024/10/14 22:30:23 Resolving secret fa00a8d3-7b63-42d5-8060-3bb31c3e3018
[#1350464] 2024/10/14 22:30:24 Installing packages
Warning: Permanently added '[localhost]:22936' (ED25519) to the list of known hosts.
Fedora 40 - x86_64                               15 MB/s |  20 MB     00:01    
Fedora 40 openh264 (From Cisco) - x86_64        2.1 kB/s | 1.4 kB     00:00    
Fedora 40 - x86_64 - Updates                     14 MB/s |  11 MB     00:00    
Dependencies resolved.
=======================================================================================================
 Package                                       Arch    Version                           Repo      Size
=======================================================================================================
Installing:
 e2fsprogs                                     x86_64  1.47.0-5.fc40                     fedora   1.0 M
 qemu-img                                      x86_64  2:8.2.7-1.fc40                    updates  1.9 M
 qemu-system-x86                               x86_64  2:8.2.7-1.fc40                    updates   12 k
 rsync                                         x86_64  3.3.0-1.fc40                      updates  421 k
Installing dependencies:
 ModemManager-glib                             x86_64  1.22.0-3.fc40                     fedora   322 k
 NetworkManager-libnm                          x86_64  1:1.46.2-1.fc40                   updates  1.8 M
 SDL2                                          x86_64  2.30.3-1.fc40                     updates  699 k
 SDL2_image                                    x86_64  2.8.2-4.fc40                      fedora   110 k
 adwaita-cursor-theme                          noarch  46.2-2.fc40                       updates  516 k
 adwaita-icon-theme                            noarch  46.2-2.fc40                       updates  407 k
 adwaita-icon-theme-legacy                     noarch  46.2-1.fc40                       updates  2.5 M
 alsa-lib                                      x86_64  1.2.12-1.fc40                     updates  514 k
 at-spi2-atk                                   x86_64  2.52.0-1.fc40                     fedora    86 k
 at-spi2-core                                  x86_64  2.52.0-1.fc40                     fedora   373 k
 atk                                           x86_64  2.52.0-1.fc40                     fedora    80 k
 avahi-glib                                    x86_64  0.8-26.fc40                       fedora    15 k
 bluez-libs                                    x86_64  5.78-1.fc40                       updates   83 k
 brlapi                                        x86_64  0.8.5-13.fc40                     fedora   192 k
 capstone                                      x86_64  5.0.1-3.fc40                      fedora   1.0 M
 cdparanoia-libs                               x86_64  10.2-44.fc40                      fedora    54 k
 colord-libs                                   x86_64  1.4.7-3.fc40                      fedora   234 k
 daxctl-libs                                   x86_64  79-1.fc40                         updates   41 k
 device-mapper-multipath-libs                  x86_64  0.9.7-7.fc40                      fedora   286 k
 duktape                                       x86_64  2.7.0-7.fc40                      fedora   170 k
 e2fsprogs-libs                                x86_64  1.47.0-5.fc40                     fedora   223 k
 edk2-ovmf                                     noarch  20240813-1.fc40                   updates   10 M
 exempi                                        x86_64  2.6.4-5.fc40                      fedora   581 k
 exiv2-libs                                    x86_64  0.27.6-7.fc40                     fedora   755 k
 fdk-aac-free                                  x86_64  2.0.0-13.fc40                     fedora   337 k
 flac-libs                                     x86_64  1.4.3-4.fc40                      fedora   262 k
 fuse-common                                   x86_64  3.16.2-3.fc40                     fedora   8.7 k
 fuse3                                         x86_64  3.16.2-3.fc40                     fedora    58 k
 fuse3-libs                                    x86_64  3.16.2-3.fc40                     fedora    93 k
 gdk-pixbuf2-modules                           x86_64  2.42.10-8.fc40                    fedora    86 k
 geoclue2                                      x86_64  2.7.0-5.fc40                      fedora   157 k
 giflib                                        x86_64  5.2.2-1.fc40                      fedora    52 k
 glib-networking                               x86_64  2.80.0-1.fc40                     fedora   200 k
 glibmm2.4                                     x86_64  2.66.7-1.fc40                     fedora   684 k
 glusterfs-client-xlators                      x86_64  11.1-3.fc40                       fedora   759 k
 gobject-introspection                         x86_64  1.80.1-1.fc40                     updates  111 k
 gperftools-libs                               x86_64  2.14-4.fc40                       updates  302 k
 graphene                                      x86_64  1.10.6-8.fc40                     fedora    61 k
 gsettings-desktop-schemas                     x86_64  46.1-1.fc40                       updates  755 k
 gsm                                           x86_64  1.0.22-6.fc40                     fedora    36 k
 gstreamer1                                    x86_64  1.24.8-1.fc40                     updates  1.6 M
 gstreamer1-plugins-base                       x86_64  1.24.8-1.fc40                     updates  2.2 M
 gtk-update-icon-cache                         x86_64  3.24.43-1.fc40                    updates   34 k
 gtk3                                          x86_64  3.24.43-1.fc40                    updates  5.6 M
 hicolor-icon-theme                            noarch  0.17-18.fc40                      fedora    66 k
 hwdata                                        noarch  0.388-1.fc40                      updates  1.6 M
 ipxe-roms-qemu                                noarch  20240119-1.gitde8a0821.fc40       fedora   1.7 M
 iso-codes                                     noarch  4.16.0-3.fc40                     fedora   3.5 M
 jack-audio-connection-kit                     x86_64  1.9.22-5.fc40                     fedora   530 k
 json-glib                                     x86_64  1.8.0-3.fc40                      fedora   167 k
 lame-libs                                     x86_64  3.100-17.fc40                     fedora   336 k
 libX11-xcb                                    x86_64  1.8.7-3.fc40                      fedora    12 k
 libXcomposite                                 x86_64  0.4.6-3.fc40                      fedora    24 k
 libXcursor                                    x86_64  1.2.1-7.fc40                      fedora    30 k
 libXdamage                                    x86_64  1.1.6-3.fc40                      fedora    23 k
 libXfixes                                     x86_64  6.0.1-3.fc40                      fedora    19 k
 libXi                                         x86_64  1.8.2-1.fc40                      updates   40 k
 libXinerama                                   x86_64  1.1.5-6.fc40                      fedora    14 k
 libXrandr                                     x86_64  1.5.4-3.fc40                      fedora    28 k
 libXtst                                       x86_64  1.2.5-1.fc40                      updates   20 k
 libXv                                         x86_64  1.0.12-3.fc40                     fedora    18 k
 libXxf86vm                                    x86_64  1.1.5-6.fc40                      fedora    18 k
 libaio                                        x86_64  0.3.111-19.fc40                   fedora    24 k
 libasyncns                                    x86_64  0.8-28.fc40                       fedora    30 k
 libblkio                                      x86_64  1.5.0-1.fc40                      updates  299 k
 libbpf                                        x86_64  2:1.2.3-1.fc40                    updates  165 k
 libcacard                                     x86_64  3:2.8.1-8.fc40                    fedora    55 k
 libcanberra                                   x86_64  0.30-35.fc40                      fedora    85 k
 libcloudproviders                             x86_64  0.3.5-3.fc40                      fedora    46 k
 libconfig                                     x86_64  1.7.3-8.fc40                      fedora    71 k
 libcue                                        x86_64  2.3.0-3.fc40                      fedora    35 k
 libdb                                         x86_64  5.3.28-62.fc40                    updates  758 k
 libdecor                                      x86_64  0.2.2-3.fc40                      fedora    57 k
 libdrm                                        x86_64  2.4.123-1.fc40                    updates  159 k
 libepoxy                                      x86_64  1.5.10-6.fc40                     fedora   222 k
 libexif                                       x86_64  0.6.24-7.fc40                     fedora   456 k
 libfdt                                        x86_64  1.7.0-7.fc40                      fedora    34 k
 libffado                                      x86_64  2.4.8-4.fc40                      updates  868 k
 libgexiv2                                     x86_64  0.14.3-1.fc40                     updates  103 k
 libgfapi0                                     x86_64  11.1-3.fc40                       fedora    96 k
 libgfrpc0                                     x86_64  11.1-3.fc40                       fedora    50 k
 libgfxdr0                                     x86_64  11.1-3.fc40                       fedora    25 k
 libglusterfs0                                 x86_64  11.1-3.fc40                       fedora   282 k
 libglvnd                                      x86_64  1:1.7.0-4.fc40                    fedora   115 k
 libglvnd-egl                                  x86_64  1:1.7.0-4.fc40                    fedora    35 k
 libglvnd-glx                                  x86_64  1:1.7.0-4.fc40                    fedora   132 k
 libgrss                                       x86_64  0.7.0-19.fc40                     fedora    62 k
 libgsf                                        x86_64  1.14.53-1.fc40                    updates  299 k
 libgudev                                      x86_64  238-5.fc40                        fedora    35 k
 libgusb                                       x86_64  0.4.9-1.fc40                      updates   65 k
 libgxps                                       x86_64  0.3.2-8.fc40                      fedora    76 k
 libibverbs                                    x86_64  48.0-4.fc40                       fedora   432 k
 libicu                                        x86_64  74.2-1.fc40                       fedora    10 M
 libiec61883                                   x86_64  1.2.0-34.fc40                     fedora    40 k
 libimobiledevice                              x86_64  1.3.0^20230705git6fc41f5-4.fc40   fedora   138 k
 libimobiledevice-glue                         x86_64  1.0.0-3.fc40                      fedora    36 k
 libiptcdata                                   x86_64  1.0.5-17.fc40                     fedora    60 k
 libiscsi                                      x86_64  1.20.0-1.fc40                     updates   89 k
 liblc3                                        x86_64  1.1.1-1.fc40                      updates  102 k
 libldac                                       x86_64  2.0.2.3-15.fc40                   fedora    41 k
 libnfs                                        x86_64  5.0.3-1.fc40                      fedora   148 k
 libnl3                                        x86_64  3.10.0-1.fc40                     updates  349 k
 libnotify                                     x86_64  0.8.3-3.fc40                      fedora    51 k
 libogg                                        x86_64  2:1.3.5-8.fc40                    fedora    33 k
 libosinfo                                     x86_64  1.11.0-5.fc40                     fedora   316 k
 libpciaccess                                  x86_64  0.16-12.fc40                      fedora    26 k
 libplist                                      x86_64  2.3.0-4.fc40                      fedora    93 k
 libpmem                                       x86_64  2.0.1-3.fc40                      fedora   108 k
 libproxy                                      x86_64  0.5.5-1.fc40                      updates   48 k
 librados2                                     x86_64  2:18.2.4-2.fc40                   updates  3.4 M
 libraw1394                                    x86_64  2.1.2-20.fc40                     fedora    65 k
 librbd1                                       x86_64  2:18.2.4-2.fc40                   updates  3.1 M
 librdmacm                                     x86_64  48.0-4.fc40                       fedora    72 k
 libsamplerate                                 x86_64  0.2.2-8.fc40                      fedora   1.3 M
 libsbc                                        x86_64  2.0-4.fc40                        fedora    48 k
 libsigc++20                                   x86_64  2.12.1-2.fc40                     fedora    39 k
 libslirp                                      x86_64  4.7.0-6.fc40                      fedora    74 k
 libsndfile                                    x86_64  1.2.2-2.fc40                      fedora   212 k
 libsoup                                       x86_64  2.74.3-6.fc40                     fedora   397 k
 libsoup3                                      x86_64  3.4.4-3.fc40                      fedora   387 k
 libss                                         x86_64  1.47.0-5.fc40                     fedora    31 k
 libstemmer                                    x86_64  2.2.0-10.fc40                     fedora   139 k
 libtdb                                        x86_64  1.4.10-1.fc40                     fedora    51 k
 libtheora                                     x86_64  1:1.1.1-36.fc40                   fedora   166 k
 libtracker-sparql                             x86_64  3.7.3-1.fc40                      updates  371 k
 libunwind                                     x86_64  1.8.0-3.fc40                      fedora    73 k
 liburing                                      x86_64  2.5-3.fc40                        fedora    39 k
 libusb1                                       x86_64  1.0.27-2.fc40                     updates   75 k
 libusbmuxd                                    x86_64  2.0.2^20230620git8d30a55-5.fc40   fedora    36 k
 libva                                         x86_64  2.21.0-3.fc40                     fedora   108 k
 libvisual                                     x86_64  1:0.4.1-4.fc40                    fedora   151 k
 libvorbis                                     x86_64  1:1.3.7-10.fc40                   fedora   187 k
 libwayland-client                             x86_64  1.23.0-2.fc40                     updates   33 k
 libwayland-cursor                             x86_64  1.23.0-2.fc40                     updates   19 k
 libwayland-egl                                x86_64  1.23.0-2.fc40                     updates   13 k
 libwayland-server                             x86_64  1.23.0-2.fc40                     updates   41 k
 libxdp                                        x86_64  1.4.2-1.fc40                      fedora    65 k
 libxkbcommon                                  x86_64  1.6.0-2.fc40                      fedora   142 k
 libxml++                                      x86_64  2.42.3-3.fc40                     fedora   100 k
 libxshmfence                                  x86_64  1.3.2-3.fc40                      fedora    12 k
 libxslt                                       x86_64  1.1.42-1.fc40                     updates  189 k
 llvm-libs                                     x86_64  18.1.8-2.fc40                     updates   28 M
 lm_sensors-libs                               x86_64  3.6.0-18.fc40                     fedora    40 k
 lttng-ust                                     x86_64  2.13.7-3.fc40                     fedora   330 k
 lzo                                           x86_64  2.10-12.fc40                      fedora    66 k
 mesa-dri-drivers                              x86_64  24.1.7-1.fc40                     updates   26 M
 mesa-filesystem                               x86_64  24.1.7-1.fc40                     updates   21 k
 mesa-libEGL                                   x86_64  24.1.7-1.fc40                     updates  140 k
 mesa-libGL                                    x86_64  24.1.7-1.fc40                     updates  176 k
 mesa-libgbm                                   x86_64  24.1.7-1.fc40                     updates   48 k
 mesa-libglapi                                 x86_64  24.1.7-1.fc40                     updates   51 k
 mpg123-libs                                   x86_64  1.31.3-4.fc40                     fedora   341 k
 ndctl-libs                                    x86_64  79-1.fc40                         updates   88 k
 numactl-libs                                  x86_64  2.0.16-5.fc40                     fedora    30 k
 opus                                          x86_64  1.5.1-1.fc40                      fedora   230 k
 orc                                           x86_64  0.4.39-1.fc40                     updates  223 k
 osinfo-db                                     noarch  20240701-1.fc40                   updates  453 k
 osinfo-db-tools                               x86_64  1.11.0-5.fc40                     fedora    74 k
 pcre2-utf32                                   x86_64  10.44-1.fc40                      updates  210 k
 pcsc-lite-libs                                x86_64  2.0.3-1.fc40                      fedora    29 k
 pipewire-libs                                 x86_64  1.0.8-1.fc40                      updates  1.8 M
 polkit                                        x86_64  124-2.fc40                        fedora   157 k
 polkit-libs                                   x86_64  124-2.fc40                        fedora    67 k
 polkit-pkla-compat                            x86_64  0.1-28.fc40                       fedora    44 k
 pulseaudio-libs                               x86_64  16.1-8.fc40                       updates  693 k
 qemu-audio-alsa                               x86_64  2:8.2.7-1.fc40                    updates   21 k
 qemu-audio-dbus                               x86_64  2:8.2.7-1.fc40                    updates   68 k
 qemu-audio-jack                               x86_64  2:8.2.7-1.fc40                    updates   19 k
 qemu-audio-oss                                x86_64  2:8.2.7-1.fc40                    updates   19 k
 qemu-audio-pa                                 x86_64  2:8.2.7-1.fc40                    updates   21 k
 qemu-audio-pipewire                           x86_64  2:8.2.7-1.fc40                    updates   26 k
 qemu-audio-sdl                                x86_64  2:8.2.7-1.fc40                    updates   18 k
 qemu-audio-spice                              x86_64  2:8.2.7-1.fc40                    updates   17 k
 qemu-block-blkio                              x86_64  2:8.2.7-1.fc40                    updates   23 k
 qemu-block-curl                               x86_64  2:8.2.7-1.fc40                    updates   22 k
 qemu-block-dmg                                x86_64  2:8.2.7-1.fc40                    updates   15 k
 qemu-block-gluster                            x86_64  2:8.2.7-1.fc40                    updates   23 k
 qemu-block-iscsi                              x86_64  2:8.2.7-1.fc40                    updates   30 k
 qemu-block-nfs                                x86_64  2:8.2.7-1.fc40                    updates   23 k
 qemu-block-rbd                                x86_64  2:8.2.7-1.fc40                    updates   27 k
 qemu-block-ssh                                x86_64  2:8.2.7-1.fc40                    updates   25 k
 qemu-char-baum                                x86_64  2:8.2.7-1.fc40                    updates   20 k
 qemu-char-spice                               x86_64  2:8.2.7-1.fc40                    updates   18 k
 qemu-common                                   x86_64  2:8.2.7-1.fc40                    updates  607 k
 qemu-device-display-qxl                       x86_64  2:8.2.7-1.fc40                    updates   40 k
 qemu-device-display-vhost-user-gpu            x86_64  2:8.2.7-1.fc40                    updates  243 k
 qemu-device-display-virtio-gpu                x86_64  2:8.2.7-1.fc40                    updates   35 k
 qemu-device-display-virtio-gpu-ccw            x86_64  2:8.2.7-1.fc40                    updates   15 k
 qemu-device-display-virtio-gpu-gl             x86_64  2:8.2.7-1.fc40                    updates   22 k
 qemu-device-display-virtio-gpu-pci            x86_64  2:8.2.7-1.fc40                    updates   16 k
 qemu-device-display-virtio-gpu-pci-gl         x86_64  2:8.2.7-1.fc40                    updates   15 k
 qemu-device-display-virtio-gpu-pci-rutabaga   x86_64  2:8.2.7-1.fc40                    updates   15 k
 qemu-device-display-virtio-gpu-rutabaga       x86_64  2:8.2.7-1.fc40                    updates   24 k
 qemu-device-display-virtio-vga                x86_64  2:8.2.7-1.fc40                    updates   17 k
 qemu-device-display-virtio-vga-gl             x86_64  2:8.2.7-1.fc40                    updates   15 k
 qemu-device-display-virtio-vga-rutabaga       x86_64  2:8.2.7-1.fc40                    updates   15 k
 qemu-device-usb-host                          x86_64  2:8.2.7-1.fc40                    updates   29 k
 qemu-device-usb-redirect                      x86_64  2:8.2.7-1.fc40                    updates   35 k
 qemu-device-usb-smartcard                     x86_64  2:8.2.7-1.fc40                    updates   23 k
 qemu-pr-helper                                x86_64  2:8.2.7-1.fc40                    updates  326 k
 qemu-system-x86-core                          x86_64  2:8.2.7-1.fc40                    updates  7.7 M
 qemu-ui-curses                                x86_64  2:8.2.7-1.fc40                    updates   22 k
 qemu-ui-egl-headless                          x86_64  2:8.2.7-1.fc40                    updates   17 k
 qemu-ui-gtk                                   x86_64  2:8.2.7-1.fc40                    updates   38 k
 qemu-ui-opengl                                x86_64  2:8.2.7-1.fc40                    updates   23 k
 qemu-ui-sdl                                   x86_64  2:8.2.7-1.fc40                    updates   27 k
 qemu-ui-spice-app                             x86_64  2:8.2.7-1.fc40                    updates   17 k
 qemu-ui-spice-core                            x86_64  2:8.2.7-1.fc40                    updates   33 k
 rtkit                                         x86_64  0.11-63.fc40                      fedora    55 k
 rutabaga-gfx-ffi                              x86_64  0.1.2-3.20230913gitc3ad0e43e.fc40 fedora   248 k
 seabios-bin                                   noarch  1.16.3-2.fc40                     fedora   184 k
 seavgabios-bin                                noarch  1.16.3-2.fc40                     fedora    38 k
 snappy                                        x86_64  1.1.10-4.fc40                     fedora    37 k
 sound-theme-freedesktop                       noarch  0.8-21.fc40                       fedora   383 k
 spice-server                                  x86_64  0.15.1-4.fc40                     fedora   387 k
 thrift                                        x86_64  0.15.0-4.fc40                     fedora   1.6 M
 totem-pl-parser                               x86_64  3.26.6-9.fc40                     fedora   144 k
 tracker                                       x86_64  3.7.3-1.fc40                      updates  635 k
 uchardet                                      x86_64  0.0.8-5.fc40                      fedora   106 k
 upower-libs                                   x86_64  1.90.6-1.fc40                     updates   57 k
 usbredir                                      x86_64  0.13.0-4.fc40                     fedora    50 k
 userspace-rcu                                 x86_64  0.14.0-4.fc40                     fedora   110 k
 virglrenderer                                 x86_64  1.0.1-2.fc40                      fedora   382 k
 virtiofsd                                     x86_64  1.10.1-1.fc40                     fedora   1.0 M
 vte-profile                                   x86_64  0.76.4-1.fc40                     updates   27 k
 vte291                                        x86_64  0.76.4-1.fc40                     updates  343 k
 vulkan-loader                                 x86_64  1.3.290.0-1.fc40                  updates  150 k
 webrtc-audio-processing                       x86_64  1.3-1.fc40                        fedora   518 k
 wireplumber                                   x86_64  0.5.5-1.fc40                      updates  110 k
 wireplumber-libs                              x86_64  0.5.5-1.fc40                      updates  384 k
 xdg-desktop-portal                            x86_64  1.18.4-1.fc40                     updates  474 k
 xen-libs                                      x86_64  4.18.3-2.fc40                     updates  646 k
 xen-licenses                                  x86_64  4.18.3-2.fc40                     updates   53 k
 xkeyboard-config                              noarch  2.41-1.fc40                       fedora   976 k
 xprop                                         x86_64  1.2.7-1.fc40                      fedora    35 k
 xxhash-libs                                   x86_64  0.8.2-4.fc40                      updates   37 k
 yajl                                          x86_64  2.1.0-23.fc40                     fedora    38 k
Installing weak dependencies:
 adobe-source-code-pro-fonts                   noarch  2.042.1.062.1.026-4.fc40          fedora   806 k
 avif-pixbuf-loader                            x86_64  1.0.4-3.fc40                      updates   17 k
 brltty                                        x86_64  6.6-13.fc40                       fedora   1.7 M
 dconf                                         x86_64  0.40.0-12.fc40                    fedora   109 k
 exiv2                                         x86_64  0.27.6-7.fc40                     fedora   979 k
 libcanberra-gtk3                              x86_64  0.30-35.fc40                      fedora    31 k
 low-memory-monitor                            x86_64  2.1-10.fc40                       fedora    34 k
 mesa-va-drivers                               x86_64  24.1.7-1.fc40                     updates  4.0 M
 mesa-vulkan-drivers                           x86_64  24.1.7-1.fc40                     updates   17 M
 pipewire                                      x86_64  1.0.8-1.fc40                      updates  122 k
 pipewire-alsa                                 x86_64  1.0.8-1.fc40                      updates   56 k
 pipewire-pulseaudio                           x86_64  1.0.8-1.fc40                      updates  197 k
 tracker-miners                                x86_64  3.7.3-1.fc40                      updates  993 k
 upower                                        x86_64  1.90.6-1.fc40                     updates  139 k
 usbmuxd                                       x86_64  1.1.1^20230720git61b99ab-2.fc40   fedora    66 k
 webp-pixbuf-loader                            x86_64  0.2.7-1.fc40                      fedora    20 k
 xdg-desktop-portal-gtk                        x86_64  1.15.1-5.fc40                     fedora   143 k

Transaction Summary
=======================================================================================================
Install  258 Packages

Total download size: 178 M
Installed size: 740 M
Downloading Packages:
(1/258): SDL2_image-2.8.2-4.fc40.x86_64.rpm     686 kB/s | 110 kB     00:00    
(2/258): ModemManager-glib-1.22.0-3.fc40.x86_64 1.8 MB/s | 322 kB     00:00    
(3/258): adobe-source-code-pro-fonts-2.042.1.06 4.1 MB/s | 806 kB     00:00    
(4/258): at-spi2-atk-2.52.0-1.fc40.x86_64.rpm   1.2 MB/s |  86 kB     00:00    
(5/258): atk-2.52.0-1.fc40.x86_64.rpm           1.8 MB/s |  80 kB     00:00    
(6/258): at-spi2-core-2.52.0-1.fc40.x86_64.rpm  5.1 MB/s | 373 kB     00:00    
(7/258): avahi-glib-0.8-26.fc40.x86_64.rpm      362 kB/s |  15 kB     00:00    
(8/258): brlapi-0.8.5-13.fc40.x86_64.rpm        1.4 MB/s | 192 kB     00:00    
(9/258): capstone-5.0.1-3.fc40.x86_64.rpm       6.5 MB/s | 1.0 MB     00:00    
(10/258): cdparanoia-libs-10.2-44.fc40.x86_64.r 1.1 MB/s |  54 kB     00:00    
(11/258): brltty-6.6-13.fc40.x86_64.rpm         8.6 MB/s | 1.7 MB     00:00    
(12/258): dconf-0.40.0-12.fc40.x86_64.rpm       1.2 MB/s | 109 kB     00:00    
(13/258): colord-libs-1.4.7-3.fc40.x86_64.rpm   2.4 MB/s | 234 kB     00:00    
(14/258): device-mapper-multipath-libs-0.9.7-7. 3.4 MB/s | 286 kB     00:00    
(15/258): e2fsprogs-libs-1.47.0-5.fc40.x86_64.r 2.6 MB/s | 223 kB     00:00    
(16/258): duktape-2.7.0-7.fc40.x86_64.rpm       1.6 MB/s | 170 kB     00:00    
(17/258): e2fsprogs-1.47.0-5.fc40.x86_64.rpm    7.2 MB/s | 1.0 MB     00:00    
(18/258): exempi-2.6.4-5.fc40.x86_64.rpm        5.6 MB/s | 581 kB     00:00    
(19/258): exiv2-libs-0.27.6-7.fc40.x86_64.rpm    11 MB/s | 755 kB     00:00    
(20/258): exiv2-0.27.6-7.fc40.x86_64.rpm        6.6 MB/s | 979 kB     00:00    
(21/258): fdk-aac-free-2.0.0-13.fc40.x86_64.rpm 3.0 MB/s | 337 kB     00:00    
(22/258): flac-libs-1.4.3-4.fc40.x86_64.rpm     2.0 MB/s | 262 kB     00:00    
(23/258): fuse-common-3.16.2-3.fc40.x86_64.rpm   84 kB/s | 8.7 kB     00:00    
(24/258): fuse3-3.16.2-3.fc40.x86_64.rpm        897 kB/s |  58 kB     00:00    
(25/258): fuse3-libs-3.16.2-3.fc40.x86_64.rpm   2.3 MB/s |  93 kB     00:00    
(26/258): gdk-pixbuf2-modules-2.42.10-8.fc40.x8 879 kB/s |  86 kB     00:00    
(27/258): geoclue2-2.7.0-5.fc40.x86_64.rpm      1.2 MB/s | 157 kB     00:00    
(28/258): giflib-5.2.2-1.fc40.x86_64.rpm        353 kB/s |  52 kB     00:00    
(29/258): glib-networking-2.80.0-1.fc40.x86_64. 1.4 MB/s | 200 kB     00:00    
(30/258): glibmm2.4-2.66.7-1.fc40.x86_64.rpm    5.7 MB/s | 684 kB     00:00    
(31/258): graphene-1.10.6-8.fc40.x86_64.rpm     1.2 MB/s |  61 kB     00:00    
(32/258): glusterfs-client-xlators-11.1-3.fc40. 4.3 MB/s | 759 kB     00:00    
(33/258): gsm-1.0.22-6.fc40.x86_64.rpm          370 kB/s |  36 kB     00:00    
(34/258): hicolor-icon-theme-0.17-18.fc40.noarc 699 kB/s |  66 kB     00:00    
(35/258): jack-audio-connection-kit-1.9.22-5.fc 5.7 MB/s | 530 kB     00:00    
(36/258): ipxe-roms-qemu-20240119-1.gitde8a0821 8.4 MB/s | 1.7 MB     00:00    
(37/258): json-glib-1.8.0-3.fc40.x86_64.rpm     1.8 MB/s | 167 kB     00:00    
(38/258): iso-codes-4.16.0-3.fc40.noarch.rpm     16 MB/s | 3.5 MB     00:00    
(39/258): lame-libs-3.100-17.fc40.x86_64.rpm    2.0 MB/s | 336 kB     00:00    
(40/258): libX11-xcb-1.8.7-3.fc40.x86_64.rpm     64 kB/s |  12 kB     00:00    
(41/258): libXcomposite-0.4.6-3.fc40.x86_64.rpm 133 kB/s |  24 kB     00:00    
(42/258): libXcursor-1.2.1-7.fc40.x86_64.rpm    488 kB/s |  30 kB     00:00    
(43/258): libXdamage-1.1.6-3.fc40.x86_64.rpm    318 kB/s |  23 kB     00:00    
(44/258): libXfixes-6.0.1-3.fc40.x86_64.rpm     276 kB/s |  19 kB     00:00    
(45/258): libXv-1.0.12-3.fc40.x86_64.rpm        497 kB/s |  18 kB     00:00    
(46/258): libXinerama-1.1.5-6.fc40.x86_64.rpm   137 kB/s |  14 kB     00:00    
(47/258): libXrandr-1.5.4-3.fc40.x86_64.rpm     377 kB/s |  28 kB     00:00    
(48/258): libXxf86vm-1.1.5-6.fc40.x86_64.rpm    452 kB/s |  18 kB     00:00    
(49/258): libaio-0.3.111-19.fc40.x86_64.rpm     245 kB/s |  24 kB     00:00    
(50/258): libasyncns-0.8-28.fc40.x86_64.rpm     247 kB/s |  30 kB     00:00    
(51/258): libcacard-2.8.1-8.fc40.x86_64.rpm     603 kB/s |  55 kB     00:00    
(52/258): libcanberra-0.30-35.fc40.x86_64.rpm   2.1 MB/s |  85 kB     00:00    
(53/258): libcanberra-gtk3-0.30-35.fc40.x86_64. 867 kB/s |  31 kB     00:00    
(54/258): libcloudproviders-0.3.5-3.fc40.x86_64 742 kB/s |  46 kB     00:00    
(55/258): libconfig-1.7.3-8.fc40.x86_64.rpm     982 kB/s |  71 kB     00:00    
(56/258): libcue-2.3.0-3.fc40.x86_64.rpm        642 kB/s |  35 kB     00:00    
(57/258): libdecor-0.2.2-3.fc40.x86_64.rpm      1.3 MB/s |  57 kB     00:00    
(58/258): libepoxy-1.5.10-6.fc40.x86_64.rpm     4.1 MB/s | 222 kB     00:00    
(59/258): libexif-0.6.24-7.fc40.x86_64.rpm      6.6 MB/s | 456 kB     00:00    
(60/258): libfdt-1.7.0-7.fc40.x86_64.rpm        462 kB/s |  34 kB     00:00    
(61/258): libgfxdr0-11.1-3.fc40.x86_64.rpm      1.1 MB/s |  25 kB     00:00    
(62/258): libgfrpc0-11.1-3.fc40.x86_64.rpm      940 kB/s |  50 kB     00:00    
(63/258): libgfapi0-11.1-3.fc40.x86_64.rpm      1.2 MB/s |  96 kB     00:00    
(64/258): libglvnd-egl-1.7.0-4.fc40.x86_64.rpm  1.3 MB/s |  35 kB     00:00    
(65/258): libglvnd-1.7.0-4.fc40.x86_64.rpm      2.6 MB/s | 115 kB     00:00    
(66/258): libglusterfs0-11.1-3.fc40.x86_64.rpm  5.3 MB/s | 282 kB     00:00    
(67/258): libglvnd-glx-1.7.0-4.fc40.x86_64.rpm  3.1 MB/s | 132 kB     00:00    
(68/258): libgudev-238-5.fc40.x86_64.rpm        721 kB/s |  35 kB     00:00    
(69/258): libgrss-0.7.0-19.fc40.x86_64.rpm      863 kB/s |  62 kB     00:00    
(70/258): libgxps-0.3.2-8.fc40.x86_64.rpm       746 kB/s |  76 kB     00:00    
(71/258): libiec61883-1.2.0-34.fc40.x86_64.rpm  581 kB/s |  40 kB     00:00    
(72/258): libibverbs-48.0-4.fc40.x86_64.rpm     2.8 MB/s | 432 kB     00:00    
(73/258): libimobiledevice-glue-1.0.0-3.fc40.x8 678 kB/s |  36 kB     00:00    
(74/258): libimobiledevice-1.3.0^20230705git6fc 1.5 MB/s | 138 kB     00:00    
(75/258): libiptcdata-1.0.5-17.fc40.x86_64.rpm  858 kB/s |  60 kB     00:00    
(76/258): libldac-2.0.2.3-15.fc40.x86_64.rpm    674 kB/s |  41 kB     00:00    
(77/258): libicu-74.2-1.fc40.x86_64.rpm          34 MB/s |  10 MB     00:00    
(78/258): libnfs-5.0.3-1.fc40.x86_64.rpm        2.6 MB/s | 148 kB     00:00    
(79/258): libnotify-0.8.3-3.fc40.x86_64.rpm     725 kB/s |  51 kB     00:00    
(80/258): libogg-1.3.5-8.fc40.x86_64.rpm        323 kB/s |  33 kB     00:00    
(81/258): libpciaccess-0.16-12.fc40.x86_64.rpm  258 kB/s |  26 kB     00:00    
(82/258): libosinfo-1.11.0-5.fc40.x86_64.rpm    2.0 MB/s | 316 kB     00:00    
(83/258): libplist-2.3.0-4.fc40.x86_64.rpm      927 kB/s |  93 kB     00:00    
(84/258): libpmem-2.0.1-3.fc40.x86_64.rpm       1.7 MB/s | 108 kB     00:00    
(85/258): libraw1394-2.1.2-20.fc40.x86_64.rpm   883 kB/s |  65 kB     00:00    
(86/258): librdmacm-48.0-4.fc40.x86_64.rpm      2.2 MB/s |  72 kB     00:00    
(87/258): libsbc-2.0-4.fc40.x86_64.rpm          1.2 MB/s |  48 kB     00:00    
(88/258): libsigc++20-2.12.1-2.fc40.x86_64.rpm  617 kB/s |  39 kB     00:00    
(89/258): libsndfile-1.2.2-2.fc40.x86_64.rpm    4.3 MB/s | 212 kB     00:00    
(90/258): libslirp-4.7.0-6.fc40.x86_64.rpm      879 kB/s |  74 kB     00:00    
(91/258): libsamplerate-0.2.2-8.fc40.x86_64.rpm 8.5 MB/s | 1.3 MB     00:00    
(92/258): libsoup-2.74.3-6.fc40.x86_64.rpm      5.7 MB/s | 397 kB     00:00    
(93/258): libss-1.47.0-5.fc40.x86_64.rpm        464 kB/s |  31 kB     00:00    
(94/258): libsoup3-3.4.4-3.fc40.x86_64.rpm      5.2 MB/s | 387 kB     00:00    
(95/258): libstemmer-2.2.0-10.fc40.x86_64.rpm   1.7 MB/s | 139 kB     00:00    
(96/258): libtdb-1.4.10-1.fc40.x86_64.rpm       590 kB/s |  51 kB     00:00    
(97/258): libtheora-1.1.1-36.fc40.x86_64.rpm    1.4 MB/s | 166 kB     00:00    
(98/258): libunwind-1.8.0-3.fc40.x86_64.rpm     910 kB/s |  73 kB     00:00    
(99/258): liburing-2.5-3.fc40.x86_64.rpm        483 kB/s |  39 kB     00:00    
(100/258): libusbmuxd-2.0.2^20230620git8d30a55- 714 kB/s |  36 kB     00:00    
(101/258): libva-2.21.0-3.fc40.x86_64.rpm       1.8 MB/s | 108 kB     00:00    
(102/258): libvisual-0.4.1-4.fc40.x86_64.rpm    3.2 MB/s | 151 kB     00:00    
(103/258): libvorbis-1.3.7-10.fc40.x86_64.rpm   2.1 MB/s | 187 kB     00:00    
(104/258): libxdp-1.4.2-1.fc40.x86_64.rpm       1.1 MB/s |  65 kB     00:00    
(105/258): libxml++-2.42.3-3.fc40.x86_64.rpm    4.2 MB/s | 100 kB     00:00    
(106/258): libxkbcommon-1.6.0-2.fc40.x86_64.rpm 1.8 MB/s | 142 kB     00:00    
(107/258): libxshmfence-1.3.2-3.fc40.x86_64.rpm 534 kB/s |  12 kB     00:00    
(108/258): lm_sensors-libs-3.6.0-18.fc40.x86_64 679 kB/s |  40 kB     00:00    
(109/258): low-memory-monitor-2.1-10.fc40.x86_6 485 kB/s |  34 kB     00:00    
(110/258): lttng-ust-2.13.7-3.fc40.x86_64.rpm   2.4 MB/s | 330 kB     00:00    
(111/258): lzo-2.10-12.fc40.x86_64.rpm          717 kB/s |  66 kB     00:00    
(112/258): mpg123-libs-1.31.3-4.fc40.x86_64.rpm 3.7 MB/s | 341 kB     00:00    
(113/258): numactl-libs-2.0.16-5.fc40.x86_64.rp 277 kB/s |  30 kB     00:00    
(114/258): opus-1.5.1-1.fc40.x86_64.rpm         2.0 MB/s | 230 kB     00:00    
(115/258): osinfo-db-tools-1.11.0-5.fc40.x86_64 646 kB/s |  74 kB     00:00    
(116/258): pcsc-lite-libs-2.0.3-1.fc40.x86_64.r 229 kB/s |  29 kB     00:00    
(117/258): polkit-124-2.fc40.x86_64.rpm         1.0 MB/s | 157 kB     00:00    
(118/258): polkit-libs-124-2.fc40.x86_64.rpm    449 kB/s |  67 kB     00:00    
(119/258): polkit-pkla-compat-0.1-28.fc40.x86_6 750 kB/s |  44 kB     00:00    
(120/258): seabios-bin-1.16.3-2.fc40.noarch.rpm 3.3 MB/s | 184 kB     00:00    
(121/258): rtkit-0.11-63.fc40.x86_64.rpm        658 kB/s |  55 kB     00:00    
(122/258): seavgabios-bin-1.16.3-2.fc40.noarch. 637 kB/s |  38 kB     00:00    
(123/258): rutabaga-gfx-ffi-0.1.2-3.20230913git 1.6 MB/s | 248 kB     00:00    
(124/258): snappy-1.1.10-4.fc40.x86_64.rpm      452 kB/s |  37 kB     00:00    
(125/258): sound-theme-freedesktop-0.8-21.fc40. 4.5 MB/s | 383 kB     00:00    
(126/258): spice-server-0.15.1-4.fc40.x86_64.rp 4.8 MB/s | 387 kB     00:00    
(127/258): totem-pl-parser-3.26.6-9.fc40.x86_64 1.7 MB/s | 144 kB     00:00    
(128/258): thrift-0.15.0-4.fc40.x86_64.rpm       11 MB/s | 1.6 MB     00:00    
(129/258): uchardet-0.0.8-5.fc40.x86_64.rpm     1.3 MB/s | 106 kB     00:00    
(130/258): usbredir-0.13.0-4.fc40.x86_64.rpm    1.8 MB/s |  50 kB     00:00    
(131/258): usbmuxd-1.1.1^20230720git61b99ab-2.f 1.4 MB/s |  66 kB     00:00    
(132/258): userspace-rcu-0.14.0-4.fc40.x86_64.r 3.3 MB/s | 110 kB     00:00    
(133/258): virglrenderer-1.0.1-2.fc40.x86_64.rp 4.3 MB/s | 382 kB     00:00    
(134/258): webrtc-audio-processing-1.3-1.fc40.x 7.8 MB/s | 518 kB     00:00    
(135/258): webp-pixbuf-loader-0.2.7-1.fc40.x86_ 147 kB/s |  20 kB     00:00    
(136/258): virtiofsd-1.10.1-1.fc40.x86_64.rpm   5.8 MB/s | 1.0 MB     00:00    
(137/258): xdg-desktop-portal-gtk-1.15.1-5.fc40 1.4 MB/s | 143 kB     00:00    
(138/258): xprop-1.2.7-1.fc40.x86_64.rpm        322 kB/s |  35 kB     00:00    
(139/258): yajl-2.1.0-23.fc40.x86_64.rpm        645 kB/s |  38 kB     00:00    
(140/258): xkeyboard-config-2.41-1.fc40.noarch. 5.3 MB/s | 976 kB     00:00    
(141/258): SDL2-2.30.3-1.fc40.x86_64.rpm        5.2 MB/s | 699 kB     00:00    
(142/258): NetworkManager-libnm-1.46.2-1.fc40.x  11 MB/s | 1.8 MB     00:00    
(143/258): adwaita-cursor-theme-46.2-2.fc40.noa 4.3 MB/s | 516 kB     00:00    
(144/258): adwaita-icon-theme-46.2-2.fc40.noarc  20 MB/s | 407 kB     00:00    
(145/258): avif-pixbuf-loader-1.0.4-3.fc40.x86_ 961 kB/s |  17 kB     00:00    
(146/258): alsa-lib-1.2.12-1.fc40.x86_64.rpm     14 MB/s | 514 kB     00:00    
(147/258): adwaita-icon-theme-legacy-46.2-1.fc4  51 MB/s | 2.5 MB     00:00    
(148/258): bluez-libs-5.78-1.fc40.x86_64.rpm    4.2 MB/s |  83 kB     00:00    
(149/258): daxctl-libs-79-1.fc40.x86_64.rpm     2.3 MB/s |  41 kB     00:00    
(150/258): gobject-introspection-1.80.1-1.fc40. 5.7 MB/s | 111 kB     00:00    
(151/258): gperftools-libs-2.14-4.fc40.x86_64.r  15 MB/s | 302 kB     00:00    
(152/258): gsettings-desktop-schemas-46.1-1.fc4  31 MB/s | 755 kB     00:00    
(153/258): gstreamer1-1.24.8-1.fc40.x86_64.rpm   38 MB/s | 1.6 MB     00:00    
(154/258): gstreamer1-plugins-base-1.24.8-1.fc4  49 MB/s | 2.2 MB     00:00    
(155/258): gtk-update-icon-cache-3.24.43-1.fc40 1.5 MB/s |  34 kB     00:00    
(156/258): hwdata-0.388-1.fc40.noarch.rpm        42 MB/s | 1.6 MB     00:00    
(157/258): libXi-1.8.2-1.fc40.x86_64.rpm        2.0 MB/s |  40 kB     00:00    
(158/258): libXtst-1.2.5-1.fc40.x86_64.rpm      1.1 MB/s |  20 kB     00:00    
(159/258): gtk3-3.24.43-1.fc40.x86_64.rpm        56 MB/s | 5.6 MB     00:00    
(160/258): libblkio-1.5.0-1.fc40.x86_64.rpm      11 MB/s | 299 kB     00:00    
(161/258): edk2-ovmf-20240813-1.fc40.noarch.rpm  45 MB/s |  10 MB     00:00    
(162/258): libbpf-1.2.3-1.fc40.x86_64.rpm       4.6 MB/s | 165 kB     00:00    
(163/258): libdb-5.3.28-62.fc40.x86_64.rpm       21 MB/s | 758 kB     00:00    
(164/258): libdrm-2.4.123-1.fc40.x86_64.rpm     8.3 MB/s | 159 kB     00:00    
(165/258): libffado-2.4.8-4.fc40.x86_64.rpm      37 MB/s | 868 kB     00:00    
(166/258): libgexiv2-0.14.3-1.fc40.x86_64.rpm   4.7 MB/s | 103 kB     00:00    
(167/258): libgsf-1.14.53-1.fc40.x86_64.rpm      15 MB/s | 299 kB     00:00    
(168/258): libgusb-0.4.9-1.fc40.x86_64.rpm      3.6 MB/s |  65 kB     00:00    
(169/258): libiscsi-1.20.0-1.fc40.x86_64.rpm    4.8 MB/s |  89 kB     00:00    
(170/258): liblc3-1.1.1-1.fc40.x86_64.rpm       5.5 MB/s | 102 kB     00:00    
(171/258): libnl3-3.10.0-1.fc40.x86_64.rpm       17 MB/s | 349 kB     00:00    
(172/258): libproxy-0.5.5-1.fc40.x86_64.rpm     2.4 MB/s |  48 kB     00:00    
(173/258): libtracker-sparql-3.7.3-1.fc40.x86_6  17 MB/s | 371 kB     00:00    
(174/258): libusb1-1.0.27-2.fc40.x86_64.rpm     3.9 MB/s |  75 kB     00:00    
(175/258): librbd1-18.2.4-2.fc40.x86_64.rpm      52 MB/s | 3.1 MB     00:00    
(176/258): libwayland-client-1.23.0-2.fc40.x86_ 1.7 MB/s |  33 kB     00:00    
(177/258): librados2-18.2.4-2.fc40.x86_64.rpm    38 MB/s | 3.4 MB     00:00    
(178/258): libwayland-cursor-1.23.0-2.fc40.x86_ 819 kB/s |  19 kB     00:00    
(179/258): libwayland-egl-1.23.0-2.fc40.x86_64. 564 kB/s |  13 kB     00:00    
(180/258): libwayland-server-1.23.0-2.fc40.x86_ 2.3 MB/s |  41 kB     00:00    
(181/258): libxslt-1.1.42-1.fc40.x86_64.rpm     8.5 MB/s | 189 kB     00:00    
(182/258): mesa-filesystem-24.1.7-1.fc40.x86_64 1.1 MB/s |  21 kB     00:00    
(183/258): mesa-libEGL-24.1.7-1.fc40.x86_64.rpm 7.4 MB/s | 140 kB     00:00    
(184/258): mesa-libGL-24.1.7-1.fc40.x86_64.rpm  9.4 MB/s | 176 kB     00:00    
(185/258): mesa-libgbm-24.1.7-1.fc40.x86_64.rpm 2.6 MB/s |  48 kB     00:00    
(186/258): mesa-libglapi-24.1.7-1.fc40.x86_64.r 2.8 MB/s |  51 kB     00:00    
(187/258): mesa-va-drivers-24.1.7-1.fc40.x86_64  51 MB/s | 4.0 MB     00:00    
(188/258): llvm-libs-18.1.8-2.fc40.x86_64.rpm    67 MB/s |  28 MB     00:00    
(189/258): ndctl-libs-79-1.fc40.x86_64.rpm      4.7 MB/s |  88 kB     00:00    
(190/258): orc-0.4.39-1.fc40.x86_64.rpm          11 MB/s | 223 kB     00:00    
(191/258): mesa-vulkan-drivers-24.1.7-1.fc40.x8  58 MB/s |  17 MB     00:00    
(192/258): osinfo-db-20240701-1.fc40.noarch.rpm  14 MB/s | 453 kB     00:00    
(193/258): pcre2-utf32-10.44-1.fc40.x86_64.rpm   11 MB/s | 210 kB     00:00    
(194/258): pipewire-1.0.8-1.fc40.x86_64.rpm     6.8 MB/s | 122 kB     00:00    
(195/258): pipewire-alsa-1.0.8-1.fc40.x86_64.rp 3.2 MB/s |  56 kB     00:00    
(196/258): mesa-dri-drivers-24.1.7-1.fc40.x86_6  47 MB/s |  26 MB     00:00    
(197/258): pipewire-pulseaudio-1.0.8-1.fc40.x86 3.9 MB/s | 197 kB     00:00    
(198/258): pipewire-libs-1.0.8-1.fc40.x86_64.rp  27 MB/s | 1.8 MB     00:00    
(199/258): qemu-audio-alsa-8.2.7-1.fc40.x86_64. 1.2 MB/s |  21 kB     00:00    
(200/258): pulseaudio-libs-16.1-8.fc40.x86_64.r  32 MB/s | 693 kB     00:00    
(201/258): qemu-audio-dbus-8.2.7-1.fc40.x86_64. 3.8 MB/s |  68 kB     00:00    
(202/258): qemu-audio-jack-8.2.7-1.fc40.x86_64. 1.1 MB/s |  19 kB     00:00    
(203/258): qemu-audio-oss-8.2.7-1.fc40.x86_64.r 1.1 MB/s |  19 kB     00:00    
(204/258): qemu-audio-pa-8.2.7-1.fc40.x86_64.rp 1.2 MB/s |  21 kB     00:00    
(205/258): qemu-audio-pipewire-8.2.7-1.fc40.x86 1.5 MB/s |  26 kB     00:00    
(206/258): qemu-audio-sdl-8.2.7-1.fc40.x86_64.r 1.0 MB/s |  18 kB     00:00    
(207/258): qemu-audio-spice-8.2.7-1.fc40.x86_64 997 kB/s |  17 kB     00:00    
(208/258): qemu-block-blkio-8.2.7-1.fc40.x86_64 1.3 MB/s |  23 kB     00:00    
(209/258): qemu-block-curl-8.2.7-1.fc40.x86_64. 1.3 MB/s |  22 kB     00:00    
(210/258): qemu-block-dmg-8.2.7-1.fc40.x86_64.r 867 kB/s |  15 kB     00:00    
(211/258): qemu-block-gluster-8.2.7-1.fc40.x86_ 1.3 MB/s |  23 kB     00:00    
(212/258): qemu-block-iscsi-8.2.7-1.fc40.x86_64 1.7 MB/s |  30 kB     00:00    
(213/258): qemu-block-nfs-8.2.7-1.fc40.x86_64.r 1.3 MB/s |  23 kB     00:00    
(214/258): qemu-block-rbd-8.2.7-1.fc40.x86_64.r 1.5 MB/s |  27 kB     00:00    
(215/258): qemu-block-ssh-8.2.7-1.fc40.x86_64.r 1.4 MB/s |  25 kB     00:00    
(216/258): qemu-char-baum-8.2.7-1.fc40.x86_64.r 1.1 MB/s |  20 kB     00:00    
(217/258): qemu-char-spice-8.2.7-1.fc40.x86_64. 1.0 MB/s |  18 kB     00:00    
(218/258): qemu-device-display-qxl-8.2.7-1.fc40 2.2 MB/s |  40 kB     00:00    
(219/258): qemu-common-8.2.7-1.fc40.x86_64.rpm   26 MB/s | 607 kB     00:00    
(220/258): qemu-device-display-vhost-user-gpu-8  13 MB/s | 243 kB     00:00    
(221/258): qemu-device-display-virtio-gpu-8.2.7 1.3 MB/s |  35 kB     00:00    
(222/258): qemu-device-display-virtio-gpu-ccw-8 661 kB/s |  15 kB     00:00    
(223/258): qemu-device-display-virtio-gpu-gl-8. 1.2 MB/s |  22 kB     00:00    
(224/258): qemu-device-display-virtio-gpu-pci-8 911 kB/s |  16 kB     00:00    
(225/258): qemu-device-display-virtio-gpu-pci-g 832 kB/s |  15 kB     00:00    
(226/258): qemu-device-display-virtio-gpu-pci-r 879 kB/s |  15 kB     00:00    
(227/258): qemu-device-display-virtio-gpu-rutab 1.3 MB/s |  24 kB     00:00    
(228/258): qemu-device-display-virtio-vga-8.2.7 982 kB/s |  17 kB     00:00    
(229/258): qemu-device-display-virtio-vga-gl-8. 881 kB/s |  15 kB     00:00    
(230/258): qemu-device-display-virtio-vga-rutab 865 kB/s |  15 kB     00:00    
(231/258): qemu-device-usb-host-8.2.7-1.fc40.x8 1.6 MB/s |  29 kB     00:00    
(232/258): qemu-device-usb-redirect-8.2.7-1.fc4 2.0 MB/s |  35 kB     00:00    
(233/258): qemu-device-usb-smartcard-8.2.7-1.fc 1.3 MB/s |  23 kB     00:00    
(234/258): qemu-pr-helper-8.2.7-1.fc40.x86_64.r  16 MB/s | 326 kB     00:00    
(235/258): qemu-img-8.2.7-1.fc40.x86_64.rpm      44 MB/s | 1.9 MB     00:00    
(236/258): qemu-system-x86-8.2.7-1.fc40.x86_64. 479 kB/s |  12 kB     00:00    
(237/258): qemu-ui-egl-headless-8.2.7-1.fc40.x8 969 kB/s |  17 kB     00:00    
(238/258): qemu-ui-curses-8.2.7-1.fc40.x86_64.r 1.2 MB/s |  22 kB     00:00    
(239/258): qemu-ui-gtk-8.2.7-1.fc40.x86_64.rpm  2.1 MB/s |  38 kB     00:00    
(240/258): qemu-ui-opengl-8.2.7-1.fc40.x86_64.r 1.3 MB/s |  23 kB     00:00    
(241/258): qemu-ui-sdl-8.2.7-1.fc40.x86_64.rpm  1.5 MB/s |  27 kB     00:00    
(242/258): qemu-ui-spice-app-8.2.7-1.fc40.x86_6 982 kB/s |  17 kB     00:00    
(243/258): qemu-ui-spice-core-8.2.7-1.fc40.x86_ 1.9 MB/s |  33 kB     00:00    
(244/258): rsync-3.3.0-1.fc40.x86_64.rpm         20 MB/s | 421 kB     00:00    
(245/258): qemu-system-x86-core-8.2.7-1.fc40.x8  58 MB/s | 7.7 MB     00:00    
(246/258): tracker-3.7.3-1.fc40.x86_64.rpm       14 MB/s | 635 kB     00:00    
(247/258): tracker-miners-3.7.3-1.fc40.x86_64.r  21 MB/s | 993 kB     00:00    
(248/258): upower-libs-1.90.6-1.fc40.x86_64.rpm 3.1 MB/s |  57 kB     00:00    
(249/258): upower-1.90.6-1.fc40.x86_64.rpm      6.8 MB/s | 139 kB     00:00    
(250/258): vte-profile-0.76.4-1.fc40.x86_64.rpm 1.5 MB/s |  27 kB     00:00    
(251/258): vte291-0.76.4-1.fc40.x86_64.rpm       17 MB/s | 343 kB     00:00    
(252/258): vulkan-loader-1.3.290.0-1.fc40.x86_6 7.2 MB/s | 150 kB     00:00    
(253/258): wireplumber-0.5.5-1.fc40.x86_64.rpm  5.7 MB/s | 110 kB     00:00    
(254/258): wireplumber-libs-0.5.5-1.fc40.x86_64  17 MB/s | 384 kB     00:00    
(255/258): xdg-desktop-portal-1.18.4-1.fc40.x86  19 MB/s | 474 kB     00:00    
(256/258): xen-libs-4.18.3-2.fc40.x86_64.rpm     24 MB/s | 646 kB     00:00    
(257/258): xen-licenses-4.18.3-2.fc40.x86_64.rp 2.9 MB/s |  53 kB     00:00    
(258/258): xxhash-libs-0.8.2-4.fc40.x86_64.rpm  2.1 MB/s |  37 kB     00:00    
--------------------------------------------------------------------------------
Total                                            25 MB/s | 178 MB     00:06     
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1 
  Installing       : libwayland-client-1.23.0-2.fc40.x86_64               1/258 
  Installing       : alsa-lib-1.2.12-1.fc40.x86_64                        2/258 
  Installing       : userspace-rcu-0.14.0-4.fc40.x86_64                   3/258 
  Installing       : libepoxy-1.5.10-6.fc40.x86_64                        4/258 
  Installing       : libXfixes-6.0.1-3.fc40.x86_64                        5/258 
  Installing       : libX11-xcb-1.8.7-3.fc40.x86_64                       6/258 
  Installing       : json-glib-1.8.0-3.fc40.x86_64                        7/258 
  Installing       : libusb1-1.0.27-2.fc40.x86_64                         8/258 
  Installing       : opus-1.5.1-1.fc40.x86_64                             9/258 
  Installing       : numactl-libs-2.0.16-5.fc40.x86_64                   10/258 
  Installing       : libplist-2.3.0-4.fc40.x86_64                        11/258 
  Installing       : libogg-2:1.3.5-8.fc40.x86_64                        12/258 
  Installing       : libicu-74.2-1.fc40.x86_64                           13/258 
  Installing       : libvorbis-1:1.3.7-10.fc40.x86_64                    14/258 
  Installing       : libXi-1.8.2-1.fc40.x86_64                           15/258 
  Installing       : polkit-libs-124-2.fc40.x86_64                       16/258 
  Installing       : libxshmfence-1.3.2-3.fc40.x86_64                    17/258 
  Installing       : liburing-2.5-3.fc40.x86_64                          18/258 
  Installing       : libaio-0.3.111-19.fc40.x86_64                       19/258 
  Installing       : fuse3-libs-3.16.2-3.fc40.x86_64                     20/258 
  Installing       : libimobiledevice-glue-1.0.0-3.fc40.x86_64           21/258 
  Installing       : libwayland-cursor-1.23.0-2.fc40.x86_64              22/258 
  Installing       : mesa-filesystem-24.1.7-1.fc40.x86_64                23/258 
  Installing       : llvm-libs-18.1.8-2.fc40.x86_64                      24/258 
  Installing       : libnl3-3.10.0-1.fc40.x86_64                         25/258 
  Installing       : libibverbs-48.0-4.fc40.x86_64                       26/258 
  Installing       : librdmacm-48.0-4.fc40.x86_64                        27/258 
  Installing       : hwdata-0.388-1.fc40.noarch                          28/258 
  Installing       : daxctl-libs-79-1.fc40.x86_64                        29/258 
  Installing       : avahi-glib-0.8-26.fc40.x86_64                       30/258 
  Installing       : libXtst-1.2.5-1.fc40.x86_64                         31/258 
  Installing       : lttng-ust-2.13.7-3.fc40.x86_64                      32/258 
  Installing       : orc-0.4.39-1.fc40.x86_64                            33/258 
  Installing       : libwayland-server-1.23.0-2.fc40.x86_64              34/258 
  Installing       : libwayland-egl-1.23.0-2.fc40.x86_64                 35/258 
  Installing       : libbpf-2:1.2.3-1.fc40.x86_64                        36/258 
  Installing       : bluez-libs-5.78-1.fc40.x86_64                       37/258 
  Installing       : libunwind-1.8.0-3.fc40.x86_64                       38/258 
  Installing       : gperftools-libs-2.14-4.fc40.x86_64                  39/258 
  Installing       : gstreamer1-1.24.8-1.fc40.x86_64                     40/258 
  Installing       : libgfxdr0-11.1-3.fc40.x86_64                        41/258 
  Installing       : libglusterfs0-11.1-3.fc40.x86_64                    42/258 
  Installing       : libgfrpc0-11.1-3.fc40.x86_64                        43/258 
  Installing       : libtdb-1.4.10-1.fc40.x86_64                         44/258 
  Installing       : libraw1394-2.1.2-20.fc40.x86_64                     45/258 
  Installing       : libgudev-238-5.fc40.x86_64                          46/258 
  Installing       : libglvnd-1:1.7.0-4.fc40.x86_64                      47/258 
  Installing       : e2fsprogs-libs-1.47.0-5.fc40.x86_64                 48/258 
  Installing       : duktape-2.7.0-7.fc40.x86_64                         49/258 
  Running scriptlet: polkit-124-2.fc40.x86_64                            50/258 
  Installing       : polkit-124-2.fc40.x86_64                            50/258 
  Running scriptlet: polkit-124-2.fc40.x86_64                            50/258 
  Installing       : polkit-pkla-compat-0.1-28.fc40.x86_64               51/258 
  Running scriptlet: rtkit-0.11-63.fc40.x86_64                           52/258 
  Installing       : rtkit-0.11-63.fc40.x86_64                           52/258 
  Running scriptlet: rtkit-0.11-63.fc40.x86_64                           52/258 
Created symlink /etc/systemd/system/graphical.target.wants/rtkit-daemon.service → /usr/lib/systemd/system/rtkit-daemon.service.

  Installing       : libproxy-0.5.5-1.fc40.x86_64                        53/258 
  Installing       : libiec61883-1.2.0-34.fc40.x86_64                    54/258 
  Installing       : glusterfs-client-xlators-11.1-3.fc40.x86_64         55/258 
  Installing       : libgfapi0-11.1-3.fc40.x86_64                        56/258 
  Installing       : libxdp-1.4.2-1.fc40.x86_64                          57/258 
  Installing       : ndctl-libs-79-1.fc40.x86_64                         58/258 
  Installing       : libpmem-2.0.1-3.fc40.x86_64                         59/258 
  Installing       : libpciaccess-0.16-12.fc40.x86_64                    60/258 
  Installing       : libdrm-2.4.123-1.fc40.x86_64                        61/258 
  Installing       : mesa-va-drivers-24.1.7-1.fc40.x86_64                62/258 
  Installing       : vulkan-loader-1.3.290.0-1.fc40.x86_64               63/258 
  Installing       : mesa-vulkan-drivers-24.1.7-1.fc40.x86_64            64/258 
  Installing       : osinfo-db-20240701-1.fc40.noarch                    65/258 
  Installing       : libiscsi-1.20.0-1.fc40.x86_64                       66/258 
  Running scriptlet: libiscsi-1.20.0-1.fc40.x86_64                       66/258 
  Installing       : libusbmuxd-2.0.2^20230620git8d30a55-5.fc40.x86_6    67/258 
  Running scriptlet: usbmuxd-1.1.1^20230720git61b99ab-2.fc40.x86_64      68/258 
  Installing       : usbmuxd-1.1.1^20230720git61b99ab-2.fc40.x86_64      68/258 
  Running scriptlet: usbmuxd-1.1.1^20230720git61b99ab-2.fc40.x86_64      68/258 
  Installing       : libimobiledevice-1.3.0^20230705git6fc41f5-4.fc40    69/258 
  Installing       : device-mapper-multipath-libs-0.9.7-7.fc40.x86_64    70/258 
  Installing       : qemu-pr-helper-2:8.2.7-1.fc40.x86_64                71/258 
  Installing       : flac-libs-1.4.3-4.fc40.x86_64                       72/258 
  Installing       : libtheora-1:1.1.1-36.fc40.x86_64                    73/258 
  Installing       : usbredir-0.13.0-4.fc40.x86_64                       74/258 
  Installing       : libgusb-0.4.9-1.fc40.x86_64                         75/258 
  Installing       : colord-libs-1.4.7-3.fc40.x86_64                     76/258 
  Installing       : libXcursor-1.2.1-7.fc40.x86_64                      77/258 
  Installing       : libXdamage-1.1.6-3.fc40.x86_64                      78/258 
  Installing       : exiv2-libs-0.27.6-7.fc40.x86_64                     79/258 
  Installing       : exiv2-0.27.6-7.fc40.x86_64                          80/258 
  Installing       : libgexiv2-0.14.3-1.fc40.x86_64                      81/258 
  Installing       : xxhash-libs-0.8.2-4.fc40.x86_64                     82/258 
  Installing       : xen-licenses-4.18.3-2.fc40.x86_64                   83/258 
  Installing       : vte-profile-0.76.4-1.fc40.x86_64                    84/258 
  Installing       : pcre2-utf32-10.44-1.fc40.x86_64                     85/258 
  Installing       : brltty-6.6-13.fc40.x86_64                           86/258 
  Running scriptlet: brltty-6.6-13.fc40.x86_64                           86/258 
  Running scriptlet: brlapi-0.8.5-13.fc40.x86_64                         87/258 
  Installing       : brlapi-0.8.5-13.fc40.x86_64                         87/258 
  Running scriptlet: brlapi-0.8.5-13.fc40.x86_64                         87/258 
  Installing       : libxslt-1.1.42-1.fc40.x86_64                        88/258 
  Installing       : liblc3-1.1.1-1.fc40.x86_64                          89/258 
  Installing       : libgsf-1.14.53-1.fc40.x86_64                        90/258 
  Installing       : libdb-5.3.28-62.fc40.x86_64                         91/258 
  Installing       : libblkio-1.5.0-1.fc40.x86_64                        92/258 
  Installing       : gtk-update-icon-cache-3.24.43-1.fc40.x86_64         93/258 
  Installing       : gobject-introspection-1.80.1-1.fc40.x86_64          94/258 
  Installing       : upower-libs-1.90.6-1.fc40.x86_64                    95/258 
  Installing       : upower-1.90.6-1.fc40.x86_64                         96/258 
  Running scriptlet: upower-1.90.6-1.fc40.x86_64                         96/258 
Created symlink /etc/systemd/system/graphical.target.wants/upower.service → /usr/lib/systemd/system/upower.service.

  Installing       : edk2-ovmf-20240813-1.fc40.noarch                    97/258 
  Installing       : avif-pixbuf-loader-1.0.4-3.fc40.x86_64              98/258 
  Installing       : adwaita-icon-theme-legacy-46.2-1.fc40.noarch        99/258 
  Installing       : adwaita-cursor-theme-46.2-2.fc40.noarch            100/258 
  Installing       : adwaita-icon-theme-46.2-2.fc40.noarch              101/258 
  Installing       : NetworkManager-libnm-1:1.46.2-1.fc40.x86_64        102/258 
  Installing       : yajl-2.1.0-23.fc40.x86_64                          103/258 
  Installing       : xen-libs-4.18.3-2.fc40.x86_64                      104/258 
  Installing       : xprop-1.2.7-1.fc40.x86_64                          105/258 
  Installing       : at-spi2-core-2.52.0-1.fc40.x86_64                  106/258 
  Installing       : atk-2.52.0-1.fc40.x86_64                           107/258 
  Installing       : at-spi2-atk-2.52.0-1.fc40.x86_64                   108/258 
  Installing       : xkeyboard-config-2.41-1.fc40.noarch                109/258 
  Installing       : libxkbcommon-1.6.0-2.fc40.x86_64                   110/258 
  Installing       : webrtc-audio-processing-1.3-1.fc40.x86_64          111/258 
  Installing       : webp-pixbuf-loader-0.2.7-1.fc40.x86_64             112/258 
  Installing       : gdk-pixbuf2-modules-2.42.10-8.fc40.x86_64          113/258 
  Installing       : uchardet-0.0.8-5.fc40.x86_64                       114/258 
  Installing       : totem-pl-parser-3.26.6-9.fc40.x86_64               115/258 
  Installing       : thrift-0.15.0-4.fc40.x86_64                        116/258 
  Installing       : librados2-2:18.2.4-2.fc40.x86_64                   117/258 
  Installing       : librbd1-2:18.2.4-2.fc40.x86_64                     118/258 
  Installing       : sound-theme-freedesktop-0.8-21.fc40.noarch         119/258 
  Running scriptlet: sound-theme-freedesktop-0.8-21.fc40.noarch         119/258 
  Installing       : snappy-1.1.10-4.fc40.x86_64                        120/258 
  Installing       : seavgabios-bin-1.16.3-2.fc40.noarch                121/258 
  Installing       : seabios-bin-1.16.3-2.fc40.noarch                   122/258 
  Installing       : rutabaga-gfx-ffi-0.1.2-3.20230913gitc3ad0e43e.fc   123/258 
  Installing       : pcsc-lite-libs-2.0.3-1.fc40.x86_64                 124/258 
  Installing       : libcacard-3:2.8.1-8.fc40.x86_64                    125/258 
  Installing       : mpg123-libs-1.31.3-4.fc40.x86_64                   126/258 
  Installing       : lzo-2.10-12.fc40.x86_64                            127/258 
  Installing       : low-memory-monitor-2.1-10.fc40.x86_64              128/258 
  Running scriptlet: low-memory-monitor-2.1-10.fc40.x86_64              128/258 
  Installing       : lm_sensors-libs-3.6.0-18.fc40.x86_64               129/258 
  Installing       : mesa-libglapi-24.1.7-1.fc40.x86_64                 130/258 
  Installing       : mesa-dri-drivers-24.1.7-1.fc40.x86_64              131/258 
  Installing       : mesa-libgbm-24.1.7-1.fc40.x86_64                   132/258 
  Installing       : libglvnd-egl-1:1.7.0-4.fc40.x86_64                 133/258 
  Installing       : mesa-libEGL-24.1.7-1.fc40.x86_64                   134/258 
  Installing       : libvisual-1:0.4.1-4.fc40.x86_64                    135/258 
  Installing       : libstemmer-2.2.0-10.fc40.x86_64                    136/258 
  Installing       : libss-1.47.0-5.fc40.x86_64                         137/258 
  Installing       : libslirp-4.7.0-6.fc40.x86_64                       138/258 
  Installing       : libsigc++20-2.12.1-2.fc40.x86_64                   139/258 
  Installing       : glibmm2.4-2.66.7-1.fc40.x86_64                     140/258 
  Installing       : libxml++-2.42.3-3.fc40.x86_64                      141/258 
  Installing       : libsbc-2.0-4.fc40.x86_64                           142/258 
  Installing       : libsamplerate-0.2.2-8.fc40.x86_64                  143/258 
  Installing       : libnotify-0.8.3-3.fc40.x86_64                      144/258 
  Installing       : libnfs-5.0.3-1.fc40.x86_64                         145/258 
  Installing       : libldac-2.0.2.3-15.fc40.x86_64                     146/258 
  Installing       : libiptcdata-1.0.5-17.fc40.x86_64                   147/258 
  Installing       : libgxps-0.3.2-8.fc40.x86_64                        148/258 
  Installing       : libfdt-1.7.0-7.fc40.x86_64                         149/258 
  Installing       : libexif-0.6.24-7.fc40.x86_64                       150/258 
  Installing       : libcue-2.3.0-3.fc40.x86_64                         151/258 
  Installing       : libconfig-1.7.3-8.fc40.x86_64                      152/258 
  Installing       : libffado-2.4.8-4.fc40.x86_64                       153/258 
  Running scriptlet: jack-audio-connection-kit-1.9.22-5.fc40.x86_64     154/258 
  Installing       : jack-audio-connection-kit-1.9.22-5.fc40.x86_64     154/258 
  Installing       : libcloudproviders-0.3.5-3.fc40.x86_64              155/258 
  Installing       : libasyncns-0.8-28.fc40.x86_64                      156/258 
  Installing       : libXxf86vm-1.1.5-6.fc40.x86_64                     157/258 
  Installing       : libglvnd-glx-1:1.7.0-4.fc40.x86_64                 158/258 
  Installing       : mesa-libGL-24.1.7-1.fc40.x86_64                    159/258 
  Installing       : libva-2.21.0-3.fc40.x86_64                         160/258 
  Installing       : virglrenderer-1.0.1-2.fc40.x86_64                  161/258 
  Installing       : libXv-1.0.12-3.fc40.x86_64                         162/258 
  Installing       : libXrandr-1.5.4-3.fc40.x86_64                      163/258 
  Installing       : libXinerama-1.1.5-6.fc40.x86_64                    164/258 
  Installing       : libXcomposite-0.4.6-3.fc40.x86_64                  165/258 
  Installing       : lame-libs-3.100-17.fc40.x86_64                     166/258 
  Installing       : iso-codes-4.16.0-3.fc40.noarch                     167/258 
  Installing       : ipxe-roms-qemu-20240119-1.gitde8a0821.fc40.noarc   168/258 
  Installing       : qemu-common-2:8.2.7-1.fc40.x86_64                  169/258 
  Running scriptlet: qemu-common-2:8.2.7-1.fc40.x86_64                  169/258 
  Installing       : qemu-device-display-virtio-gpu-2:8.2.7-1.fc40.x8   170/258 
  Installing       : qemu-ui-opengl-2:8.2.7-1.fc40.x86_64               171/258 
  Installing       : qemu-device-display-virtio-gpu-pci-2:8.2.7-1.fc4   172/258 
  Installing       : qemu-device-display-virtio-vga-2:8.2.7-1.fc40.x8   173/258 
  Installing       : qemu-device-display-virtio-gpu-gl-2:8.2.7-1.fc40   174/258 
  Installing       : qemu-device-display-virtio-gpu-pci-gl-2:8.2.7-1.   175/258 
  Installing       : qemu-device-display-virtio-vga-gl-2:8.2.7-1.fc40   176/258 
  Installing       : qemu-device-display-virtio-vga-rutabaga-2:8.2.7-   177/258 
  Installing       : qemu-device-display-virtio-gpu-pci-rutabaga-2:8.   178/258 
  Installing       : qemu-ui-egl-headless-2:8.2.7-1.fc40.x86_64         179/258 
  Installing       : qemu-device-display-virtio-gpu-ccw-2:8.2.7-1.fc4   180/258 
  Installing       : qemu-device-display-virtio-gpu-rutabaga-2:8.2.7-   181/258 
  Installing       : virtiofsd-1.10.1-1.fc40.x86_64                     182/258 
  Installing       : qemu-audio-alsa-2:8.2.7-1.fc40.x86_64              183/258 
  Installing       : qemu-audio-dbus-2:8.2.7-1.fc40.x86_64              184/258 
  Installing       : qemu-audio-jack-2:8.2.7-1.fc40.x86_64              185/258 
  Installing       : qemu-audio-oss-2:8.2.7-1.fc40.x86_64               186/258 
  Installing       : qemu-block-blkio-2:8.2.7-1.fc40.x86_64             187/258 
  Installing       : qemu-block-curl-2:8.2.7-1.fc40.x86_64              188/258 
  Installing       : qemu-block-dmg-2:8.2.7-1.fc40.x86_64               189/258 
  Installing       : qemu-block-gluster-2:8.2.7-1.fc40.x86_64           190/258 
  Installing       : qemu-block-iscsi-2:8.2.7-1.fc40.x86_64             191/258 
  Installing       : qemu-block-nfs-2:8.2.7-1.fc40.x86_64               192/258 
  Installing       : qemu-block-rbd-2:8.2.7-1.fc40.x86_64               193/258 
  Installing       : qemu-block-ssh-2:8.2.7-1.fc40.x86_64               194/258 
  Installing       : qemu-char-baum-2:8.2.7-1.fc40.x86_64               195/258 
  Installing       : qemu-device-display-vhost-user-gpu-2:8.2.7-1.fc4   196/258 
  Installing       : qemu-device-usb-host-2:8.2.7-1.fc40.x86_64         197/258 
  Installing       : qemu-device-usb-redirect-2:8.2.7-1.fc40.x86_64     198/258 
  Installing       : qemu-device-usb-smartcard-2:8.2.7-1.fc40.x86_64    199/258 
  Installing       : qemu-ui-curses-2:8.2.7-1.fc40.x86_64               200/258 
  Installing       : hicolor-icon-theme-0.17-18.fc40.noarch             201/258 
  Installing       : gsm-1.0.22-6.fc40.x86_64                           202/258 
  Installing       : libsndfile-1.2.2-2.fc40.x86_64                     203/258 
  Installing       : pulseaudio-libs-16.1-8.fc40.x86_64                 204/258 
  Installing       : libcanberra-0.30-35.fc40.x86_64                    205/258 
  Running scriptlet: libcanberra-0.30-35.fc40.x86_64                    205/258 
  Installing       : qemu-audio-pa-2:8.2.7-1.fc40.x86_64                206/258 
  Installing       : graphene-1.10.6-8.fc40.x86_64                      207/258 
  Installing       : giflib-5.2.2-1.fc40.x86_64                         208/258 
  Installing       : fuse-common-3.16.2-3.fc40.x86_64                   209/258 
  Installing       : fuse3-3.16.2-3.fc40.x86_64                         210/258 
  Installing       : fdk-aac-free-2.0.0-13.fc40.x86_64                  211/258 
  Installing       : wireplumber-0.5.5-1.fc40.x86_64                    212/258 
  Installing       : wireplumber-libs-0.5.5-1.fc40.x86_64               213/258 
  Installing       : pipewire-libs-1.0.8-1.fc40.x86_64                  214/258 
  Running scriptlet: pipewire-1.0.8-1.fc40.x86_64                       215/258 
  Installing       : pipewire-1.0.8-1.fc40.x86_64                       215/258 
  Running scriptlet: pipewire-1.0.8-1.fc40.x86_64                       215/258 
Created symlink /etc/systemd/user/sockets.target.wants/pipewire.socket → /usr/lib/systemd/user/pipewire.socket.

  Installing       : qemu-audio-pipewire-2:8.2.7-1.fc40.x86_64          216/258 
  Installing       : exempi-2.6.4-5.fc40.x86_64                         217/258 
  Installing       : dconf-0.40.0-12.fc40.x86_64                        218/258 
  Running scriptlet: dconf-0.40.0-12.fc40.x86_64                        218/258 
  Installing       : cdparanoia-libs-10.2-44.fc40.x86_64                219/258 
  Installing       : gstreamer1-plugins-base-1.24.8-1.fc40.x86_64       220/258 
  Installing       : spice-server-0.15.1-4.fc40.x86_64                  221/258 
  Installing       : qemu-ui-spice-core-2:8.2.7-1.fc40.x86_64           222/258 
  Installing       : qemu-char-spice-2:8.2.7-1.fc40.x86_64              223/258 
  Installing       : qemu-ui-spice-app-2:8.2.7-1.fc40.x86_64            224/258 
  Installing       : qemu-audio-spice-2:8.2.7-1.fc40.x86_64             225/258 
  Installing       : qemu-device-display-qxl-2:8.2.7-1.fc40.x86_64      226/258 
  Installing       : capstone-5.0.1-3.fc40.x86_64                       227/258 
  Installing       : qemu-system-x86-core-2:8.2.7-1.fc40.x86_64         228/258 
  Installing       : adobe-source-code-pro-fonts-2.042.1.062.1.026-4.   229/258 
  Installing       : gsettings-desktop-schemas-46.1-1.fc40.x86_64       230/258 
  Installing       : glib-networking-2.80.0-1.fc40.x86_64               231/258 
  Installing       : libsoup3-3.4.4-3.fc40.x86_64                       232/258 
  Installing       : osinfo-db-tools-1.11.0-5.fc40.x86_64               233/258 
  Installing       : libosinfo-1.11.0-5.fc40.x86_64                     234/258 
  Installing       : libsoup-2.74.3-6.fc40.x86_64                       235/258 
  Installing       : libgrss-0.7.0-19.fc40.x86_64                       236/258 
  Installing       : tracker-3.7.3-1.fc40.x86_64                        237/258 
  Running scriptlet: tracker-3.7.3-1.fc40.x86_64                        237/258 
  Installing       : libtracker-sparql-3.7.3-1.fc40.x86_64              238/258 
  Installing       : tracker-miners-3.7.3-1.fc40.x86_64                 239/258 
  Running scriptlet: tracker-miners-3.7.3-1.fc40.x86_64                 239/258 
Failed to preset unit, unit tracker-extract-3.service does not exist.

  Installing       : ModemManager-glib-1.22.0-3.fc40.x86_64             240/258 
  Running scriptlet: geoclue2-2.7.0-5.fc40.x86_64                       241/258 
  Installing       : geoclue2-2.7.0-5.fc40.x86_64                       241/258 
  Running scriptlet: geoclue2-2.7.0-5.fc40.x86_64                       241/258 
  Installing       : xdg-desktop-portal-1.18.4-1.fc40.x86_64            242/258 
  Running scriptlet: xdg-desktop-portal-1.18.4-1.fc40.x86_64            242/258 
  Installing       : libcanberra-gtk3-0.30-35.fc40.x86_64               243/258 
  Installing       : gtk3-3.24.43-1.fc40.x86_64                         244/258 
  Installing       : xdg-desktop-portal-gtk-1.15.1-5.fc40.x86_64        245/258 
  Running scriptlet: xdg-desktop-portal-gtk-1.15.1-5.fc40.x86_64        245/258 
  Installing       : libdecor-0.2.2-3.fc40.x86_64                       246/258 
  Installing       : SDL2-2.30.3-1.fc40.x86_64                          247/258 
  Installing       : SDL2_image-2.8.2-4.fc40.x86_64                     248/258 
  Installing       : qemu-ui-sdl-2:8.2.7-1.fc40.x86_64                  249/258 
  Installing       : qemu-audio-sdl-2:8.2.7-1.fc40.x86_64               250/258 
  Installing       : vte291-0.76.4-1.fc40.x86_64                        251/258 
  Installing       : qemu-ui-gtk-2:8.2.7-1.fc40.x86_64                  252/258 
  Installing       : qemu-system-x86-2:8.2.7-1.fc40.x86_64              253/258 
  Installing       : pipewire-alsa-1.0.8-1.fc40.x86_64                  254/258 
  Installing       : pipewire-pulseaudio-1.0.8-1.fc40.x86_64            255/258 
  Running scriptlet: pipewire-pulseaudio-1.0.8-1.fc40.x86_64            255/258 
Created symlink /etc/systemd/user/sockets.target.wants/pipewire-pulse.socket → /usr/lib/systemd/user/pipewire-pulse.socket.

  Installing       : e2fsprogs-1.47.0-5.fc40.x86_64                     256/258 
  Installing       : rsync-3.3.0-1.fc40.x86_64                          257/258 
  Installing       : qemu-img-2:8.2.7-1.fc40.x86_64                     258/258 
  Running scriptlet: wireplumber-0.5.5-1.fc40.x86_64                    258/258 
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-12.fc40.x86_64                        258/258 
  Running scriptlet: qemu-img-2:8.2.7-1.fc40.x86_64                     258/258 

Installed:
  ModemManager-glib-1.22.0-3.fc40.x86_64                                        
  NetworkManager-libnm-1:1.46.2-1.fc40.x86_64                                   
  SDL2-2.30.3-1.fc40.x86_64                                                     
  SDL2_image-2.8.2-4.fc40.x86_64                                                
  adobe-source-code-pro-fonts-2.042.1.062.1.026-4.fc40.noarch                   
  adwaita-cursor-theme-46.2-2.fc40.noarch                                       
  adwaita-icon-theme-46.2-2.fc40.noarch                                         
  adwaita-icon-theme-legacy-46.2-1.fc40.noarch                                  
  alsa-lib-1.2.12-1.fc40.x86_64                                                 
  at-spi2-atk-2.52.0-1.fc40.x86_64                                              
  at-spi2-core-2.52.0-1.fc40.x86_64                                             
  atk-2.52.0-1.fc40.x86_64                                                      
  avahi-glib-0.8-26.fc40.x86_64                                                 
  avif-pixbuf-loader-1.0.4-3.fc40.x86_64                                        
  bluez-libs-5.78-1.fc40.x86_64                                                 
  brlapi-0.8.5-13.fc40.x86_64                                                   
  brltty-6.6-13.fc40.x86_64                                                     
  capstone-5.0.1-3.fc40.x86_64                                                  
  cdparanoia-libs-10.2-44.fc40.x86_64                                           
  colord-libs-1.4.7-3.fc40.x86_64                                               
  daxctl-libs-79-1.fc40.x86_64                                                  
  dconf-0.40.0-12.fc40.x86_64                                                   
  device-mapper-multipath-libs-0.9.7-7.fc40.x86_64                              
  duktape-2.7.0-7.fc40.x86_64                                                   
  e2fsprogs-1.47.0-5.fc40.x86_64                                                
  e2fsprogs-libs-1.47.0-5.fc40.x86_64                                           
  edk2-ovmf-20240813-1.fc40.noarch                                              
  exempi-2.6.4-5.fc40.x86_64                                                    
  exiv2-0.27.6-7.fc40.x86_64                                                    
  exiv2-libs-0.27.6-7.fc40.x86_64                                               
  fdk-aac-free-2.0.0-13.fc40.x86_64                                             
  flac-libs-1.4.3-4.fc40.x86_64                                                 
  fuse-common-3.16.2-3.fc40.x86_64                                              
  fuse3-3.16.2-3.fc40.x86_64                                                    
  fuse3-libs-3.16.2-3.fc40.x86_64                                               
  gdk-pixbuf2-modules-2.42.10-8.fc40.x86_64                                     
  geoclue2-2.7.0-5.fc40.x86_64                                                  
  giflib-5.2.2-1.fc40.x86_64                                                    
  glib-networking-2.80.0-1.fc40.x86_64                                          
  glibmm2.4-2.66.7-1.fc40.x86_64                                                
  glusterfs-client-xlators-11.1-3.fc40.x86_64                                   
  gobject-introspection-1.80.1-1.fc40.x86_64                                    
  gperftools-libs-2.14-4.fc40.x86_64                                            
  graphene-1.10.6-8.fc40.x86_64                                                 
  gsettings-desktop-schemas-46.1-1.fc40.x86_64                                  
  gsm-1.0.22-6.fc40.x86_64                                                      
  gstreamer1-1.24.8-1.fc40.x86_64                                               
  gstreamer1-plugins-base-1.24.8-1.fc40.x86_64                                  
  gtk-update-icon-cache-3.24.43-1.fc40.x86_64                                   
  gtk3-3.24.43-1.fc40.x86_64                                                    
  hicolor-icon-theme-0.17-18.fc40.noarch                                        
  hwdata-0.388-1.fc40.noarch                                                    
  ipxe-roms-qemu-20240119-1.gitde8a0821.fc40.noarch                             
  iso-codes-4.16.0-3.fc40.noarch                                                
  jack-audio-connection-kit-1.9.22-5.fc40.x86_64                                
  json-glib-1.8.0-3.fc40.x86_64                                                 
  lame-libs-3.100-17.fc40.x86_64                                                
  libX11-xcb-1.8.7-3.fc40.x86_64                                                
  libXcomposite-0.4.6-3.fc40.x86_64                                             
  libXcursor-1.2.1-7.fc40.x86_64                                                
  libXdamage-1.1.6-3.fc40.x86_64                                                
  libXfixes-6.0.1-3.fc40.x86_64                                                 
  libXi-1.8.2-1.fc40.x86_64                                                     
  libXinerama-1.1.5-6.fc40.x86_64                                               
  libXrandr-1.5.4-3.fc40.x86_64                                                 
  libXtst-1.2.5-1.fc40.x86_64                                                   
  libXv-1.0.12-3.fc40.x86_64                                                    
  libXxf86vm-1.1.5-6.fc40.x86_64                                                
  libaio-0.3.111-19.fc40.x86_64                                                 
  libasyncns-0.8-28.fc40.x86_64                                                 
  libblkio-1.5.0-1.fc40.x86_64                                                  
  libbpf-2:1.2.3-1.fc40.x86_64                                                  
  libcacard-3:2.8.1-8.fc40.x86_64                                               
  libcanberra-0.30-35.fc40.x86_64                                               
  libcanberra-gtk3-0.30-35.fc40.x86_64                                          
  libcloudproviders-0.3.5-3.fc40.x86_64                                         
  libconfig-1.7.3-8.fc40.x86_64                                                 
  libcue-2.3.0-3.fc40.x86_64                                                    
  libdb-5.3.28-62.fc40.x86_64                                                   
  libdecor-0.2.2-3.fc40.x86_64                                                  
  libdrm-2.4.123-1.fc40.x86_64                                                  
  libepoxy-1.5.10-6.fc40.x86_64                                                 
  libexif-0.6.24-7.fc40.x86_64                                                  
  libfdt-1.7.0-7.fc40.x86_64                                                    
  libffado-2.4.8-4.fc40.x86_64                                                  
  libgexiv2-0.14.3-1.fc40.x86_64                                                
  libgfapi0-11.1-3.fc40.x86_64                                                  
  libgfrpc0-11.1-3.fc40.x86_64                                                  
  libgfxdr0-11.1-3.fc40.x86_64                                                  
  libglusterfs0-11.1-3.fc40.x86_64                                              
  libglvnd-1:1.7.0-4.fc40.x86_64                                                
  libglvnd-egl-1:1.7.0-4.fc40.x86_64                                            
  libglvnd-glx-1:1.7.0-4.fc40.x86_64                                            
  libgrss-0.7.0-19.fc40.x86_64                                                  
  libgsf-1.14.53-1.fc40.x86_64                                                  
  libgudev-238-5.fc40.x86_64                                                    
  libgusb-0.4.9-1.fc40.x86_64                                                   
  libgxps-0.3.2-8.fc40.x86_64                                                   
  libibverbs-48.0-4.fc40.x86_64                                                 
  libicu-74.2-1.fc40.x86_64                                                     
  libiec61883-1.2.0-34.fc40.x86_64                                              
  libimobiledevice-1.3.0^20230705git6fc41f5-4.fc40.x86_64                       
  libimobiledevice-glue-1.0.0-3.fc40.x86_64                                     
  libiptcdata-1.0.5-17.fc40.x86_64                                              
  libiscsi-1.20.0-1.fc40.x86_64                                                 
  liblc3-1.1.1-1.fc40.x86_64                                                    
  libldac-2.0.2.3-15.fc40.x86_64                                                
  libnfs-5.0.3-1.fc40.x86_64                                                    
  libnl3-3.10.0-1.fc40.x86_64                                                   
  libnotify-0.8.3-3.fc40.x86_64                                                 
  libogg-2:1.3.5-8.fc40.x86_64                                                  
  libosinfo-1.11.0-5.fc40.x86_64                                                
  libpciaccess-0.16-12.fc40.x86_64                                              
  libplist-2.3.0-4.fc40.x86_64                                                  
  libpmem-2.0.1-3.fc40.x86_64                                                   
  libproxy-0.5.5-1.fc40.x86_64                                                  
  librados2-2:18.2.4-2.fc40.x86_64                                              
  libraw1394-2.1.2-20.fc40.x86_64                                               
  librbd1-2:18.2.4-2.fc40.x86_64                                                
  librdmacm-48.0-4.fc40.x86_64                                                  
  libsamplerate-0.2.2-8.fc40.x86_64                                             
  libsbc-2.0-4.fc40.x86_64                                                      
  libsigc++20-2.12.1-2.fc40.x86_64                                              
  libslirp-4.7.0-6.fc40.x86_64                                                  
  libsndfile-1.2.2-2.fc40.x86_64                                                
  libsoup-2.74.3-6.fc40.x86_64                                                  
  libsoup3-3.4.4-3.fc40.x86_64                                                  
  libss-1.47.0-5.fc40.x86_64                                                    
  libstemmer-2.2.0-10.fc40.x86_64                                               
  libtdb-1.4.10-1.fc40.x86_64                                                   
  libtheora-1:1.1.1-36.fc40.x86_64                                              
  libtracker-sparql-3.7.3-1.fc40.x86_64                                         
  libunwind-1.8.0-3.fc40.x86_64                                                 
  liburing-2.5-3.fc40.x86_64                                                    
  libusb1-1.0.27-2.fc40.x86_64                                                  
  libusbmuxd-2.0.2^20230620git8d30a55-5.fc40.x86_64                             
  libva-2.21.0-3.fc40.x86_64                                                    
  libvisual-1:0.4.1-4.fc40.x86_64                                               
  libvorbis-1:1.3.7-10.fc40.x86_64                                              
  libwayland-client-1.23.0-2.fc40.x86_64                                        
  libwayland-cursor-1.23.0-2.fc40.x86_64                                        
  libwayland-egl-1.23.0-2.fc40.x86_64                                           
  libwayland-server-1.23.0-2.fc40.x86_64                                        
  libxdp-1.4.2-1.fc40.x86_64                                                    
  libxkbcommon-1.6.0-2.fc40.x86_64                                              
  libxml++-2.42.3-3.fc40.x86_64                                                 
  libxshmfence-1.3.2-3.fc40.x86_64                                              
  libxslt-1.1.42-1.fc40.x86_64                                                  
  llvm-libs-18.1.8-2.fc40.x86_64                                                
  lm_sensors-libs-3.6.0-18.fc40.x86_64                                          
  low-memory-monitor-2.1-10.fc40.x86_64                                         
  lttng-ust-2.13.7-3.fc40.x86_64                                                
  lzo-2.10-12.fc40.x86_64                                                       
  mesa-dri-drivers-24.1.7-1.fc40.x86_64                                         
  mesa-filesystem-24.1.7-1.fc40.x86_64                                          
  mesa-libEGL-24.1.7-1.fc40.x86_64                                              
  mesa-libGL-24.1.7-1.fc40.x86_64                                               
  mesa-libgbm-24.1.7-1.fc40.x86_64                                              
  mesa-libglapi-24.1.7-1.fc40.x86_64                                            
  mesa-va-drivers-24.1.7-1.fc40.x86_64                                          
  mesa-vulkan-drivers-24.1.7-1.fc40.x86_64                                      
  mpg123-libs-1.31.3-4.fc40.x86_64                                              
  ndctl-libs-79-1.fc40.x86_64                                                   
  numactl-libs-2.0.16-5.fc40.x86_64                                             
  opus-1.5.1-1.fc40.x86_64                                                      
  orc-0.4.39-1.fc40.x86_64                                                      
  osinfo-db-20240701-1.fc40.noarch                                              
  osinfo-db-tools-1.11.0-5.fc40.x86_64                                          
  pcre2-utf32-10.44-1.fc40.x86_64                                               
  pcsc-lite-libs-2.0.3-1.fc40.x86_64                                            
  pipewire-1.0.8-1.fc40.x86_64                                                  
  pipewire-alsa-1.0.8-1.fc40.x86_64                                             
  pipewire-libs-1.0.8-1.fc40.x86_64                                             
  pipewire-pulseaudio-1.0.8-1.fc40.x86_64                                       
  polkit-124-2.fc40.x86_64                                                      
  polkit-libs-124-2.fc40.x86_64                                                 
  polkit-pkla-compat-0.1-28.fc40.x86_64                                         
  pulseaudio-libs-16.1-8.fc40.x86_64                                            
  qemu-audio-alsa-2:8.2.7-1.fc40.x86_64                                         
  qemu-audio-dbus-2:8.2.7-1.fc40.x86_64                                         
  qemu-audio-jack-2:8.2.7-1.fc40.x86_64                                         
  qemu-audio-oss-2:8.2.7-1.fc40.x86_64                                          
  qemu-audio-pa-2:8.2.7-1.fc40.x86_64                                           
  qemu-audio-pipewire-2:8.2.7-1.fc40.x86_64                                     
  qemu-audio-sdl-2:8.2.7-1.fc40.x86_64                                          
  qemu-audio-spice-2:8.2.7-1.fc40.x86_64                                        
  qemu-block-blkio-2:8.2.7-1.fc40.x86_64                                        
  qemu-block-curl-2:8.2.7-1.fc40.x86_64                                         
  qemu-block-dmg-2:8.2.7-1.fc40.x86_64                                          
  qemu-block-gluster-2:8.2.7-1.fc40.x86_64                                      
  qemu-block-iscsi-2:8.2.7-1.fc40.x86_64                                        
  qemu-block-nfs-2:8.2.7-1.fc40.x86_64                                          
  qemu-block-rbd-2:8.2.7-1.fc40.x86_64                                          
  qemu-block-ssh-2:8.2.7-1.fc40.x86_64                                          
  qemu-char-baum-2:8.2.7-1.fc40.x86_64                                          
  qemu-char-spice-2:8.2.7-1.fc40.x86_64                                         
  qemu-common-2:8.2.7-1.fc40.x86_64                                             
  qemu-device-display-qxl-2:8.2.7-1.fc40.x86_64                                 
  qemu-device-display-vhost-user-gpu-2:8.2.7-1.fc40.x86_64                      
  qemu-device-display-virtio-gpu-2:8.2.7-1.fc40.x86_64                          
  qemu-device-display-virtio-gpu-ccw-2:8.2.7-1.fc40.x86_64                      
  qemu-device-display-virtio-gpu-gl-2:8.2.7-1.fc40.x86_64                       
  qemu-device-display-virtio-gpu-pci-2:8.2.7-1.fc40.x86_64                      
  qemu-device-display-virtio-gpu-pci-gl-2:8.2.7-1.fc40.x86_64                   
  qemu-device-display-virtio-gpu-pci-rutabaga-2:8.2.7-1.fc40.x86_64             
  qemu-device-display-virtio-gpu-rutabaga-2:8.2.7-1.fc40.x86_64                 
  qemu-device-display-virtio-vga-2:8.2.7-1.fc40.x86_64                          
  qemu-device-display-virtio-vga-gl-2:8.2.7-1.fc40.x86_64                       
  qemu-device-display-virtio-vga-rutabaga-2:8.2.7-1.fc40.x86_64                 
  qemu-device-usb-host-2:8.2.7-1.fc40.x86_64                                    
  qemu-device-usb-redirect-2:8.2.7-1.fc40.x86_64                                
  qemu-device-usb-smartcard-2:8.2.7-1.fc40.x86_64                               
  qemu-img-2:8.2.7-1.fc40.x86_64                                                
  qemu-pr-helper-2:8.2.7-1.fc40.x86_64                                          
  qemu-system-x86-2:8.2.7-1.fc40.x86_64                                         
  qemu-system-x86-core-2:8.2.7-1.fc40.x86_64                                    
  qemu-ui-curses-2:8.2.7-1.fc40.x86_64                                          
  qemu-ui-egl-headless-2:8.2.7-1.fc40.x86_64                                    
  qemu-ui-gtk-2:8.2.7-1.fc40.x86_64                                             
  qemu-ui-opengl-2:8.2.7-1.fc40.x86_64                                          
  qemu-ui-sdl-2:8.2.7-1.fc40.x86_64                                             
  qemu-ui-spice-app-2:8.2.7-1.fc40.x86_64                                       
  qemu-ui-spice-core-2:8.2.7-1.fc40.x86_64                                      
  rsync-3.3.0-1.fc40.x86_64                                                     
  rtkit-0.11-63.fc40.x86_64                                                     
  rutabaga-gfx-ffi-0.1.2-3.20230913gitc3ad0e43e.fc40.x86_64                     
  seabios-bin-1.16.3-2.fc40.noarch                                              
  seavgabios-bin-1.16.3-2.fc40.noarch                                           
  snappy-1.1.10-4.fc40.x86_64                                                   
  sound-theme-freedesktop-0.8-21.fc40.noarch                                    
  spice-server-0.15.1-4.fc40.x86_64                                             
  thrift-0.15.0-4.fc40.x86_64                                                   
  totem-pl-parser-3.26.6-9.fc40.x86_64                                          
  tracker-3.7.3-1.fc40.x86_64                                                   
  tracker-miners-3.7.3-1.fc40.x86_64                                            
  uchardet-0.0.8-5.fc40.x86_64                                                  
  upower-1.90.6-1.fc40.x86_64                                                   
  upower-libs-1.90.6-1.fc40.x86_64                                              
  usbmuxd-1.1.1^20230720git61b99ab-2.fc40.x86_64                                
  usbredir-0.13.0-4.fc40.x86_64                                                 
  userspace-rcu-0.14.0-4.fc40.x86_64                                            
  virglrenderer-1.0.1-2.fc40.x86_64                                             
  virtiofsd-1.10.1-1.fc40.x86_64                                                
  vte-profile-0.76.4-1.fc40.x86_64                                              
  vte291-0.76.4-1.fc40.x86_64                                                   
  vulkan-loader-1.3.290.0-1.fc40.x86_64                                         
  webp-pixbuf-loader-0.2.7-1.fc40.x86_64                                        
  webrtc-audio-processing-1.3-1.fc40.x86_64                                     
  wireplumber-0.5.5-1.fc40.x86_64                                               
  wireplumber-libs-0.5.5-1.fc40.x86_64                                          
  xdg-desktop-portal-1.18.4-1.fc40.x86_64                                       
  xdg-desktop-portal-gtk-1.15.1-5.fc40.x86_64                                   
  xen-libs-4.18.3-2.fc40.x86_64                                                 
  xen-licenses-4.18.3-2.fc40.x86_64                                             
  xkeyboard-config-2.41-1.fc40.noarch                                           
  xprop-1.2.7-1.fc40.x86_64                                                     
  xxhash-libs-0.8.2-4.fc40.x86_64                                               
  yajl-2.1.0-23.fc40.x86_64                                                     

Complete!
[#1350464] 2024/10/14 22:30:48 Cloning repositories
Cloning into 'builds.sr.ht'...
+ cd builds.sr.ht
+ git submodule update --init --recursive
[#1350464] 2024/10/14 22:30:49 Running task genimg
[#1350464] 2024/10/14 22:32:48 Running task sanity-check
[#1350464] 2024/10/14 22:33:26 Running task deploy
[#1350464] 2024/10/14 22:34:53 Processing post-success triggers...
[#1350464] 2024/10/14 22:34:53 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
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
 libevent                      x86_64 2.1.12-14.fc41               fedora 258 k
 libfdisk                      x86_64 2.40.2-4.fc41                fedora 160 k
 libffi                        x86_64 3.4.6-3.fc41                 fedora  40 k
 libfsverity                   x86_64 1.6-1.fc41                   fedora  19 k
 libgcc                        x86_64 14.2.1-3.fc41                fedora 133 k
 libgcrypt                     x86_64 1.11.0-3.fc41                fedora 579 k
 libgomp                       x86_64 14.2.1-3.fc41                fedora 354 k
 libgpg-error                  x86_64 1.50-2.fc41                  fedora 237 k
 libidn2                       x86_64 2.3.7-2.fc41                 fedora 118 k
 libksba                       x86_64 1.6.7-2.fc41                 fedora 160 k
 libmodulemd                   x86_64 2.15.0-14.fc41               fedora 232 k
 libmount                      x86_64 2.40.2-4.fc41                fedora 156 k
 libnghttp2                    x86_64 1.62.1-2.fc41                fedora  77 k
 libpkgconf                    x86_64 2.3.0-1.fc41                 fedora  38 k
 libpsl                        x86_64 0.21.5-4.fc41                fedora  64 k
 librepo                       x86_64 1.18.1-1.fc41                fedora  99 k
 libseccomp                    x86_64 2.5.5-2.fc41                 fedora  70 k
 libselinux                    x86_64 3.7-5.fc41                   fedora  88 k
 libsemanage                   x86_64 3.7-2.fc41                   fedora 116 k
 libsepol                      x86_64 3.7-2.fc41                   fedora 342 k
 libsmartcols                  x86_64 2.40.2-4.fc41                fedora  84 k
 libsolv                       x86_64 0.7.30-1.fc41                fedora 429 k
 libssh                        x86_64 0.10.6-8.fc41                fedora 212 k
 libssh-config                 noarch 0.10.6-8.fc41                fedora 9.2 k
 libstdc++                     x86_64 14.2.1-3.fc41                fedora 888 k
 libtasn1                      x86_64 4.19.0-9.fc41                fedora  74 k
 libtool-ltdl                  x86_64 2.4.7-12.fc41                fedora  36 k
 libunistring                  x86_64 1.1-8.fc41                   fedora 545 k
 libuuid                       x86_64 2.40.2-4.fc41                fedora  29 k
 libverto                      x86_64 0.3.2-9.fc41                 fedora  21 k
 libxcrypt                     x86_64 4.4.36-7.fc41                fedora 119 k
 libxml2                       x86_64 2.12.8-2.fc41                fedora 687 k
 libyaml                       x86_64 0.2.5-15.fc41                fedora  59 k
 libzstd                       x86_64 1.5.6-2.fc41                 fedora 310 k
 lua-libs                      x86_64 5.4.6-6.fc41                 fedora 132 k
 lz4-libs                      x86_64 1.10.0-1.fc41                fedora  71 k
 mpdecimal                     x86_64 2.5.1-16.fc41                fedora  89 k
 mpfr                          x86_64 4.2.1-5.fc41                 fedora 346 k
 ncurses-base                  noarch 6.5-2.20240629.fc41          fedora  88 k
 ncurses-libs                  x86_64 6.5-2.20240629.fc41          fedora 334 k
 nettle                        x86_64 3.10-3.fc41                  fedora 429 k
 npth                          x86_64 1.7-2.fc41                   fedora  25 k
 openldap                      x86_64 2.6.8-5.fc41                 fedora 256 k
 openssl-libs                  x86_64 1:3.2.2-9.fc41               fedora 2.3 M
 p11-kit                       x86_64 0.25.5-3.fc41                fedora 491 k
 p11-kit-trust                 x86_64 0.25.5-3.fc41                fedora 132 k
 pam-libs                      x86_64 1.6.1-5.fc41                 fedora  57 k
 pcre2                         x86_64 10.44-1.fc41.1               fedora 243 k
 pcre2-syntax                  noarch 10.44-1.fc41.1               fedora 150 k
 pkgconf                       x86_64 2.3.0-1.fc41                 fedora  45 k
 pkgconf-m4                    noarch 2.3.0-1.fc41                 fedora  14 k
 pkgconf-pkg-config            x86_64 2.3.0-1.fc41                 fedora  10 k
 popt                          x86_64 1.19-7.fc41                  fedora  66 k
 publicsuffix-list-dafsa       noarch 20240107-4.fc41              fedora  58 k
 python-pip-wheel              noarch 24.2-1.fc41                  fedora 1.2 M
 python3                       x86_64 3.13.0-1.fc41                fedora  28 k
 python3-dateutil              noarch 1:2.8.2-16.fc41              fedora 360 k
 python3-dbus                  x86_64 1.3.2-8.fc41                 fedora 157 k
 python3-distro                noarch 1.9.0-5.fc41                 fedora  47 k
 python3-dnf                   noarch 4.21.1-1.fc41                fedora 627 k
 python3-dnf-plugins-core      noarch 4.9.0-1.fc41                 fedora 314 k
 python3-hawkey                x86_64 0.73.3-1.fc41                fedora 105 k
 python3-libcomps              x86_64 0.1.21-3.fc41                fedora  48 k
 python3-libdnf                x86_64 0.73.3-1.fc41                fedora 847 k
 python3-libs                  x86_64 3.13.0-1.fc41                fedora 9.1 M
 python3-rpm                   x86_64 4.19.94-1.fc41               fedora  70 k
 python3-six                   noarch 1.16.0-23.fc41               fedora  41 k
 python3-systemd               x86_64 235-11.fc41                  fedora 107 k
 readline                      x86_64 8.2-10.fc41                  fedora 213 k
 rpm                           x86_64 4.19.94-1.fc41               fedora 548 k
 rpm-build-libs                x86_64 4.19.94-1.fc41               fedora  99 k
 rpm-libs                      x86_64 4.19.94-1.fc41               fedora 309 k
 rpm-sequoia                   x86_64 1.7.0-2.fc41                 fedora 892 k
 rpm-sign-libs                 x86_64 4.19.94-1.fc41               fedora  27 k
 sdbus-cpp                     x86_64 1.5.0-3.fc41                 fedora 113 k
 sed                           x86_64 4.9-3.fc41                   fedora 318 k
 setup                         noarch 2.15.0-5.fc41                fedora 154 k
 sqlite-libs                   x86_64 3.46.1-1.fc41                fedora 713 k
 systemd                       x86_64 256.7-1.fc41                 fedora 5.7 M
 systemd-libs                  x86_64 256.7-1.fc41                 fedora 731 k
 systemd-pam                   x86_64 256.7-1.fc41                 fedora 400 k
 tpm2-tss                      x86_64 4.1.3-3.fc41                 fedora 412 k
 tzdata                        noarch 2024a-9.fc41                 fedora 715 k
 util-linux-core               x86_64 2.40.2-4.fc41                fedora 537 k
 xz-libs                       x86_64 1:5.6.2-2.fc41               fedora 112 k
 zchunk-libs                   x86_64 1.5.1-1.fc41                 fedora  52 k
 zlib-ng-compat                x86_64 2.1.7-3.fc41                 fedora  78 k

Transaction Summary
================================================================================
Install  159 Packages

Total download size: 72 M
Installed size: 245 M
Downloading Packages:
(1/159): alternatives-1.30-1.fc41.x86_64.rpm    216 kB/s |  42 kB     00:00    
(2/159): basesystem-11-21.fc41.noarch.rpm        37 kB/s | 7.4 kB     00:00    
(3/159): audit-libs-4.0.2-1.fc41.x86_64.rpm     565 kB/s | 126 kB     00:00    
(4/159): bzip2-libs-1.0.8-19.fc41.x86_64.rpm    366 kB/s |  41 kB     00:00    
(5/159): bash-5.2.32-1.fc41.x86_64.rpm           11 MB/s | 1.8 MB     00:00    
(6/159): ca-certificates-2024.2.69_v8.0.401-1.0 6.0 MB/s | 871 kB     00:00    
(7/159): crypto-policies-20240826-1.gite824389. 1.8 MB/s |  94 kB     00:00    
(8/159): coreutils-9.5-10.fc41.x86_64.rpm       8.1 MB/s | 1.1 MB     00:00    
(9/159): coreutils-common-9.5-10.fc41.x86_64.rp  19 MB/s | 2.1 MB     00:00    
(10/159): cryptsetup-libs-2.7.5-1.fc41.x86_64.r 7.2 MB/s | 533 kB     00:00    
(11/159): curl-8.9.1-2.fc41.x86_64.rpm          2.8 MB/s | 315 kB     00:00    
(12/159): dbus-1.14.10-4.fc41.x86_64.rpm        112 kB/s | 7.9 kB     00:00    
(13/159): dbus-broker-36-4.fc41.x86_64.rpm      5.2 MB/s | 172 kB     00:00    
(14/159): cyrus-sasl-lib-2.1.28-27.fc41.x86_64. 6.0 MB/s | 795 kB     00:00    
(15/159): dbus-common-1.14.10-4.fc41.noarch.rpm 152 kB/s |  15 kB     00:00    
(16/159): dbus-libs-1.14.10-4.fc41.x86_64.rpm   1.7 MB/s | 155 kB     00:00    
(17/159): device-mapper-libs-1.02.199-4.fc41.x8 3.3 MB/s | 177 kB     00:00    
(18/159): device-mapper-1.02.199-4.fc41.x86_64. 1.2 MB/s | 137 kB     00:00    
(19/159): dnf-data-4.21.1-1.fc41.noarch.rpm     595 kB/s |  40 kB     00:00    
(20/159): dnf-plugins-core-4.9.0-1.fc41.noarch. 968 kB/s |  38 kB     00:00    
(21/159): dnf5-5.2.6.2-1.fc41.x86_64.rpm        7.1 MB/s | 687 kB     00:00    
(22/159): elfutils-default-yama-scope-0.191-8.f 104 kB/s |  12 kB     00:00    
(23/159): elfutils-libelf-0.191-8.fc41.x86_64.r 1.5 MB/s | 208 kB     00:00    
(24/159): elfutils-libs-0.191-8.fc41.x86_64.rpm 3.2 MB/s | 258 kB     00:00    
(25/159): expat-2.6.3-1.fc41.x86_64.rpm         2.6 MB/s | 114 kB     00:00    
(26/159): fedora-release-common-41-0.21.noarch. 546 kB/s |  23 kB     00:00    
(27/159): fedora-gpg-keys-41-0.5.noarch.rpm     1.8 MB/s | 134 kB     00:00    
(28/159): fedora-release-41-0.21.noarch.rpm     174 kB/s |  12 kB     00:00    
(29/159): fedora-repos-41-0.5.noarch.rpm        272 kB/s | 9.2 kB     00:00    
(30/159): fedora-release-identity-basic-41-0.21 258 kB/s |  13 kB     00:00    
(31/159): file-libs-5.45-7.fc41.x86_64.rpm      7.6 MB/s | 762 kB     00:00    
(32/159): filesystem-3.18-23.fc41.x86_64.rpm     14 MB/s | 1.1 MB     00:00    
(33/159): findutils-4.10.0-4.fc41.x86_64.rpm    7.9 MB/s | 549 kB     00:00    
(34/159): fmt-11.0.2-2.fc41.x86_64.rpm          1.8 MB/s | 100 kB     00:00    
(35/159): gawk-5.3.0-4.fc41.x86_64.rpm          6.5 MB/s | 1.1 MB     00:00    
(36/159): gdbm-libs-1.23-7.fc41.x86_64.rpm      336 kB/s |  56 kB     00:00    
(37/159): glib2-2.82.1-1.fc41.x86_64.rpm         12 MB/s | 3.0 MB     00:00    
(38/159): glibc-common-2.40-3.fc41.x86_64.rpm   2.5 MB/s | 412 kB     00:00    
(39/159): glibc-2.40-3.fc41.x86_64.rpm           12 MB/s | 2.2 MB     00:00    
(40/159): glibc-minimal-langpack-2.40-3.fc41.x8 1.4 MB/s | 124 kB     00:00    
(41/159): gmp-6.3.0-2.fc41.x86_64.rpm           2.9 MB/s | 318 kB     00:00    
(42/159): grep-3.11-9.fc41.x86_64.rpm           4.5 MB/s | 300 kB     00:00    
(43/159): gnutls-3.8.6-7.fc41.x86_64.rpm        8.8 MB/s | 1.1 MB     00:00    
(44/159): gnupg2-2.4.5-3.fc41.x86_64.rpm         14 MB/s | 2.7 MB     00:00    
(45/159): ima-evm-utils-libs-1.6.2-1.fc41.x86_6 270 kB/s |  29 kB     00:00    
(46/159): json-c-0.17-4.fc41.x86_64.rpm         321 kB/s |  44 kB     00:00    
(47/159): kbd-2.6.4-4.fc41.x86_64.rpm           2.2 MB/s | 415 kB     00:00    
(48/159): kbd-legacy-2.6.4-4.fc41.noarch.rpm    4.0 MB/s | 574 kB     00:00    
(49/159): kbd-misc-2.6.4-4.fc41.noarch.rpm       12 MB/s | 1.7 MB     00:00    
(50/159): keyutils-libs-1.6.3-4.fc41.x86_64.rpm 365 kB/s |  32 kB     00:00    
(51/159): kmod-33-1.fc41.x86_64.rpm             1.1 MB/s | 123 kB     00:00    
(52/159): kmod-libs-33-1.fc41.x86_64.rpm        660 kB/s |  70 kB     00:00    
(53/159): krb5-libs-1.21.3-2.fc41.x86_64.rpm    5.1 MB/s | 757 kB     00:00    
(54/159): libacl-2.3.2-2.fc41.x86_64.rpm        191 kB/s |  24 kB     00:00    
(55/159): libarchive-3.7.4-3.fc41.x86_64.rpm    2.9 MB/s | 409 kB     00:00    
(56/159): libassuan-2.5.7-2.fc41.x86_64.rpm     648 kB/s |  67 kB     00:00    
(57/159): libattr-2.5.2-4.fc41.x86_64.rpm       229 kB/s |  18 kB     00:00    
(58/159): libb2-0.98.1-12.fc41.x86_64.rpm       435 kB/s |  26 kB     00:00    
(59/159): libblkid-2.40.2-4.fc41.x86_64.rpm     1.8 MB/s | 125 kB     00:00    
(60/159): libbrotli-1.1.0-5.fc41.x86_64.rpm     2.7 MB/s | 340 kB     00:00    
(61/159): libcap-ng-0.8.5-3.fc41.x86_64.rpm     431 kB/s |  33 kB     00:00    
(62/159): libcap-2.70-4.fc41.x86_64.rpm         787 kB/s |  87 kB     00:00    
(63/159): libcom_err-1.47.1-3.fc41.x86_64.rpm   1.2 MB/s |  26 kB     00:00    
(64/159): libcomps-0.1.21-3.fc41.x86_64.rpm     2.8 MB/s |  77 kB     00:00    
(65/159): libcurl-8.9.1-2.fc41.x86_64.rpm       5.7 MB/s | 362 kB     00:00    
(66/159): libdnf-0.73.3-1.fc41.x86_64.rpm        11 MB/s | 699 kB     00:00    
(67/159): libeconf-0.6.2-3.fc41.x86_64.rpm      1.2 MB/s |  32 kB     00:00    
(68/159): libdnf5-5.2.6.2-1.fc41.x86_64.rpm      14 MB/s | 1.1 MB     00:00    
(69/159): libdnf5-cli-5.2.6.2-1.fc41.x86_64.rpm 6.5 MB/s | 323 kB     00:00    
(70/159): libfdisk-2.40.2-4.fc41.x86_64.rpm     4.1 MB/s | 160 kB     00:00    
(71/159): libevent-2.1.12-14.fc41.x86_64.rpm    4.6 MB/s | 258 kB     00:00    
(72/159): libffi-3.4.6-3.fc41.x86_64.rpm        909 kB/s |  40 kB     00:00    
(73/159): libfsverity-1.6-1.fc41.x86_64.rpm     398 kB/s |  19 kB     00:00    
(74/159): libgcc-14.2.1-3.fc41.x86_64.rpm       1.4 MB/s | 133 kB     00:00    
(75/159): libgomp-14.2.1-3.fc41.x86_64.rpm      4.2 MB/s | 354 kB     00:00    
(76/159): libgpg-error-1.50-2.fc41.x86_64.rpm   6.6 MB/s | 237 kB     00:00    
(77/159): libgcrypt-1.11.0-3.fc41.x86_64.rpm    4.0 MB/s | 579 kB     00:00    
(78/159): libidn2-2.3.7-2.fc41.x86_64.rpm       4.1 MB/s | 118 kB     00:00    
(79/159): libksba-1.6.7-2.fc41.x86_64.rpm       3.8 MB/s | 160 kB     00:00    
(80/159): libmodulemd-2.15.0-14.fc41.x86_64.rpm 3.9 MB/s | 232 kB     00:00    
(81/159): libmount-2.40.2-4.fc41.x86_64.rpm     2.7 MB/s | 156 kB     00:00    
(82/159): libnghttp2-1.62.1-2.fc41.x86_64.rpm   1.8 MB/s |  77 kB     00:00    
(83/159): libpkgconf-2.3.0-1.fc41.x86_64.rpm    590 kB/s |  38 kB     00:00    
(84/159): libpsl-0.21.5-4.fc41.x86_64.rpm       1.0 MB/s |  64 kB     00:00    
(85/159): librepo-1.18.1-1.fc41.x86_64.rpm      1.0 MB/s |  99 kB     00:00    
(86/159): libselinux-3.7-5.fc41.x86_64.rpm      1.5 MB/s |  88 kB     00:00    
(87/159): libseccomp-2.5.5-2.fc41.x86_64.rpm    1.0 MB/s |  70 kB     00:00    
(88/159): libsemanage-3.7-2.fc41.x86_64.rpm     1.7 MB/s | 116 kB     00:00    
(89/159): libsepol-3.7-2.fc41.x86_64.rpm        5.3 MB/s | 342 kB     00:00    
(90/159): libsmartcols-2.40.2-4.fc41.x86_64.rpm 1.1 MB/s |  84 kB     00:00    
(91/159): libssh-0.10.6-8.fc41.x86_64.rpm       5.2 MB/s | 212 kB     00:00    
(92/159): libssh-config-0.10.6-8.fc41.noarch.rp 356 kB/s | 9.2 kB     00:00    
(93/159): libsolv-0.7.30-1.fc41.x86_64.rpm      5.6 MB/s | 429 kB     00:00    
(94/159): libstdc++-14.2.1-3.fc41.x86_64.rpm     10 MB/s | 888 kB     00:00    
(95/159): libtasn1-4.19.0-9.fc41.x86_64.rpm     612 kB/s |  74 kB     00:00    
(96/159): libtool-ltdl-2.4.7-12.fc41.x86_64.rpm 273 kB/s |  36 kB     00:00    
(97/159): libuuid-2.40.2-4.fc41.x86_64.rpm      418 kB/s |  29 kB     00:00    
(98/159): libunistring-1.1-8.fc41.x86_64.rpm    3.7 MB/s | 545 kB     00:00    
(99/159): libverto-0.3.2-9.fc41.x86_64.rpm      266 kB/s |  21 kB     00:00    
(100/159): libxcrypt-4.4.36-7.fc41.x86_64.rpm   2.1 MB/s | 119 kB     00:00    
(101/159): libyaml-0.2.5-15.fc41.x86_64.rpm     918 kB/s |  59 kB     00:00    
(102/159): libxml2-2.12.8-2.fc41.x86_64.rpm     6.5 MB/s | 687 kB     00:00    
(103/159): libzstd-1.5.6-2.fc41.x86_64.rpm      3.5 MB/s | 310 kB     00:00    
(104/159): lua-libs-5.4.6-6.fc41.x86_64.rpm     2.2 MB/s | 132 kB     00:00    
(105/159): lz4-libs-1.10.0-1.fc41.x86_64.rpm    955 kB/s |  71 kB     00:00    
(106/159): mpdecimal-2.5.1-16.fc41.x86_64.rpm   786 kB/s |  89 kB     00:00    
(107/159): mpfr-4.2.1-5.fc41.x86_64.rpm         2.9 MB/s | 346 kB     00:00    
(108/159): ncurses-base-6.5-2.20240629.fc41.noa 1.0 MB/s |  88 kB     00:00    
(109/159): ncurses-libs-6.5-2.20240629.fc41.x86 3.0 MB/s | 334 kB     00:00    
(110/159): nettle-3.10-3.fc41.x86_64.rpm        4.4 MB/s | 429 kB     00:00    
(111/159): npth-1.7-2.fc41.x86_64.rpm           252 kB/s |  25 kB     00:00    
(112/159): openldap-2.6.8-5.fc41.x86_64.rpm     2.7 MB/s | 256 kB     00:00    
(113/159): p11-kit-0.25.5-3.fc41.x86_64.rpm     4.1 MB/s | 491 kB     00:00    
(114/159): p11-kit-trust-0.25.5-3.fc41.x86_64.r 1.6 MB/s | 132 kB     00:00    
(115/159): openssl-libs-3.2.2-9.fc41.x86_64.rpm  12 MB/s | 2.3 MB     00:00    
(116/159): pam-libs-1.6.1-5.fc41.x86_64.rpm     832 kB/s |  57 kB     00:00    
(117/159): pcre2-10.44-1.fc41.1.x86_64.rpm      2.6 MB/s | 243 kB     00:00    
(118/159): pcre2-syntax-10.44-1.fc41.1.noarch.r 1.0 MB/s | 150 kB     00:00    
(119/159): pkgconf-2.3.0-1.fc41.x86_64.rpm      314 kB/s |  45 kB     00:00    
(120/159): pkgconf-pkg-config-2.3.0-1.fc41.x86_ 222 kB/s |  10 kB     00:00    
(121/159): pkgconf-m4-2.3.0-1.fc41.noarch.rpm   107 kB/s |  14 kB     00:00    
(122/159): popt-1.19-7.fc41.x86_64.rpm          773 kB/s |  66 kB     00:00    
(123/159): publicsuffix-list-dafsa-20240107-4.f 996 kB/s |  58 kB     00:00    
(124/159): python-pip-wheel-24.2-1.fc41.noarch.  11 MB/s | 1.2 MB     00:00    
(125/159): python3-3.13.0-1.fc41.x86_64.rpm     423 kB/s |  28 kB     00:00    
(126/159): python3-dateutil-2.8.2-16.fc41.noarc 3.9 MB/s | 360 kB     00:00    
(127/159): python3-distro-1.9.0-5.fc41.noarch.r 1.1 MB/s |  47 kB     00:00    
(128/159): python3-dbus-1.3.2-8.fc41.x86_64.rpm 3.1 MB/s | 157 kB     00:00    
(129/159): python3-dnf-4.21.1-1.fc41.noarch.rpm 6.0 MB/s | 627 kB     00:00    
(130/159): python3-hawkey-0.73.3-1.fc41.x86_64. 1.2 MB/s | 105 kB     00:00    
(131/159): python3-dnf-plugins-core-4.9.0-1.fc4 2.9 MB/s | 314 kB     00:00    
(132/159): python3-libcomps-0.1.21-3.fc41.x86_6 1.0 MB/s |  48 kB     00:00    
(133/159): python3-rpm-4.19.94-1.fc41.x86_64.rp 1.2 MB/s |  70 kB     00:00    
(134/159): python3-libdnf-0.73.3-1.fc41.x86_64. 7.2 MB/s | 847 kB     00:00    
(135/159): python3-six-1.16.0-23.fc41.noarch.rp 631 kB/s |  41 kB     00:00    
(136/159): python3-systemd-235-11.fc41.x86_64.r 1.8 MB/s | 107 kB     00:00    
(137/159): python3-libs-3.13.0-1.fc41.x86_64.rp  29 MB/s | 9.1 MB     00:00    
(138/159): readline-8.2-10.fc41.x86_64.rpm      1.3 MB/s | 213 kB     00:00    
(139/159): rpm-4.19.94-1.fc41.x86_64.rpm        3.1 MB/s | 548 kB     00:00    
(140/159): rpm-build-libs-4.19.94-1.fc41.x86_64 1.6 MB/s |  99 kB     00:00    
(141/159): rpm-libs-4.19.94-1.fc41.x86_64.rpm   3.5 MB/s | 309 kB     00:00    
(142/159): rpm-sequoia-1.7.0-2.fc41.x86_64.rpm  7.7 MB/s | 892 kB     00:00    
(143/159): rpm-sign-libs-4.19.94-1.fc41.x86_64. 304 kB/s |  27 kB     00:00    
(144/159): sdbus-cpp-1.5.0-3.fc41.x86_64.rpm    1.3 MB/s | 113 kB     00:00    
(145/159): sed-4.9-3.fc41.x86_64.rpm            3.6 MB/s | 318 kB     00:00    
(146/159): setup-2.15.0-5.fc41.noarch.rpm       1.6 MB/s | 154 kB     00:00    
(147/159): shadow-utils-4.15.1-12.fc41.x86_64.r 7.5 MB/s | 1.3 MB     00:00    
(148/159): sqlite-libs-3.46.1-1.fc41.x86_64.rpm 4.6 MB/s | 713 kB     00:00    
(149/159): systemd-libs-256.7-1.fc41.x86_64.rpm 9.2 MB/s | 731 kB     00:00    
(150/159): systemd-networkd-256.7-1.fc41.x86_64 9.6 MB/s | 721 kB     00:00    
(151/159): systemd-pam-256.7-1.fc41.x86_64.rpm   10 MB/s | 400 kB     00:00    
(152/159): systemd-256.7-1.fc41.x86_64.rpm       20 MB/s | 5.7 MB     00:00    
(153/159): systemd-udev-256.7-1.fc41.x86_64.rpm  23 MB/s | 2.3 MB     00:00    
(154/159): tpm2-tss-4.1.3-3.fc41.x86_64.rpm     3.3 MB/s | 412 kB     00:00    
(155/159): tzdata-2024a-9.fc41.noarch.rpm       6.5 MB/s | 715 kB     00:00    
(156/159): util-linux-core-2.40.2-4.fc41.x86_64 5.4 MB/s | 537 kB     00:00    
(157/159): xz-libs-5.6.2-2.fc41.x86_64.rpm      1.5 MB/s | 112 kB     00:00    
(158/159): zchunk-libs-1.5.1-1.fc41.x86_64.rpm  975 kB/s |  52 kB     00:00    
(159/159): zlib-ng-compat-2.1.7-3.fc41.x86_64.r 1.4 MB/s |  78 kB     00:00    
--------------------------------------------------------------------------------
Total                                            13 MB/s |  72 MB     00:05     
Fedora 41 - x86_64                              1.6 MB/s | 1.6 kB     00:00    
Importing GPG key 0xE99D6AD1:
 Userid     : "Fedora (41) <fedora-41-primary@fedoraproject.org>"
 Fingerprint: 466C F2D8 B60B C305 7AA9 453E D062 2462 E99D 6AD1
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-41-x86_64
Key imported successfully
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Running scriptlet: filesystem-3.18-23.fc41.x86_64                         1/1 
  Preparing        :                                                        1/1 
  Installing       : libgcc-14.2.1-3.fc41.x86_64                          1/159 
  Running scriptlet: libgcc-14.2.1-3.fc41.x86_64                          1/159 
  Installing       : tzdata-2024a-9.fc41.noarch                           2/159 
  Installing       : fedora-release-identity-basic-41-0.21.noarch         3/159 
  Installing       : fedora-gpg-keys-41-0.5.noarch                        4/159 
  Installing       : fedora-repos-41-0.5.noarch                           5/159 
  Installing       : fedora-release-common-41-0.21.noarch                 6/159 
  Installing       : fedora-release-41-0.21.noarch                        7/159 
  Installing       : setup-2.15.0-5.fc41.noarch                           8/159 
  Running scriptlet: setup-2.15.0-5.fc41.noarch                           8/159 
  Installing       : filesystem-3.18-23.fc41.x86_64                       9/159 
  Installing       : basesystem-11-21.fc41.noarch                        10/159 
  Installing       : publicsuffix-list-dafsa-20240107-4.fc41.noarch      11/159 
  Installing       : pkgconf-m4-2.3.0-1.fc41.noarch                      12/159 
  Installing       : pcre2-syntax-10.44-1.fc41.1.noarch                  13/159 
  Installing       : ncurses-base-6.5-2.20240629.fc41.noarch             14/159 
  Installing       : glibc-minimal-langpack-2.40-3.fc41.x86_64           15/159 
  Installing       : glibc-common-2.40-3.fc41.x86_64                     16/159 
  Running scriptlet: glibc-2.40-3.fc41.x86_64                            17/159 
  Installing       : glibc-2.40-3.fc41.x86_64                            17/159 
  Running scriptlet: glibc-2.40-3.fc41.x86_64                            17/159 
  Installing       : ncurses-libs-6.5-2.20240629.fc41.x86_64             18/159 
  Installing       : bash-5.2.32-1.fc41.x86_64                           19/159 
  Running scriptlet: bash-5.2.32-1.fc41.x86_64                           19/159 
  Installing       : zlib-ng-compat-2.1.7-3.fc41.x86_64                  20/159 
  Installing       : xz-libs-1:5.6.2-2.fc41.x86_64                       21/159 
  Installing       : bzip2-libs-1.0.8-19.fc41.x86_64                     22/159 
  Installing       : libstdc++-14.2.1-3.fc41.x86_64                      23/159 
  Installing       : libzstd-1.5.6-2.fc41.x86_64                         24/159 
  Installing       : libuuid-2.40.2-4.fc41.x86_64                        25/159 
  Installing       : libblkid-2.40.2-4.fc41.x86_64                       26/159 
  Installing       : libxml2-2.12.8-2.fc41.x86_64                        27/159 
  Installing       : sqlite-libs-3.46.1-1.fc41.x86_64                    28/159 
  Installing       : gmp-1:6.3.0-2.fc41.x86_64                           29/159 
  Installing       : json-c-0.17-4.fc41.x86_64                           30/159 
  Installing       : elfutils-libelf-0.191-8.fc41.x86_64                 31/159 
  Running scriptlet: crypto-policies-20240826-1.gite824389.fc41.noarc    32/159 
/var/tmp/rpm-tmp.wC0T6Q: line 13: rm: command not found

  Installing       : crypto-policies-20240826-1.gite824389.fc41.noarc    32/159 
  Running scriptlet: crypto-policies-20240826-1.gite824389.fc41.noarc    32/159 
  Installing       : libffi-3.4.6-3.fc41.x86_64                          33/159 
  Installing       : libgpg-error-1.50-2.fc41.x86_64                     34/159 
  Installing       : libsmartcols-2.40.2-4.fc41.x86_64                   35/159 
  Installing       : libxcrypt-4.4.36-7.fc41.x86_64                      36/159 
  Installing       : pcre2-10.44-1.fc41.1.x86_64                         37/159 
  Installing       : popt-1.19-7.fc41.x86_64                             38/159 
  Installing       : grep-3.11-9.fc41.x86_64                             39/159 
  Installing       : fmt-11.0.2-2.fc41.x86_64                            40/159 
  Installing       : readline-8.2-10.fc41.x86_64                         41/159 
  Installing       : expat-2.6.3-1.fc41.x86_64                           42/159 
  Installing       : libattr-2.5.2-4.fc41.x86_64                         43/159 
  Installing       : libacl-2.3.2-2.fc41.x86_64                          44/159 
  Installing       : libtasn1-4.19.0-9.fc41.x86_64                       45/159 
  Installing       : p11-kit-0.25.5-3.fc41.x86_64                        46/159 
  Installing       : libunistring-1.1-8.fc41.x86_64                      47/159 
  Installing       : libidn2-2.3.7-2.fc41.x86_64                         48/159 
  Installing       : libfdisk-2.40.2-4.fc41.x86_64                       49/159 
  Installing       : gdbm-libs-1:1.23-7.fc41.x86_64                      50/159 
  Installing       : libcap-ng-0.8.5-3.fc41.x86_64                       51/159 
  Installing       : audit-libs-4.0.2-1.fc41.x86_64                      52/159 
  Installing       : libeconf-0.6.2-3.fc41.x86_64                        53/159 
  Installing       : pam-libs-1.6.1-5.fc41.x86_64                        54/159 
  Installing       : libcap-2.70-4.fc41.x86_64                           55/159 
  Installing       : systemd-libs-256.7-1.fc41.x86_64                    56/159 
  Installing       : libgomp-14.2.1-3.fc41.x86_64                        57/159 
  Installing       : libsepol-3.7-2.fc41.x86_64                          58/159 
  Installing       : libselinux-3.7-5.fc41.x86_64                        59/159 
  Installing       : libmount-2.40.2-4.fc41.x86_64                       60/159 
  Installing       : sed-4.9-3.fc41.x86_64                               61/159 
  Installing       : util-linux-core-2.40.2-4.fc41.x86_64                62/159 
  Installing       : lua-libs-5.4.6-6.fc41.x86_64                        63/159 
  Installing       : findutils-1:4.10.0-4.fc41.x86_64                    64/159 
  Installing       : libsemanage-3.7-2.fc41.x86_64                       65/159 
  Installing       : shadow-utils-2:4.15.1-12.fc41.x86_64                66/159 
  Installing       : libb2-0.98.1-12.fc41.x86_64                         67/159 
  Installing       : dbus-libs-1:1.14.10-4.fc41.x86_64                   68/159 
  Installing       : sdbus-cpp-1.5.0-3.fc41.x86_64                       69/159 
  Installing       : cyrus-sasl-lib-2.1.28-27.fc41.x86_64                70/159 
  Installing       : libpsl-0.21.5-4.fc41.x86_64                         71/159 
  Installing       : libcomps-0.1.21-3.fc41.x86_64                       72/159 
  Installing       : libassuan-2.5.7-2.fc41.x86_64                       73/159 
  Installing       : libgcrypt-1.11.0-3.fc41.x86_64                      74/159 
  Installing       : libksba-1.6.7-2.fc41.x86_64                         75/159 
  Installing       : mpfr-4.2.1-5.fc41.x86_64                            76/159 
  Installing       : gawk-5.3.0-4.fc41.x86_64                            77/159 
  Installing       : nettle-3.10-3.fc41.x86_64                           78/159 
  Installing       : file-libs-5.45-7.fc41.x86_64                        79/159 
  Installing       : dbus-common-1:1.14.10-4.fc41.noarch                 80/159 
  Running scriptlet: dbus-common-1:1.14.10-4.fc41.noarch                 80/159 
  Running scriptlet: dbus-broker-36-4.fc41.x86_64                        81/159 
  Installing       : dbus-broker-36-4.fc41.x86_64                        81/159 
  Running scriptlet: dbus-broker-36-4.fc41.x86_64                        81/159 
  Installing       : dbus-1:1.14.10-4.fc41.x86_64                        82/159 
  Installing       : alternatives-1.30-1.fc41.x86_64                     83/159 
  Installing       : p11-kit-trust-0.25.5-3.fc41.x86_64                  84/159 
  Running scriptlet: p11-kit-trust-0.25.5-3.fc41.x86_64                  84/159 
  Installing       : gnutls-3.8.6-7.fc41.x86_64                          85/159 
  Installing       : glib2-2.82.1-1.fc41.x86_64                          86/159 
  Installing       : keyutils-libs-1.6.3-4.fc41.x86_64                   87/159 
  Installing       : libbrotli-1.1.0-5.fc41.x86_64                       88/159 
  Installing       : libcom_err-1.47.1-3.fc41.x86_64                     89/159 
  Installing       : libnghttp2-1.62.1-2.fc41.x86_64                     90/159 
  Installing       : libpkgconf-2.3.0-1.fc41.x86_64                      91/159 
  Installing       : pkgconf-2.3.0-1.fc41.x86_64                         92/159 
  Installing       : pkgconf-pkg-config-2.3.0-1.fc41.x86_64              93/159 
  Installing       : libseccomp-2.5.5-2.fc41.x86_64                      94/159 
  Installing       : libtool-ltdl-2.4.7-12.fc41.x86_64                   95/159 
  Installing       : libverto-0.3.2-9.fc41.x86_64                        96/159 
  Installing       : libyaml-0.2.5-15.fc41.x86_64                        97/159 
  Installing       : lz4-libs-1.10.0-1.fc41.x86_64                       98/159 
  Installing       : mpdecimal-2.5.1-16.fc41.x86_64                      99/159 
  Installing       : npth-1.7-2.fc41.x86_64                             100/159 
  Installing       : libssh-config-0.10.6-8.fc41.noarch                 101/159 
  Installing       : kbd-misc-2.6.4-4.fc41.noarch                       102/159 
  Installing       : kbd-legacy-2.6.4-4.fc41.noarch                     103/159 
  Installing       : kbd-2.6.4-4.fc41.x86_64                            104/159 
  Installing       : coreutils-common-9.5-10.fc41.x86_64                105/159 
  Installing       : openssl-libs-1:3.2.2-9.fc41.x86_64                 106/159 
  Installing       : coreutils-9.5-10.fc41.x86_64                       107/159 
  Running scriptlet: ca-certificates-2024.2.69_v8.0.401-1.0.fc41.noar   108/159 
  Installing       : ca-certificates-2024.2.69_v8.0.401-1.0.fc41.noar   108/159 
  Running scriptlet: ca-certificates-2024.2.69_v8.0.401-1.0.fc41.noar   108/159 
  Running scriptlet: tpm2-tss-4.1.3-3.fc41.x86_64                       109/159 
useradd: Warning: missing or non-executable shell '/usr/sbin/nologin'

  Installing       : tpm2-tss-4.1.3-3.fc41.x86_64                       109/159 
  Installing       : krb5-libs-1.21.3-2.fc41.x86_64                     110/159 
  Installing       : kmod-libs-33-1.fc41.x86_64                         111/159 
  Installing       : libarchive-3.7.4-3.fc41.x86_64                     112/159 
  Installing       : zchunk-libs-1.5.1-1.fc41.x86_64                    113/159 
  Installing       : libssh-0.10.6-8.fc41.x86_64                        114/159 
  Installing       : ima-evm-utils-libs-1.6.2-1.fc41.x86_64             115/159 
  Installing       : python-pip-wheel-24.2-1.fc41.noarch                116/159 
  Installing       : python3-3.13.0-1.fc41.x86_64                       117/159 
  Installing       : python3-libs-3.13.0-1.fc41.x86_64                  118/159 
  Installing       : python3-libcomps-0.1.21-3.fc41.x86_64              119/159 
  Installing       : python3-dbus-1.3.2-8.fc41.x86_64                   120/159 
  Installing       : python3-distro-1.9.0-5.fc41.noarch                 121/159 
  Installing       : python3-six-1.16.0-23.fc41.noarch                  122/159 
  Installing       : python3-dateutil-1:2.8.2-16.fc41.noarch            123/159 
  Installing       : python3-systemd-235-11.fc41.x86_64                 124/159 
  Installing       : kmod-33-1.fc41.x86_64                              125/159 
  Installing       : device-mapper-1.02.199-4.fc41.x86_64               126/159 
  Installing       : device-mapper-libs-1.02.199-4.fc41.x86_64          127/159 
  Installing       : cryptsetup-libs-2.7.5-1.fc41.x86_64                128/159 
  Installing       : elfutils-default-yama-scope-0.191-8.fc41.noarch    129/159 
  Running scriptlet: elfutils-default-yama-scope-0.191-8.fc41.noarch    129/159 
  Installing       : elfutils-libs-0.191-8.fc41.x86_64                  130/159 
  Installing       : systemd-pam-256.7-1.fc41.x86_64                    131/159 
  Installing       : systemd-networkd-256.7-1.fc41.x86_64               132/159 
  Running scriptlet: systemd-networkd-256.7-1.fc41.x86_64               132/159 
  Installing       : systemd-256.7-1.fc41.x86_64                        133/159 
  Running scriptlet: systemd-256.7-1.fc41.x86_64                        133/159 
Creating group 'systemd-journal' with GID 190.
Creating group 'systemd-network' with GID 192.
Creating user 'systemd-network' (systemd Network Management) with UID 192 and GID 192.
Creating group 'systemd-oom' with GID 999.
Creating user 'systemd-oom' (systemd Userspace OOM Killer) with UID 999 and GID 999.

  Installing       : systemd-udev-256.7-1.fc41.x86_64                   134/159 
  Running scriptlet: systemd-udev-256.7-1.fc41.x86_64                   134/159 
⚠️ /proc/ is not mounted. This is not a supported mode of operation. Please fix
your invocation environment to mount /proc/ and /sys/ properly. Proceeding anyway.
Your mileage may vary.
Created symlink '/etc/systemd/system/dbus-org.freedesktop.home1.service' → '/usr/lib/systemd/system/systemd-homed.service'.
Created symlink '/etc/systemd/system/multi-user.target.wants/systemd-homed.service' → '/usr/lib/systemd/system/systemd-homed.service'.
Created symlink '/etc/systemd/system/systemd-homed.service.wants/systemd-homed-activate.service' → '/usr/lib/systemd/system/systemd-homed-activate.service'.
Created symlink '/etc/systemd/system/dbus-org.freedesktop.oom1.service' → '/usr/lib/systemd/system/systemd-oomd.service'.
Created symlink '/etc/systemd/system/multi-user.target.wants/systemd-oomd.service' → '/usr/lib/systemd/system/systemd-oomd.service'.
Created symlink '/etc/systemd/system/sysinit.target.wants/systemd-pstore.service' → '/usr/lib/systemd/system/systemd-pstore.service'.
Created symlink '/etc/systemd/system/multi-user.target.wants/remote-cryptsetup.target' → '/usr/lib/systemd/system/remote-cryptsetup.target'.

  Installing       : libevent-2.1.12-14.fc41.x86_64                     135/159 
  Installing       : openldap-2.6.8-5.fc41.x86_64                       136/159 
  Installing       : libcurl-8.9.1-2.fc41.x86_64                        137/159 
  Installing       : curl-8.9.1-2.fc41.x86_64                           138/159 
  Installing       : gnupg2-2.4.5-3.fc41.x86_64                         139/159 
  Installing       : libfsverity-1.6-1.fc41.x86_64                      140/159 
  Installing       : rpm-sequoia-1.7.0-2.fc41.x86_64                    141/159 
  Installing       : rpm-libs-4.19.94-1.fc41.x86_64                     142/159 
  Installing       : libmodulemd-2.15.0-14.fc41.x86_64                  143/159 
  Installing       : libsolv-0.7.30-1.fc41.x86_64                       144/159 
  Installing       : librepo-1.18.1-1.fc41.x86_64                       145/159 
  Installing       : libdnf5-5.2.6.2-1.fc41.x86_64                      146/159 
  Installing       : libdnf-0.73.3-1.fc41.x86_64                        147/159 
  Installing       : python3-libdnf-0.73.3-1.fc41.x86_64                148/159 
  Installing       : python3-hawkey-0.73.3-1.fc41.x86_64                149/159 
  Installing       : dnf-data-4.21.1-1.fc41.noarch                      150/159 
  Installing       : libdnf5-cli-5.2.6.2-1.fc41.x86_64                  151/159 
  Installing       : rpm-build-libs-4.19.94-1.fc41.x86_64               152/159 
  Installing       : rpm-sign-libs-4.19.94-1.fc41.x86_64                153/159 
  Installing       : python3-rpm-4.19.94-1.fc41.x86_64                  154/159 
  Installing       : python3-dnf-4.21.1-1.fc41.noarch                   155/159 
  Installing       : python3-dnf-plugins-core-4.9.0-1.fc41.noarch       156/159 
  Installing       : dnf-plugins-core-4.9.0-1.fc41.noarch               157/159 
  Installing       : dnf5-5.2.6.2-1.fc41.x86_64                         158/159 
  Running scriptlet: rpm-4.19.94-1.fc41.x86_64                          159/159 
  Installing       : rpm-4.19.94-1.fc41.x86_64                          159/159 
  Running scriptlet: filesystem-3.18-23.fc41.x86_64                     159/159 
  Running scriptlet: ca-certificates-2024.2.69_v8.0.401-1.0.fc41.noar   159/159 
  Running scriptlet: rpm-4.19.94-1.fc41.x86_64                          159/159 
Creating group 'systemd-coredump' with GID 998.
Creating user 'systemd-coredump' (systemd Core Dumper) with UID 998 and GID 998.
Creating group 'systemd-timesync' with GID 997.
Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 997 and GID 997.

Failed to write database /etc/udev/hwdb.bin: Function not implemented


Installed:
  alternatives-1.30-1.fc41.x86_64                                               
  audit-libs-4.0.2-1.fc41.x86_64                                                
  basesystem-11-21.fc41.noarch                                                  
  bash-5.2.32-1.fc41.x86_64                                                     
  bzip2-libs-1.0.8-19.fc41.x86_64                                               
  ca-certificates-2024.2.69_v8.0.401-1.0.fc41.noarch                            
  coreutils-9.5-10.fc41.x86_64                                                  
  coreutils-common-9.5-10.fc41.x86_64                                           
  crypto-policies-20240826-1.gite824389.fc41.noarch                             
  cryptsetup-libs-2.7.5-1.fc41.x86_64                                           
  curl-8.9.1-2.fc41.x86_64                                                      
  cyrus-sasl-lib-2.1.28-27.fc41.x86_64                                          
  dbus-1:1.14.10-4.fc41.x86_64                                                  
  dbus-broker-36-4.fc41.x86_64                                                  
  dbus-common-1:1.14.10-4.fc41.noarch                                           
  dbus-libs-1:1.14.10-4.fc41.x86_64                                             
  device-mapper-1.02.199-4.fc41.x86_64                                          
  device-mapper-libs-1.02.199-4.fc41.x86_64                                     
  dnf-data-4.21.1-1.fc41.noarch                                                 
  dnf-plugins-core-4.9.0-1.fc41.noarch                                          
  dnf5-5.2.6.2-1.fc41.x86_64                                                    
  elfutils-default-yama-scope-0.191-8.fc41.noarch                               
  elfutils-libelf-0.191-8.fc41.x86_64                                           
  elfutils-libs-0.191-8.fc41.x86_64                                             
  expat-2.6.3-1.fc41.x86_64                                                     
  fedora-gpg-keys-41-0.5.noarch                                                 
  fedora-release-41-0.21.noarch                                                 
  fedora-release-common-41-0.21.noarch                                          
  fedora-release-identity-basic-41-0.21.noarch                                  
  fedora-repos-41-0.5.noarch                                                    
  file-libs-5.45-7.fc41.x86_64                                                  
  filesystem-3.18-23.fc41.x86_64                                                
  findutils-1:4.10.0-4.fc41.x86_64                                              
  fmt-11.0.2-2.fc41.x86_64                                                      
  gawk-5.3.0-4.fc41.x86_64                                                      
  gdbm-libs-1:1.23-7.fc41.x86_64                                                
  glib2-2.82.1-1.fc41.x86_64                                                    
  glibc-2.40-3.fc41.x86_64                                                      
  glibc-common-2.40-3.fc41.x86_64                                               
  glibc-minimal-langpack-2.40-3.fc41.x86_64                                     
  gmp-1:6.3.0-2.fc41.x86_64                                                     
  gnupg2-2.4.5-3.fc41.x86_64                                                    
  gnutls-3.8.6-7.fc41.x86_64                                                    
  grep-3.11-9.fc41.x86_64                                                       
  ima-evm-utils-libs-1.6.2-1.fc41.x86_64                                        
  json-c-0.17-4.fc41.x86_64                                                     
  kbd-2.6.4-4.fc41.x86_64                                                       
  kbd-legacy-2.6.4-4.fc41.noarch                                                
  kbd-misc-2.6.4-4.fc41.noarch                                                  
  keyutils-libs-1.6.3-4.fc41.x86_64                                             
  kmod-33-1.fc41.x86_64                                                         
  kmod-libs-33-1.fc41.x86_64                                                    
  krb5-libs-1.21.3-2.fc41.x86_64                                                
  libacl-2.3.2-2.fc41.x86_64                                                    
  libarchive-3.7.4-3.fc41.x86_64                                                
  libassuan-2.5.7-2.fc41.x86_64                                                 
  libattr-2.5.2-4.fc41.x86_64                                                   
  libb2-0.98.1-12.fc41.x86_64                                                   
  libblkid-2.40.2-4.fc41.x86_64                                                 
  libbrotli-1.1.0-5.fc41.x86_64                                                 
  libcap-2.70-4.fc41.x86_64                                                     
  libcap-ng-0.8.5-3.fc41.x86_64                                                 
  libcom_err-1.47.1-3.fc41.x86_64                                               
  libcomps-0.1.21-3.fc41.x86_64                                                 
  libcurl-8.9.1-2.fc41.x86_64                                                   
  libdnf-0.73.3-1.fc41.x86_64                                                   
  libdnf5-5.2.6.2-1.fc41.x86_64                                                 
  libdnf5-cli-5.2.6.2-1.fc41.x86_64                                             
  libeconf-0.6.2-3.fc41.x86_64                                                  
  libevent-2.1.12-14.fc41.x86_64                                                
  libfdisk-2.40.2-4.fc41.x86_64                                                 
  libffi-3.4.6-3.fc41.x86_64                                                    
  libfsverity-1.6-1.fc41.x86_64                                                 
  libgcc-14.2.1-3.fc41.x86_64                                                   
  libgcrypt-1.11.0-3.fc41.x86_64                                                
  libgomp-14.2.1-3.fc41.x86_64                                                  
  libgpg-error-1.50-2.fc41.x86_64                                               
  libidn2-2.3.7-2.fc41.x86_64                                                   
  libksba-1.6.7-2.fc41.x86_64                                                   
  libmodulemd-2.15.0-14.fc41.x86_64                                             
  libmount-2.40.2-4.fc41.x86_64                                                 
  libnghttp2-1.62.1-2.fc41.x86_64                                               
  libpkgconf-2.3.0-1.fc41.x86_64                                                
  libpsl-0.21.5-4.fc41.x86_64                                                   
  librepo-1.18.1-1.fc41.x86_64                                                  
  libseccomp-2.5.5-2.fc41.x86_64                                                
  libselinux-3.7-5.fc41.x86_64                                                  
  libsemanage-3.7-2.fc41.x86_64                                                 
  libsepol-3.7-2.fc41.x86_64                                                    
  libsmartcols-2.40.2-4.fc41.x86_64                                             
  libsolv-0.7.30-1.fc41.x86_64                                                  
  libssh-0.10.6-8.fc41.x86_64                                                   
  libssh-config-0.10.6-8.fc41.noarch                                            
  libstdc++-14.2.1-3.fc41.x86_64                                                
  libtasn1-4.19.0-9.fc41.x86_64                                                 
  libtool-ltdl-2.4.7-12.fc41.x86_64                                             
  libunistring-1.1-8.fc41.x86_64                                                
  libuuid-2.40.2-4.fc41.x86_64                                                  
  libverto-0.3.2-9.fc41.x86_64                                                  
  libxcrypt-4.4.36-7.fc41.x86_64                                                
  libxml2-2.12.8-2.fc41.x86_64                                                  
  libyaml-0.2.5-15.fc41.x86_64                                                  
  libzstd-1.5.6-2.fc41.x86_64                                                   
  lua-libs-5.4.6-6.fc41.x86_64                                                  
  lz4-libs-1.10.0-1.fc41.x86_64                                                 
  mpdecimal-2.5.1-16.fc41.x86_64                                                
  mpfr-4.2.1-5.fc41.x86_64                                                      
  ncurses-base-6.5-2.20240629.fc41.noarch                                       
  ncurses-libs-6.5-2.20240629.fc41.x86_64                                       
  nettle-3.10-3.fc41.x86_64                                                     
  npth-1.7-2.fc41.x86_64                                                        
  openldap-2.6.8-5.fc41.x86_64                                                  
  openssl-libs-1:3.2.2-9.fc41.x86_64                                            
  p11-kit-0.25.5-3.fc41.x86_64                                                  
  p11-kit-trust-0.25.5-3.fc41.x86_64                                            
  pam-libs-1.6.1-5.fc41.x86_64                                                  
  pcre2-10.44-1.fc41.1.x86_64                                                   
  pcre2-syntax-10.44-1.fc41.1.noarch                                            
  pkgconf-2.3.0-1.fc41.x86_64                                                   
  pkgconf-m4-2.3.0-1.fc41.noarch                                                
  pkgconf-pkg-config-2.3.0-1.fc41.x86_64                                        
  popt-1.19-7.fc41.x86_64                                                       
  publicsuffix-list-dafsa-20240107-4.fc41.noarch                                
  python-pip-wheel-24.2-1.fc41.noarch                                           
  python3-3.13.0-1.fc41.x86_64                                                  
  python3-dateutil-1:2.8.2-16.fc41.noarch                                       
  python3-dbus-1.3.2-8.fc41.x86_64                                              
  python3-distro-1.9.0-5.fc41.noarch                                            
  python3-dnf-4.21.1-1.fc41.noarch                                              
  python3-dnf-plugins-core-4.9.0-1.fc41.noarch                                  
  python3-hawkey-0.73.3-1.fc41.x86_64                                           
  python3-libcomps-0.1.21-3.fc41.x86_64                                         
  python3-libdnf-0.73.3-1.fc41.x86_64                                           
  python3-libs-3.13.0-1.fc41.x86_64                                             
  python3-rpm-4.19.94-1.fc41.x86_64                                             
  python3-six-1.16.0-23.fc41.noarch                                             
  python3-systemd-235-11.fc41.x86_64                                            
  readline-8.2-10.fc41.x86_64                                                   
  rpm-4.19.94-1.fc41.x86_64                                                     
  rpm-build-libs-4.19.94-1.fc41.x86_64                                          
  rpm-libs-4.19.94-1.fc41.x86_64                                                
  rpm-sequoia-1.7.0-2.fc41.x86_64                                               
  rpm-sign-libs-4.19.94-1.fc41.x86_64                                           
  sdbus-cpp-1.5.0-3.fc41.x86_64                                                 
  sed-4.9-3.fc41.x86_64                                                         
  setup-2.15.0-5.fc41.noarch                                                    
  shadow-utils-2:4.15.1-12.fc41.x86_64                                          
  sqlite-libs-3.46.1-1.fc41.x86_64                                              
  systemd-256.7-1.fc41.x86_64                                                   
  systemd-libs-256.7-1.fc41.x86_64                                              
  systemd-networkd-256.7-1.fc41.x86_64                                          
  systemd-pam-256.7-1.fc41.x86_64                                               
  systemd-udev-256.7-1.fc41.x86_64                                              
  tpm2-tss-4.1.3-3.fc41.x86_64                                                  
  tzdata-2024a-9.fc41.noarch                                                    
  util-linux-core-2.40.2-4.fc41.x86_64                                          
  xz-libs-1:5.6.2-2.fc41.x86_64                                                 
  zchunk-libs-1.5.1-1.fc41.x86_64                                               
  zlib-ng-compat-2.1.7-3.fc41.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=41 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=41 install @development-tools git mercurial openssh-server sudo kernel grub2'
Updating and loading repositories:
 Fedora 41 - x86_64 - Test Updates      100% |   6.5 MiB/s |   7.2 MiB |  00m01s
 Fedora 41 - x86_64 - Updates           100% |  64.0 KiB/s |  29.8 KiB |  00m00s
 Fedora 41 openh264 (From Cisco) - x86_ 100% |  15.5 KiB/s |   6.0 KiB |  00m00s
 Fedora 41 - x86_64                     100% |  16.6 MiB/s |  33.7 MiB |  00m02s
Repositories loaded.
Package                               Arch   Version                         Repository           Size
Installing:
 git                                  x86_64 2.47.0-1.fc41                   updates-testing  85.2 KiB
 grub2-pc                             x86_64 1:2.12-9.fc41                   updates-testing  31.0   B
 kernel                               x86_64 6.11.3-300.fc41                 updates-testing   0.0   B
 mercurial                            x86_64 6.8.1-3.fc41                    updates-testing  30.7 MiB
 openssh-server                       x86_64 9.8p1-3.fc41.1                  updates-testing   1.4 MiB
 sudo                                 x86_64 1.9.15-5.p5.fc41                fedora            4.9 MiB
Installing group/module packages:
 diffstat                             x86_64 1.66-2.fc41                     fedora           76.4 KiB
 doxygen                              x86_64 2:1.12.0-1.fc41                 fedora           19.2 MiB
 gettext                              x86_64 0.22.5-6.fc41                   fedora            5.2 MiB
 patch                                x86_64 2.7.6-25.fc41                   fedora          266.7 KiB
 patchutils                           x86_64 0.4.2-14.fc41                   fedora          209.4 KiB
 subversion                           x86_64 1.14.3-10.fc41                  fedora            5.1 MiB
 systemtap                            x86_64 5.2~pre17250223gd07e4284-1.fc41 updates-testing   0.0   B
Installing dependencies:
 abattis-cantarell-vf-fonts           noarch 0.301-13.fc41                   fedora          192.7 KiB
 adobe-mappings-cmap                  noarch 20230622-4.fc41                 fedora           14.4 MiB
 adobe-mappings-cmap-deprecated       noarch 20230622-4.fc41                 fedora          582.1 KiB
 adobe-mappings-pdf                   noarch 20190401-8.fc41                 fedora            4.4 MiB
 apr                                  x86_64 1.7.5-1.fc41                    updates-testing 302.3 KiB
 apr-util                             x86_64 1.6.3-21.fc41                   fedora          220.5 KiB
 authselect                           x86_64 1.5.0-8.fc41                    updates-testing 157.6 KiB
 authselect-libs                      x86_64 1.5.0-8.fc41                    updates-testing 822.2 KiB
 avahi-libs                           x86_64 0.8-29.fc41                     fedora          166.3 KiB
 binutils                             x86_64 2.43.1-2.fc41                   updates-testing  27.5 MiB
 bison                                x86_64 3.8.2-9.fc41                    fedora            3.5 MiB
 boost-atomic                         x86_64 1.83.0-8.fc41                   fedora           21.0 KiB
 boost-filesystem                     x86_64 1.83.0-8.fc41                   fedora          147.6 KiB
 boost-system                         x86_64 1.83.0-8.fc41                   fedora           16.3 KiB
 boost-thread                         x86_64 1.83.0-8.fc41                   fedora          136.8 KiB
 cairo                                x86_64 1.18.0-4.fc41                   fedora            1.7 MiB
 cairo-gobject                        x86_64 1.18.0-4.fc41                   fedora           35.2 KiB
 cmake-filesystem                     x86_64 3.28.3-7.fc41                   fedora            0.0   B
 cpio                                 x86_64 2.15-2.fc41                     fedora            1.1 MiB
 cpp                                  x86_64 14.2.1-3.fc41                   updates-testing  35.0 MiB
 cracklib                             x86_64 2.9.11-6.fc41                   fedora          238.9 KiB
 cups-libs                            x86_64 1:2.4.11-1.fc41                 updates-testing 622.9 KiB
 default-fonts-core-sans              noarch 4.1-2.fc41                      fedora           11.9 KiB
 dracut                               x86_64 102-3.fc41                      fedora            1.4 MiB
 dyninst                              x86_64 12.3.0-7.fc41                   fedora           14.3 MiB
 ed                                   x86_64 1.20.2-2.fc41                   fedora          146.9 KiB
 efivar-libs                          x86_64 39-6.fc41                       fedora          393.7 KiB
 elfutils-debuginfod-client           x86_64 0.191-8.fc41                    fedora           64.9 KiB
 elfutils-devel                       x86_64 0.191-8.fc41                    fedora          175.2 KiB
 elfutils-libelf-devel                x86_64 0.191-8.fc41                    fedora           34.4 KiB
 emacs-filesystem                     noarch 1:30.0-3.fc41                   fedora            0.0   B
 file                                 x86_64 5.45-7.fc41                     fedora          103.5 KiB
 flex                                 x86_64 2.6.4-18.fc41                   fedora          805.4 KiB
 fontconfig                           x86_64 2.15.0-8.fc41                   fedora          791.9 KiB
 fonts-filesystem                     noarch 1:2.0.5-17.fc41                 fedora            0.0   B
 freetype                             x86_64 2.13.3-1.fc41                   updates-testing 850.5 KiB
 fribidi                              x86_64 1.0.15-2.fc41                   fedora          368.4 KiB
 fuse3-libs                           x86_64 3.16.2-4.fc41                   fedora          281.5 KiB
 gcc                                  x86_64 14.2.1-3.fc41                   updates-testing 104.3 MiB
 gd                                   x86_64 2.3.3-17.fc41                   fedora          403.7 KiB
 gdbm                                 x86_64 1:1.23-7.fc41                   fedora          460.9 KiB
 gdk-pixbuf2                          x86_64 2.42.12-6.fc41                  fedora            2.5 MiB
 gettext-envsubst                     x86_64 0.22.5-6.fc41                   fedora           74.9 KiB
 gettext-libs                         x86_64 0.22.5-6.fc41                   fedora            1.7 MiB
 gettext-runtime                      x86_64 0.22.5-6.fc41                   fedora          481.3 KiB
 git-core                             x86_64 2.47.0-1.fc41                   updates-testing  22.5 MiB
 git-core-doc                         noarch 2.47.0-1.fc41                   updates-testing  17.2 MiB
 glibc-devel                          x86_64 2.40-3.fc41                     fedora           35.0 KiB
 glibc-headers-x86                    noarch 2.40-3.fc41                     fedora            2.2 MiB
 google-droid-sans-fonts              noarch 20200215-21.fc41                fedora            6.3 MiB
 google-noto-fonts-common             noarch 20240701-2.fc41                 fedora           17.5 KiB
 google-noto-sans-vf-fonts            noarch 20240701-2.fc41                 fedora            1.2 MiB
 gpgme                                x86_64 1.23.2-5.fc41                   fedora          579.3 KiB
 gpgmepp                              x86_64 1.23.2-5.fc41                   fedora          424.2 KiB
 graphite2                            x86_64 1.3.14-16.fc41                  fedora          192.0 KiB
 graphviz                             x86_64 12.1.0-1.fc41                   fedora           20.8 MiB
 graphviz-libs                        x86_64 12.1.0-1.fc41                   fedora            1.2 MiB
 groff-base                           x86_64 1.23.0-7.fc41                   fedora            3.8 MiB
 grub2-common                         noarch 1:2.12-9.fc41                   updates-testing   6.1 MiB
 grub2-pc-modules                     noarch 1:2.12-9.fc41                   updates-testing   3.2 MiB
 grub2-tools                          x86_64 1:2.12-9.fc41                   updates-testing   7.7 MiB
 grub2-tools-minimal                  x86_64 1:2.12-9.fc41                   updates-testing   3.0 MiB
 gts                                  x86_64 0.7.6-49.20121130.fc41          fedora          650.2 KiB
 gzip                                 x86_64 1.13-2.fc41                     fedora          389.0 KiB
 harfbuzz                             x86_64 9.0.0-3.fc41                    fedora            2.6 MiB
 jansson                              x86_64 2.13.1-10.fc41                  fedora           88.3 KiB
 jbig2dec-libs                        x86_64 0.20-5.fc41                     fedora          169.0 KiB
 jbigkit-libs                         x86_64 2.1-30.fc41                     fedora          117.6 KiB
 kernel-core                          x86_64 6.11.3-300.fc41                 updates-testing  71.1 MiB
 kernel-headers                       x86_64 6.11.3-300.fc41                 updates-testing   6.4 MiB
 kernel-modules                       x86_64 6.11.3-300.fc41                 updates-testing  62.7 MiB
 kernel-modules-core                  x86_64 6.11.3-300.fc41                 updates-testing  36.7 MiB
 lasi                                 x86_64 1.1.3-14.fc41                   fedora          130.8 KiB
 lcms2                                x86_64 2.16-4.fc41                     fedora          424.9 KiB
 less                                 x86_64 661-2.fc41                      fedora          405.3 KiB
 libICE                               x86_64 1.1.1-4.fc41                    fedora          181.2 KiB
 libSM                                x86_64 1.2.4-4.fc41                    fedora           97.3 KiB
 libX11                               x86_64 1.8.10-2.fc41                   fedora            1.3 MiB
 libX11-common                        noarch 1.8.10-2.fc41                   fedora            1.1 MiB
 libXau                               x86_64 1.0.11-7.fc41                   fedora           66.9 KiB
 libXext                              x86_64 1.3.6-2.fc41                    fedora           90.1 KiB
 libXft                               x86_64 2.3.8-7.fc41                    fedora          164.5 KiB
 libXpm                               x86_64 3.5.17-4.fc41                   fedora          148.4 KiB
 libXrender                           x86_64 0.9.11-7.fc41                   fedora           50.1 KiB
 libXt                                x86_64 1.3.0-4.fc41                    fedora          429.9 KiB
 libaom                               x86_64 3.9.0-3.fc41                    fedora            5.1 MiB
 libavif                              x86_64 1.0.4-7.fc41                    fedora          183.8 KiB
 libcbor                              x86_64 0.11.0-2.fc41                   fedora           73.9 KiB
 libdatrie                            x86_64 0.2.13-10.fc41                  fedora           57.9 KiB
 libdav1d                             x86_64 1.4.3-2.fc41                    fedora            1.7 MiB
 libedit                              x86_64 3.1-53.20240808cvs.fc41         fedora          244.1 KiB
 libfido2                             x86_64 1.15.0-2.fc41                   fedora          238.2 KiB
 libgs                                x86_64 10.03.1-3.fc41                  fedora           23.2 MiB
 libijs                               x86_64 0.35-23.fc41                    fedora           61.6 KiB
 libimagequant                        x86_64 4.0.3-5.fc41                    fedora          666.7 KiB
 libjpeg-turbo                        x86_64 3.0.2-3.fc41                    fedora          776.9 KiB
 libkcapi                             x86_64 1.5.0-4.fc41                    fedora           98.9 KiB
 libkcapi-hasher                      x86_64 1.5.0-4.fc41                    fedora           37.7 KiB
 libkcapi-hmaccalc                    x86_64 1.5.0-4.fc41                    fedora          175.0   B
 liblerc                              x86_64 4.0.0-7.fc41                    fedora          607.5 KiB
 libmpc                               x86_64 1.3.1-6.fc41                    fedora          164.7 KiB
 libnsl2                              x86_64 2.0.1-2.fc41                    fedora           57.9 KiB
 libpaper                             x86_64 1:2.1.1-7.fc41                  fedora           48.9 KiB
 libpng                               x86_64 2:1.6.40-4.fc41                 fedora          245.8 KiB
 libpwquality                         x86_64 1.4.5-11.fc41                   fedora          417.8 KiB
 librsvg2                             x86_64 2.59.1-1.fc41                   updates-testing   4.6 MiB
 libserf                              x86_64 1.3.10-6.fc41                   fedora          132.4 KiB
 libtextstyle                         x86_64 0.22.5-6.fc41                   fedora          195.6 KiB
 libthai                              x86_64 0.1.29-9.fc41                   fedora          783.5 KiB
 libtiff                              x86_64 4.6.0-6.fc41                    fedora          606.0 KiB
 libtirpc                             x86_64 1.3.5-0.fc41                    fedora          202.7 KiB
 libutempter                          x86_64 1.2.1-15.fc41                   fedora           57.7 KiB
 libvmaf                              x86_64 3.0.0-2.fc41                    fedora          823.0 KiB
 libwebp                              x86_64 1.4.0-4.fc41                    fedora          822.6 KiB
 libxcb                               x86_64 1.17.0-3.fc41                   updates-testing   1.2 MiB
 libxcrypt-devel                      x86_64 4.4.36-7.fc41                   fedora           30.3 KiB
 libzstd-devel                        x86_64 1.5.6-2.fc41                    fedora          202.4 KiB
 linux-firmware-whence                noarch 20240909-1.fc41                 updates-testing 274.0 KiB
 lmdb-libs                            x86_64 0.9.33-2.fc41                   fedora          109.6 KiB
 m4                                   x86_64 1.4.19-10.fc41                  fedora          592.9 KiB
 make                                 x86_64 1:4.4.1-8.fc41                  fedora            1.8 MiB
 mokutil                              x86_64 2:0.7.1-2.fc41                  fedora          102.8 KiB
 nano                                 x86_64 8.1-1.fc41                      fedora            2.9 MiB
 ncurses                              x86_64 6.5-2.20240629.fc41             fedora          627.3 KiB
 netpbm                               x86_64 11.02.00-7.fc41                 fedora          577.1 KiB
 nspr                                 x86_64 4.35.0-29.fc41                  updates-testing 320.4 KiB
 nss                                  x86_64 3.104.0-1.fc41                  updates-testing   1.9 MiB
 nss-softokn                          x86_64 3.104.0-1.fc41                  updates-testing   1.9 MiB
 nss-softokn-freebl                   x86_64 3.104.0-1.fc41                  updates-testing 783.6 KiB
 nss-sysinit                          x86_64 3.104.0-1.fc41                  updates-testing  22.2 KiB
 nss-util                             x86_64 3.104.0-1.fc41                  updates-testing 205.1 KiB
 openjpeg                             x86_64 2.5.2-4.fc41                    updates-testing 445.7 KiB
 openssh                              x86_64 9.8p1-3.fc41.1                  updates-testing   1.8 MiB
 openssh-clients                      x86_64 9.8p1-3.fc41.1                  updates-testing   2.6 MiB
 openssl-devel                        x86_64 1:3.2.2-9.fc41                  updates-testing   4.3 MiB
 os-prober                            x86_64 1.81-8.fc41                     fedora          114.4 KiB
 pam                                  x86_64 1.6.1-5.fc41                    fedora            1.8 MiB
 pango                                x86_64 1.54.0-2.fc41                   fedora          996.2 KiB
 perl-AutoLoader                      noarch 5.74-511.fc41                   fedora           20.5 KiB
 perl-B                               x86_64 1.89-511.fc41                   fedora          498.0 KiB
 perl-Carp                            noarch 1.54-511.fc41                   fedora           46.6 KiB
 perl-Class-Struct                    noarch 0.68-511.fc41                   fedora           25.4 KiB
 perl-Data-Dumper                     x86_64 2.189-512.fc41                  fedora          111.7 KiB
 perl-Digest                          noarch 1.20-511.fc41                   fedora           35.3 KiB
 perl-Digest-MD5                      x86_64 2.59-5.fc41                     fedora           59.8 KiB
 perl-DynaLoader                      x86_64 1.56-511.fc41                   fedora           32.1 KiB
 perl-Encode                          x86_64 4:3.21-511.fc41                 fedora            4.7 MiB
 perl-Errno                           x86_64 1.38-511.fc41                   fedora            8.4 KiB
 perl-Error                           noarch 1:0.17029-16.fc41               fedora           77.3 KiB
 perl-Exporter                        noarch 5.78-511.fc41                   fedora           54.3 KiB
 perl-Fcntl                           x86_64 1.18-511.fc41                   fedora           49.0 KiB
 perl-File-Basename                   noarch 2.86-511.fc41                   fedora           14.0 KiB
 perl-File-Find                       noarch 1.44-511.fc41                   fedora           41.9 KiB
 perl-File-Path                       noarch 2.18-511.fc41                   fedora           63.5 KiB
 perl-File-Temp                       noarch 1:0.231.100-511.fc41            fedora          162.3 KiB
 perl-File-stat                       noarch 1.14-511.fc41                   fedora           12.5 KiB
 perl-FileHandle                      noarch 2.05-511.fc41                   fedora            9.3 KiB
 perl-Getopt-Long                     noarch 1:2.58-2.fc41                   fedora          144.5 KiB
 perl-Getopt-Std                      noarch 1.14-511.fc41                   fedora           11.2 KiB
 perl-Git                             noarch 2.47.0-1.fc41                   updates-testing  64.0 KiB
 perl-HTTP-Tiny                       noarch 0.088-512.fc41                  fedora          152.2 KiB
 perl-IO                              x86_64 1.55-511.fc41                   fedora          151.1 KiB
 perl-IO-Socket-IP                    noarch 0.42-512.fc41                   fedora           98.7 KiB
 perl-IO-Socket-SSL                   noarch 2.089-1.fc41                    updates-testing 703.3 KiB
 perl-IPC-Open3                       noarch 1.22-511.fc41                   fedora           22.5 KiB
 perl-MIME-Base32                     noarch 1.303-21.fc41                   fedora           30.7 KiB
 perl-MIME-Base64                     x86_64 3.16-511.fc41                   fedora           46.1 KiB
 perl-Mozilla-CA                      noarch 20240730-1.fc41                 fedora            9.8 KiB
 perl-Net-SSLeay                      x86_64 1.94-7.fc41                     fedora            1.3 MiB
 perl-POSIX                           x86_64 2.20-511.fc41                   fedora          235.1 KiB
 perl-PathTools                       x86_64 3.91-511.fc41                   fedora          180.0 KiB
 perl-Pod-Escapes                     noarch 1:1.07-511.fc41                 fedora           24.9 KiB
 perl-Pod-Perldoc                     noarch 3.28.01-512.fc41                fedora          163.7 KiB
 perl-Pod-Simple                      noarch 1:3.45-511.fc41                 fedora          560.9 KiB
 perl-Pod-Usage                       noarch 4:2.03-511.fc41                 fedora           84.8 KiB
 perl-Scalar-List-Utils               x86_64 5:1.66-1.fc41                   updates-testing 146.7 KiB
 perl-SelectSaver                     noarch 1.02-511.fc41                   fedora            2.2 KiB
 perl-Socket                          x86_64 4:2.038-511.fc41                fedora          124.0 KiB
 perl-Storable                        x86_64 1:3.32-511.fc41                 fedora          232.4 KiB
 perl-Symbol                          noarch 1.09-511.fc41                   fedora            6.8 KiB
 perl-Term-ANSIColor                  noarch 5.01-512.fc41                   fedora           97.5 KiB
 perl-Term-Cap                        noarch 1.18-511.fc41                   fedora           29.3 KiB
 perl-TermReadKey                     x86_64 2.38-23.fc41                    fedora           64.1 KiB
 perl-Text-ParseWords                 noarch 3.31-511.fc41                   fedora           13.6 KiB
 perl-Text-Tabs+Wrap                  noarch 2024.001-511.fc41               fedora           22.6 KiB
 perl-Time-Local                      noarch 2:1.350-511.fc41                fedora           69.0 KiB
 perl-URI                             noarch 5.30-1.fc41                     updates-testing 256.9 KiB
 perl-base                            noarch 2.27-511.fc41                   fedora           12.5 KiB
 perl-constant                        noarch 1.33-512.fc41                   fedora           26.2 KiB
 perl-if                              noarch 0.61.000-511.fc41               fedora            5.8 KiB
 perl-interpreter                     x86_64 4:5.40.0-511.fc41               fedora          122.3 KiB
 perl-lib                             x86_64 0.65-511.fc41                   fedora            8.5 KiB
 perl-libnet                          noarch 3.15-512.fc41                   fedora          289.4 KiB
 perl-libs                            x86_64 4:5.40.0-511.fc41               fedora            9.9 MiB
 perl-locale                          noarch 1.12-511.fc41                   fedora            6.5 KiB
 perl-mro                             x86_64 1.29-511.fc41                   fedora           45.6 KiB
 perl-overload                        noarch 1.37-511.fc41                   fedora           71.5 KiB
 perl-overloading                     noarch 0.02-511.fc41                   fedora            4.8 KiB
 perl-parent                          noarch 1:0.242-1.fc41                  fedora           10.0 KiB
 perl-podlators                       noarch 1:6.0.2-2.fc41                  fedora          317.5 KiB
 perl-vars                            noarch 1.05-511.fc41                   fedora            3.9 KiB
 pixman                               x86_64 0.43.4-2.fc41                   fedora          718.1 KiB
 poppler                              x86_64 24.08.0-1.fc41                  fedora            3.6 MiB
 poppler-data                         noarch 0.4.11-8.fc41                   fedora           12.3 MiB
 poppler-glib                         x86_64 24.08.0-1.fc41                  fedora          586.9 KiB
 procps-ng                            x86_64 4.0.4-4.fc41                    fedora            1.0 MiB
 rav1e-libs                           x86_64 0.7.1-4.fc41                    updates-testing   3.0 MiB
 rsvg-pixbuf-loader                   x86_64 2.59.1-1.fc41                   updates-testing 335.9 KiB
 shared-mime-info                     x86_64 2.3-6.fc41                      fedora            5.2 MiB
 subversion-libs                      x86_64 1.14.3-10.fc41                  fedora            4.4 MiB
 svt-av1-libs                         x86_64 2.1.0-2.fc41                    fedora            7.1 MiB
 systemtap-client                     x86_64 5.2~pre17250223gd07e4284-1.fc41 updates-testing  11.5 MiB
 systemtap-devel                      x86_64 5.2~pre17250223gd07e4284-1.fc41 updates-testing   9.0 MiB
 systemtap-runtime                    x86_64 5.2~pre17250223gd07e4284-1.fc41 updates-testing   1.0 MiB
 tbb                                  x86_64 2021.13.0-2.fc41                fedora          440.8 KiB
 tpm2-tss-fapi                        x86_64 4.1.3-3.fc41                    fedora          870.0 KiB
 unzip                                x86_64 6.0-64.fc41                     fedora          386.8 KiB
 urw-base35-bookman-fonts             noarch 20200910-23.fc41                fedora            1.4 MiB
 urw-base35-c059-fonts                noarch 20200910-23.fc41                fedora            1.4 MiB
 urw-base35-d050000l-fonts            noarch 20200910-23.fc41                fedora           84.3 KiB
 urw-base35-fonts                     noarch 20200910-23.fc41                fedora            5.3 KiB
 urw-base35-fonts-common              noarch 20200910-23.fc41                fedora           37.4 KiB
 urw-base35-gothic-fonts              noarch 20200910-23.fc41                fedora            1.2 MiB
 urw-base35-nimbus-mono-ps-fonts      noarch 20200910-23.fc41                fedora            1.0 MiB
 urw-base35-nimbus-roman-fonts        noarch 20200910-23.fc41                fedora            1.4 MiB
 urw-base35-nimbus-sans-fonts         noarch 20200910-23.fc41                fedora            2.4 MiB
 urw-base35-p052-fonts                noarch 20200910-23.fc41                fedora            1.5 MiB
 urw-base35-standard-symbols-ps-fonts noarch 20200910-23.fc41                fedora           64.9 KiB
 urw-base35-z003-fonts                noarch 20200910-23.fc41                fedora          390.8 KiB
 utf8proc                             x86_64 2.7.0-8.fc41                    fedora          362.4 KiB
 util-linux                           x86_64 2.40.2-4.fc41                   fedora            3.7 MiB
 which                                x86_64 2.21-42.fc41                    fedora           80.2 KiB
 xapian-core-libs                     x86_64 1.4.26-1.fc41                   fedora            2.1 MiB
 xml-common                           noarch 0.6.3-65.fc41                   fedora           78.4 KiB
 xz                                   x86_64 1:5.6.2-2.fc41                  fedora            1.2 MiB
 xz-devel                             x86_64 1:5.6.2-2.fc41                  fedora          255.6 KiB
 zip                                  x86_64 3.0-41.fc41                     fedora          703.2 KiB
 zlib-ng-compat-devel                 x86_64 2.1.7-3.fc41                    updates-testing 106.8 KiB
Installing weak dependencies:
 amd-gpu-firmware                     noarch 20240909-1.fc41                 updates-testing  21.1 MiB
 amd-ucode-firmware                   noarch 20240909-1.fc41                 updates-testing 241.7 KiB
 apr-util-lmdb                        x86_64 1.6.3-21.fc41                   fedora           15.2 KiB
 apr-util-openssl                     x86_64 1.6.3-21.fc41                   fedora           23.5 KiB
 atheros-firmware                     noarch 20240909-1.fc41                 updates-testing  27.9 MiB
 brcmfmac-firmware                    noarch 20240909-1.fc41                 updates-testing   9.5 MiB
 cirrus-audio-firmware                noarch 20240909-1.fc41                 updates-testing   1.0 MiB
 cracklib-dicts                       x86_64 2.9.11-6.fc41                   fedora            9.3 MiB
 elfutils-debuginfod-client-devel     x86_64 0.191-8.fc41                    fedora            9.3 KiB
 intel-audio-firmware                 noarch 20240909-1.fc41                 updates-testing   3.3 MiB
 intel-gpu-firmware                   noarch 20240909-1.fc41                 updates-testing   8.7 MiB
 kernel-devel                         x86_64 6.11.3-300.fc41                 updates-testing  75.1 MiB
 kpartx                               x86_64 0.9.9-3.fc41                    fedora           86.4 KiB
 linux-firmware                       noarch 20240909-1.fc41                 updates-testing  37.3 MiB
 memstrack                            x86_64 0.2.5-5.fc41                    fedora          120.1 KiB
 mt7xxx-firmware                      noarch 20240909-1.fc41                 updates-testing  12.0 MiB
 nano-default-editor                  noarch 8.1-1.fc41                      fedora          514.0   B
 nvidia-gpu-firmware                  noarch 20240909-1.fc41                 updates-testing  37.9 MiB
 nxpwireless-firmware                 noarch 20240909-1.fc41                 updates-testing 905.2 KiB
 perl-NDBM_File                       x86_64 1.17-511.fc41                   fedora           32.5 KiB
 pigz                                 x86_64 2.8-5.fc41                      fedora          162.9 KiB
 realtek-firmware                     noarch 20240909-1.fc41                 updates-testing   3.7 MiB
 sudo-python-plugin                   x86_64 1.9.15-5.p5.fc41                fedora          107.5 KiB
 tiwilink-firmware                    noarch 20240909-1.fc41                 updates-testing   4.6 MiB
 tpm2-tools                           x86_64 5.7-2.fc41                      fedora            1.5 MiB
Installing groups:
 Development Tools                                                                                    

Transaction Summary:
 Installing:       276 packages

Total size of inbound packages is 480 MiB. Need to download 480 MiB.
After this operation, 994 MiB extra will be used (install 994 MiB, remove 0 B).
[  1/276] diffstat-0:1.66-2.fc41.x86_64 100% |  68.7 KiB/s |  45.4 KiB |  00m01s
[  2/276] gettext-0:0.22.5-6.fc41.x86_6 100% |   1.5 MiB/s |   1.1 MiB |  00m01s
[  3/276] sudo-0:1.9.15-5.p5.fc41.x86_6 100% |   1.7 MiB/s |   1.3 MiB |  00m01s
[  4/276] patchutils-0:0.4.2-14.fc41.x8 100% |   2.2 MiB/s | 107.3 KiB |  00m00s
[  5/276] patch-0:2.7.6-25.fc41.x86_64  100% | 748.3 KiB/s | 131.0 KiB |  00m00s
[  6/276] subversion-0:1.14.3-10.fc41.x 100% |   5.6 MiB/s |   1.0 MiB |  00m00s
[  7/276] gettext-runtime-0:0.22.5-6.fc 100% |   1.9 MiB/s | 121.8 KiB |  00m00s
[  8/276] libtextstyle-0:0.22.5-6.fc41. 100% |   2.2 MiB/s |  88.4 KiB |  00m00s
[  9/276] perl-interpreter-4:5.40.0-511 100% |   2.5 MiB/s |  72.3 KiB |  00m00s
[ 10/276] xapian-core-libs-0:1.4.26-1.f 100% |   6.4 MiB/s | 778.6 KiB |  00m00s
[ 11/276] gettext-libs-0:0.22.5-6.fc41. 100% |   1.8 MiB/s | 666.4 KiB |  00m00s
[ 12/276] perl-Getopt-Std-0:1.14-511.fc 100% | 539.4 KiB/s |  15.6 KiB |  00m00s
[ 13/276] ed-0:1.20.2-2.fc41.x86_64     100% |   1.8 MiB/s |  81.8 KiB |  00m00s
[ 14/276] apr-util-0:1.6.3-21.fc41.x86_ 100% |   1.5 MiB/s |  97.4 KiB |  00m00s
[ 15/276] gettext-envsubst-0:0.22.5-6.f 100% | 563.8 KiB/s |  37.8 KiB |  00m00s
[ 16/276] subversion-libs-0:1.14.3-10.f 100% |   5.6 MiB/s |   1.5 MiB |  00m00s
[ 17/276] perl-Exporter-0:5.78-511.fc41 100% |   1.3 MiB/s |  30.9 KiB |  00m00s
[ 18/276] libserf-0:1.3.10-6.fc41.x86_6 100% |   2.1 MiB/s |  59.3 KiB |  00m00s
[ 19/276] utf8proc-0:2.7.0-8.fc41.x86_6 100% |   2.7 MiB/s |  80.5 KiB |  00m00s
[ 20/276] doxygen-2:1.12.0-1.fc41.x86_6 100% |   5.4 MiB/s |   5.5 MiB |  00m01s
[ 21/276] perl-Carp-0:1.54-511.fc41.noa 100% | 722.3 KiB/s |  28.9 KiB |  00m00s
[ 22/276] perl-DynaLoader-0:1.56-511.fc 100% | 963.4 KiB/s |  26.0 KiB |  00m00s
[ 23/276] perl-PathTools-0:3.91-511.fc4 100% |   2.0 MiB/s |  87.4 KiB |  00m00s
[ 24/276] perl-vars-0:1.05-511.fc41.noa 100% | 589.0 KiB/s |  13.0 KiB |  00m00s
[ 25/276] perl-constant-0:1.33-512.fc41 100% |   1.0 MiB/s |  23.0 KiB |  00m00s
[ 26/276] perl-Errno-0:1.38-511.fc41.x8 100% | 233.1 KiB/s |  14.9 KiB |  00m00s
[ 27/276] perl-File-Basename-0:2.86-511 100% | 778.3 KiB/s |  17.1 KiB |  00m00s
[ 28/276] perl-File-Find-0:1.44-511.fc4 100% | 972.6 KiB/s |  25.3 KiB |  00m00s
[ 29/276] perl-Getopt-Long-1:2.58-2.fc4 100% |   3.3 MiB/s |  63.9 KiB |  00m00s
[ 30/276] perl-IPC-Open3-0:1.22-511.fc4 100% |   1.3 MiB/s |  21.8 KiB |  00m00s
[ 31/276] perl-TermReadKey-0:2.38-23.fc 100% |   1.9 MiB/s |  35.6 KiB |  00m00s
[ 32/276] perl-libs-4:5.40.0-511.fc41.x 100% |   4.5 MiB/s |   2.3 MiB |  00m01s
[ 33/276] git-0:2.47.0-1.fc41.x86_64    100% | 281.3 KiB/s |  52.0 KiB |  00m00s
[ 34/276] perl-lib-0:0.65-511.fc41.x86_ 100% | 324.1 KiB/s |  14.9 KiB |  00m00s
[ 35/276] perl-base-0:2.27-511.fc41.noa 100% | 622.0 KiB/s |  16.2 KiB |  00m00s
[ 36/276] perl-Text-ParseWords-0:3.31-5 100% | 592.0 KiB/s |  16.6 KiB |  00m00s
[ 37/276] perl-overload-0:1.37-511.fc41 100% |   1.5 MiB/s |  45.5 KiB |  00m00s
[ 38/276] perl-Fcntl-0:1.18-511.fc41.x8 100% | 744.2 KiB/s |  29.8 KiB |  00m00s
[ 39/276] perl-Pod-Usage-4:2.03-511.fc4 100% | 470.7 KiB/s |  40.0 KiB |  00m00s
[ 40/276] perl-IO-0:1.55-511.fc41.x86_6 100% |   3.0 MiB/s |  81.8 KiB |  00m00s
[ 41/276] perl-Symbol-0:1.09-511.fc41.n 100% | 488.1 KiB/s |  14.2 KiB |  00m00s
[ 42/276] perl-POSIX-0:2.20-511.fc41.x8 100% |   1.9 MiB/s |  97.0 KiB |  00m00s
[ 43/276] perl-mro-0:1.29-511.fc41.x86_ 100% |   1.7 MiB/s |  29.9 KiB |  00m00s
[ 44/276] perl-Pod-Perldoc-0:3.28.01-51 100% |   1.4 MiB/s |  86.1 KiB |  00m00s
[ 45/276] perl-overloading-0:0.02-511.f 100% | 536.1 KiB/s |  12.9 KiB |  00m00s
[ 46/276] perl-File-stat-0:1.14-511.fc4 100% | 944.8 KiB/s |  17.0 KiB |  00m00s
[ 47/276] perl-SelectSaver-0:1.02-511.f 100% | 649.1 KiB/s |  11.7 KiB |  00m00s
[ 48/276] perl-Socket-4:2.038-511.fc41. 100% |   1.8 MiB/s |  54.8 KiB |  00m00s
[ 49/276] perl-locale-0:1.12-511.fc41.n 100% | 798.8 KiB/s |  13.6 KiB |  00m00s
[ 50/276] perl-podlators-1:6.0.2-2.fc41 100% |   1.3 MiB/s | 128.9 KiB |  00m00s
[ 51/276] perl-File-Temp-1:0.231.100-51 100% |   2.0 MiB/s |  59.1 KiB |  00m00s
[ 52/276] perl-HTTP-Tiny-0:0.088-512.fc 100% |   1.4 MiB/s |  55.8 KiB |  00m00s
[ 53/276] perl-parent-1:0.242-1.fc41.no 100% | 454.6 KiB/s |  15.0 KiB |  00m00s
[ 54/276] perl-Pod-Simple-1:3.45-511.fc 100% |   3.5 MiB/s | 219.0 KiB |  00m00s
[ 55/276] perl-Term-ANSIColor-0:5.01-51 100% |   1.5 MiB/s |  47.7 KiB |  00m00s
[ 56/276] perl-Term-Cap-0:1.18-511.fc41 100% | 848.8 KiB/s |  22.1 KiB |  00m00s
[ 57/276] perl-Class-Struct-0:0.68-511. 100% |   1.1 MiB/s |  22.0 KiB |  00m00s
[ 58/276] perl-File-Path-0:2.18-511.fc4 100% |   1.9 MiB/s |  35.3 KiB |  00m00s
[ 59/276] perl-MIME-Base64-0:3.16-511.f 100% |   1.5 MiB/s |  29.9 KiB |  00m00s
[ 60/276] perl-Mozilla-CA-0:20240730-1. 100% | 548.4 KiB/s |  14.3 KiB |  00m00s
[ 61/276] perl-Time-Local-2:1.350-511.f 100% |   1.9 MiB/s |  34.5 KiB |  00m00s
[ 62/276] perl-Pod-Escapes-1:1.07-511.f 100% |   1.0 MiB/s |  19.8 KiB |  00m00s
[ 63/276] perl-Text-Tabs+Wrap-0:2024.00 100% |   1.2 MiB/s |  21.9 KiB |  00m00s
[ 64/276] perl-if-0:0.61.000-511.fc41.n 100% | 775.7 KiB/s |  14.0 KiB |  00m00s
[ 65/276] perl-Net-SSLeay-0:1.94-7.fc41 100% |   2.8 MiB/s | 375.7 KiB |  00m00s
[ 66/276] perl-AutoLoader-0:5.74-511.fc 100% |   1.1 MiB/s |  21.2 KiB |  00m00s
[ 67/276] ncurses-0:6.5-2.20240629.fc41 100% |   4.0 MiB/s | 423.8 KiB |  00m00s
[ 68/276] groff-base-0:1.23.0-7.fc41.x8 100% |   3.0 MiB/s |   1.1 MiB |  00m00s
[ 69/276] emacs-filesystem-1:30.0-3.fc4 100% | 264.5 KiB/s |   7.1 KiB |  00m00s
[ 70/276] kernel-0:6.11.3-300.fc41.x86_ 100% |   1.3 MiB/s | 182.6 KiB |  00m00s
[ 71/276] mercurial-0:6.8.1-3.fc41.x86_ 100% |  26.4 MiB/s |   6.5 MiB |  00m00s
[ 72/276] openssh-server-0:9.8p1-3.fc41 100% |   2.7 MiB/s | 518.2 KiB |  00m00s
[ 73/276] grub2-pc-1:2.12-9.fc41.x86_64 100% | 365.1 KiB/s |  16.4 KiB |  00m00s
[ 74/276] file-0:5.45-7.fc41.x86_64     100% |   1.8 MiB/s |  49.1 KiB |  00m00s
[ 75/276] which-0:2.21-42.fc41.x86_64   100% |   1.4 MiB/s |  41.6 KiB |  00m00s
[ 76/276] gzip-0:1.13-2.fc41.x86_64     100% |   2.7 MiB/s | 170.2 KiB |  00m00s
[ 77/276] cpio-0:2.15-2.fc41.x86_64     100% |   3.9 MiB/s | 291.8 KiB |  00m00s
[ 78/276] dracut-0:102-3.fc41.x86_64    100% |   3.9 MiB/s | 466.2 KiB |  00m00s
[ 79/276] libkcapi-hasher-0:1.5.0-4.fc4 100% | 718.3 KiB/s |  25.9 KiB |  00m00s
[ 80/276] libkcapi-hmaccalc-0:1.5.0-4.f 100% |  94.7 KiB/s |   9.1 KiB |  00m00s
[ 81/276] libkcapi-0:1.5.0-4.fc41.x86_6 100% | 681.2 KiB/s |  46.3 KiB |  00m00s
[ 82/276] systemtap-0:5.2~pre17250223gd 100% | 200.3 KiB/s |   8.2 KiB |  00m00s
[ 83/276] libnsl2-0:2.0.1-2.fc41.x86_64 100% | 897.3 KiB/s |  29.6 KiB |  00m00s
[ 84/276] xz-1:5.6.2-2.fc41.x86_64      100% |   2.0 MiB/s | 471.5 KiB |  00m00s
[ 85/276] libpwquality-0:1.4.5-11.fc41. 100% |   1.6 MiB/s | 119.0 KiB |  00m00s
[ 86/276] libtirpc-0:1.3.5-0.fc41.x86_6 100% |   2.6 MiB/s |  94.2 KiB |  00m00s
[ 87/276] cracklib-0:2.9.11-6.fc41.x86_ 100% |   1.0 MiB/s |  92.1 KiB |  00m00s
[ 88/276] apr-0:1.7.5-1.fc41.x86_64     100% |   2.1 MiB/s | 128.6 KiB |  00m00s
[ 89/276] perl-Storable-1:3.32-511.fc41 100% |   1.3 MiB/s |  98.4 KiB |  00m00s
[ 90/276] pam-0:1.6.1-5.fc41.x86_64     100% |   1.6 MiB/s | 554.0 KiB |  00m00s
[ 91/276] perl-Scalar-List-Utils-5:1.66 100% | 708.3 KiB/s |  72.2 KiB |  00m00s
[ 92/276] perl-IO-Socket-SSL-0:2.089-1. 100% |   2.5 MiB/s | 231.2 KiB |  00m00s
[ 93/276] perl-IO-Socket-IP-0:0.42-512. 100% |   1.0 MiB/s |  41.8 KiB |  00m00s
[ 94/276] perl-Encode-4:3.21-511.fc41.x 100% |   4.5 MiB/s |   1.1 MiB |  00m00s
[ 95/276] authselect-0:1.5.0-8.fc41.x86 100% |   2.4 MiB/s | 145.8 KiB |  00m00s
[ 96/276] gdbm-1:1.23-7.fc41.x86_64     100% | 820.5 KiB/s | 151.8 KiB |  00m00s
[ 97/276] procps-ng-0:4.0.4-4.fc41.x86_ 100% |   2.0 MiB/s | 366.7 KiB |  00m00s
[ 98/276] libutempter-0:1.2.1-15.fc41.x 100% | 739.3 KiB/s |  26.6 KiB |  00m00s
[ 99/276] util-linux-0:2.40.2-4.fc41.x8 100% |   2.3 MiB/s |   1.2 MiB |  00m01s
[100/276] cairo-0:1.18.0-4.fc41.x86_64  100% |   1.9 MiB/s | 709.9 KiB |  00m00s
[101/276] gd-0:2.3.3-17.fc41.x86_64     100% |   2.6 MiB/s | 135.8 KiB |  00m00s
[102/276] fontconfig-0:2.15.0-8.fc41.x8 100% |   1.5 MiB/s | 269.9 KiB |  00m00s
[103/276] gdk-pixbuf2-0:2.42.12-6.fc41. 100% |   2.4 MiB/s | 489.0 KiB |  00m00s
[104/276] graphviz-libs-0:12.1.0-1.fc41 100% |   4.2 MiB/s | 465.6 KiB |  00m00s
[105/276] gts-0:0.7.6-49.20121130.fc41. 100% |   3.8 MiB/s | 241.3 KiB |  00m00s
[106/276] lasi-0:1.1.3-14.fc41.x86_64   100% |   2.9 MiB/s |  55.6 KiB |  00m00s
[107/276] graphviz-0:12.1.0-1.fc41.x86_ 100% |   5.3 MiB/s |   4.7 MiB |  00m01s
[108/276] libXrender-0:0.9.11-7.fc41.x8 100% |   1.1 MiB/s |  27.5 KiB |  00m00s
[109/276] libX11-0:1.8.10-2.fc41.x86_64 100% |   2.0 MiB/s | 649.9 KiB |  00m00s
[110/276] harfbuzz-0:9.0.0-3.fc41.x86_6 100% |   2.5 MiB/s |   1.0 MiB |  00m00s
[111/276] pango-0:1.54.0-2.fc41.x86_64  100% |   3.9 MiB/s | 347.5 KiB |  00m00s
[112/276] libwebp-0:1.4.0-4.fc41.x86_64 100% |   1.8 MiB/s | 292.0 KiB |  00m00s
[113/276] urw-base35-fonts-0:20200910-2 100% | 587.1 KiB/s |  10.0 KiB |  00m00s
[114/276] libXext-0:1.3.6-2.fc41.x86_64 100% | 868.4 KiB/s |  39.1 KiB |  00m00s
[115/276] poppler-glib-0:24.08.0-1.fc41 100% |   1.5 MiB/s | 191.6 KiB |  00m00s
[116/276] libpng-2:1.6.40-4.fc41.x86_64 100% |   1.9 MiB/s | 120.3 KiB |  00m00s
[117/276] default-fonts-core-sans-0:4.1 100% |   1.1 MiB/s |  31.1 KiB |  00m00s
[118/276] pixman-0:0.43.4-2.fc41.x86_64 100% |   2.8 MiB/s | 294.1 KiB |  00m00s
[119/276] fonts-filesystem-1:2.0.5-17.f 100% | 499.0 KiB/s |   8.5 KiB |  00m00s
[120/276] xml-common-0:0.6.3-65.fc41.no 100% |   1.3 MiB/s |  31.2 KiB |  00m00s
[121/276] libXpm-0:3.5.17-4.fc41.x86_64 100% |   1.7 MiB/s |  66.0 KiB |  00m00s
[122/276] libavif-0:1.0.4-7.fc41.x86_64 100% |   2.3 MiB/s |  91.3 KiB |  00m00s
[123/276] libimagequant-0:4.0.3-5.fc41. 100% |   3.5 MiB/s | 301.2 KiB |  00m00s
[124/276] libjpeg-turbo-0:3.0.2-3.fc41. 100% |   2.7 MiB/s | 227.3 KiB |  00m00s
[125/276] libtiff-0:4.6.0-6.fc41.x86_64 100% |   3.0 MiB/s | 212.0 KiB |  00m00s
[126/276] netpbm-0:11.02.00-7.fc41.x86_ 100% |   3.5 MiB/s | 184.1 KiB |  00m00s
[127/276] libgs-0:10.03.1-3.fc41.x86_64 100% |   4.5 MiB/s |   3.4 MiB |  00m01s
[128/276] graphite2-0:1.3.14-16.fc41.x8 100% |   2.4 MiB/s |  95.1 KiB |  00m00s
[129/276] libX11-common-0:1.8.10-2.fc41 100% |   3.7 MiB/s | 175.8 KiB |  00m00s
[130/276] shared-mime-info-0:2.3-6.fc41 100% |   1.9 MiB/s | 390.6 KiB |  00m00s
[131/276] adobe-mappings-cmap-deprecate 100% |   3.9 MiB/s | 110.5 KiB |  00m00s
[132/276] adobe-mappings-pdf-0:20190401 100% |   3.3 MiB/s | 627.4 KiB |  00m00s
[133/276] jbig2dec-libs-0:0.20-5.fc41.x 100% |   2.4 MiB/s |  74.0 KiB |  00m00s
[134/276] lcms2-0:2.16-4.fc41.x86_64    100% |   2.9 MiB/s | 180.3 KiB |  00m00s
[135/276] libXt-0:1.3.0-4.fc41.x86_64   100% |   2.8 MiB/s | 177.4 KiB |  00m00s
[136/276] libijs-0:0.35-23.fc41.x86_64  100% |   1.0 MiB/s |  29.5 KiB |  00m00s
[137/276] adobe-mappings-cmap-0:2023062 100% |   4.6 MiB/s |   2.1 MiB |  00m00s
[138/276] libpaper-1:2.1.1-7.fc41.x86_6 100% | 682.7 KiB/s |  27.3 KiB |  00m00s
[139/276] libXft-0:2.3.8-7.fc41.x86_64  100% |   1.9 MiB/s |  72.3 KiB |  00m00s
[140/276] fribidi-0:1.0.15-2.fc41.x86_6 100% |   1.6 MiB/s |  92.2 KiB |  00m00s
[141/276] libthai-0:0.1.29-9.fc41.x86_6 100% |   4.1 MiB/s | 211.8 KiB |  00m00s
[142/276] google-droid-sans-fonts-0:202 100% |   4.5 MiB/s |   2.7 MiB |  00m01s
[143/276] urw-base35-bookman-fonts-0:20 100% |   4.7 MiB/s | 846.8 KiB |  00m00s
[144/276] urw-base35-d050000l-fonts-0:2 100% |   2.5 MiB/s |  75.7 KiB |  00m00s
[145/276] urw-base35-fonts-common-0:202 100% | 506.0 KiB/s |  20.7 KiB |  00m00s
[146/276] poppler-0:24.08.0-1.fc41.x86_ 100% |   3.7 MiB/s |   1.2 MiB |  00m00s
[147/276] urw-base35-c059-fonts-0:20200 100% |   4.2 MiB/s | 874.0 KiB |  00m00s
[148/276] urw-base35-nimbus-roman-fonts 100% |   5.5 MiB/s | 856.0 KiB |  00m00s
[149/276] urw-base35-nimbus-mono-ps-fon 100% |   4.1 MiB/s | 794.6 KiB |  00m00s
[150/276] urw-base35-gothic-fonts-0:202 100% |   2.4 MiB/s | 642.4 KiB |  00m00s
[151/276] urw-base35-standard-symbols-p 100% |   2.0 MiB/s |  58.2 KiB |  00m00s
[152/276] urw-base35-z003-fonts-0:20200 100% |   3.0 MiB/s | 275.4 KiB |  00m00s
[153/276] urw-base35-p052-fonts-0:20200 100% |   4.8 MiB/s | 973.1 KiB |  00m00s
[154/276] abattis-cantarell-vf-fonts-0: 100% |   2.0 MiB/s | 120.2 KiB |  00m00s
[155/276] urw-base35-nimbus-sans-fonts- 100% |   3.8 MiB/s |   1.3 MiB |  00m00s
[156/276] google-noto-sans-vf-fonts-0:2 100% |   4.3 MiB/s | 594.1 KiB |  00m00s
[157/276] libdav1d-0:1.4.3-2.fc41.x86_6 100% |   4.4 MiB/s | 625.6 KiB |  00m00s
[158/276] jbigkit-libs-0:2.1-30.fc41.x8 100% |   2.2 MiB/s |  53.3 KiB |  00m00s
[159/276] liblerc-0:4.0.0-7.fc41.x86_64 100% |   5.0 MiB/s | 210.3 KiB |  00m00s
[160/276] libICE-0:1.1.1-4.fc41.x86_64  100% |   2.4 MiB/s |  74.7 KiB |  00m00s
[161/276] libaom-0:3.9.0-3.fc41.x86_64  100% |   4.8 MiB/s |   1.8 MiB |  00m00s
[162/276] libSM-0:1.2.4-4.fc41.x86_64   100% |   1.6 MiB/s |  43.2 KiB |  00m00s
[163/276] libdatrie-0:0.2.13-10.fc41.x8 100% |   1.5 MiB/s |  32.2 KiB |  00m00s
[164/276] gpgmepp-0:1.23.2-5.fc41.x86_6 100% |   1.8 MiB/s | 138.1 KiB |  00m00s
[165/276] google-noto-fonts-common-0:20 100% | 818.9 KiB/s |  18.0 KiB |  00m00s
[166/276] libvmaf-0:3.0.0-2.fc41.x86_64 100% |   2.3 MiB/s | 193.7 KiB |  00m00s
[167/276] svt-av1-libs-0:2.1.0-2.fc41.x 100% |   4.4 MiB/s |   2.0 MiB |  00m00s
[168/276] freetype-0:2.13.3-1.fc41.x86_ 100% |   3.8 MiB/s | 409.2 KiB |  00m00s
[169/276] gpgme-0:1.23.2-5.fc41.x86_64  100% |   1.4 MiB/s | 212.4 KiB |  00m00s
[170/276] libXau-0:1.0.11-7.fc41.x86_64 100% |   1.3 MiB/s |  31.9 KiB |  00m00s
[171/276] libxcb-0:1.17.0-3.fc41.x86_64 100% |   2.6 MiB/s | 240.7 KiB |  00m00s
[172/276] avahi-libs-0:0.8-29.fc41.x86_ 100% |   1.6 MiB/s |  66.7 KiB |  00m00s
[173/276] boost-system-0:1.83.0-8.fc41. 100% | 864.2 KiB/s |  14.7 KiB |  00m00s
[174/276] systemtap-client-0:5.2~pre172 100% |  17.9 MiB/s |   4.0 MiB |  00m00s
[175/276] elfutils-debuginfod-client-0: 100% |   1.2 MiB/s |  37.2 KiB |  00m00s
[176/276] mokutil-2:0.7.1-2.fc41.x86_64 100% |   1.1 MiB/s |  48.0 KiB |  00m00s
[177/276] poppler-data-0:0.4.11-8.fc41. 100% |   2.8 MiB/s |   2.0 MiB |  00m01s
[178/276] unzip-0:6.0-64.fc41.x86_64    100% |   2.3 MiB/s | 184.9 KiB |  00m00s
[179/276] boost-filesystem-0:1.83.0-8.f 100% |   2.3 MiB/s |  68.6 KiB |  00m00s
[180/276] boost-thread-0:1.83.0-8.fc41. 100% |   2.1 MiB/s |  61.1 KiB |  00m00s
[181/276] zip-0:3.0-41.fc41.x86_64      100% |   2.8 MiB/s | 264.8 KiB |  00m00s
[182/276] efivar-libs-0:39-6.fc41.x86_6 100% |   3.6 MiB/s | 133.2 KiB |  00m00s
[183/276] tbb-0:2021.13.0-2.fc41.x86_64 100% |   3.1 MiB/s | 164.2 KiB |  00m00s
[184/276] boost-atomic-0:1.83.0-8.fc41. 100% |   1.1 MiB/s |  18.9 KiB |  00m00s
[185/276] systemtap-devel-0:5.2~pre1725 100% |  19.9 MiB/s |   2.4 MiB |  00m00s
[186/276] make-1:4.4.1-8.fc41.x86_64    100% |   5.0 MiB/s | 586.1 KiB |  00m00s
[187/276] perl-Data-Dumper-0:2.189-512. 100% |   3.1 MiB/s |  56.3 KiB |  00m00s
[188/276] perl-MIME-Base32-0:1.303-21.f 100% |   1.1 MiB/s |  20.5 KiB |  00m00s
[189/276] perl-URI-0:5.30-1.fc41.noarch 100% |   2.9 MiB/s | 140.8 KiB |  00m00s
[190/276] perl-libnet-0:3.15-512.fc41.n 100% |   3.1 MiB/s | 128.5 KiB |  00m00s
[191/276] perl-Digest-MD5-0:2.59-5.fc41 100% |   1.8 MiB/s |  36.0 KiB |  00m00s
[192/276] perl-B-0:1.89-511.fc41.x86_64 100% |   2.5 MiB/s | 176.3 KiB |  00m00s
[193/276] perl-FileHandle-0:2.05-511.fc 100% | 813.6 KiB/s |  15.5 KiB |  00m00s
[194/276] perl-Digest-0:1.20-511.fc41.n 100% | 957.8 KiB/s |  24.9 KiB |  00m00s
[195/276] openssh-0:9.8p1-3.fc41.1.x86_ 100% |   8.3 MiB/s | 414.3 KiB |  00m00s
[196/276] kernel-core-0:6.11.3-300.fc41 100% |  24.4 MiB/s |  18.0 MiB |  00m01s
[197/276] dyninst-0:12.3.0-7.fc41.x86_6 100% |   2.6 MiB/s |   3.8 MiB |  00m02s
[198/276] grub2-common-1:2.12-9.fc41.no 100% |   6.6 MiB/s |   1.0 MiB |  00m00s
[199/276] grub2-pc-modules-1:2.12-9.fc4 100% |  11.7 MiB/s |   1.1 MiB |  00m00s
[200/276] grub2-tools-1:2.12-9.fc41.x86 100% |  15.2 MiB/s |   1.8 MiB |  00m00s
[201/276] os-prober-0:1.81-8.fc41.x86_6 100% |   1.6 MiB/s |  50.4 KiB |  00m00s
[202/276] grub2-tools-minimal-1:2.12-9. 100% |   7.4 MiB/s | 610.9 KiB |  00m00s
[203/276] fuse3-libs-0:3.16.2-4.fc41.x8 100% |   1.0 MiB/s |  93.2 KiB |  00m00s
[204/276] git-core-0:2.47.0-1.fc41.x86_ 100% |  18.1 MiB/s |   4.8 MiB |  00m00s
[205/276] less-0:661-2.fc41.x86_64      100% |   1.5 MiB/s | 188.5 KiB |  00m00s
[206/276] git-core-doc-0:2.47.0-1.fc41. 100% |  14.2 MiB/s |   3.0 MiB |  00m00s
[207/276] perl-Git-0:2.47.0-1.fc41.noar 100% | 517.3 KiB/s |  38.8 KiB |  00m00s
[208/276] perl-Error-1:0.17029-16.fc41. 100% |   2.2 MiB/s |  40.6 KiB |  00m00s
[209/276] authselect-libs-0:1.5.0-8.fc4 100% |   3.7 MiB/s | 218.0 KiB |  00m00s
[210/276] nspr-0:4.35.0-29.fc41.x86_64  100% |   1.8 MiB/s | 137.6 KiB |  00m00s
[211/276] kernel-modules-core-0:6.11.3- 100% |  22.2 MiB/s |  38.0 MiB |  00m02s
[212/276] nss-0:3.104.0-1.fc41.x86_64   100% |   3.5 MiB/s | 704.1 KiB |  00m00s
[213/276] kernel-modules-0:6.11.3-300.f 100% |  24.6 MiB/s |  64.4 MiB |  00m03s
[214/276] openjpeg-0:2.5.2-4.fc41.x86_6 100% | 928.5 KiB/s | 186.6 KiB |  00m00s
[215/276] cups-libs-1:2.4.11-1.fc41.x86 100% |   1.2 MiB/s | 260.9 KiB |  00m00s
[216/276] cairo-gobject-0:1.18.0-4.fc41 100% | 667.1 KiB/s |  17.3 KiB |  00m00s
[217/276] rav1e-libs-0:0.7.1-4.fc41.x86 100% |   7.2 MiB/s |   1.0 MiB |  00m00s
[218/276] librsvg2-0:2.59.1-1.fc41.x86_ 100% |  11.9 MiB/s |   1.7 MiB |  00m00s
[219/276] elfutils-devel-0:0.191-8.fc41 100% |   2.3 MiB/s |  49.1 KiB |  00m00s
[220/276] libmpc-0:1.3.1-6.fc41.x86_64  100% |   1.6 MiB/s |  71.1 KiB |  00m00s
[221/276] elfutils-libelf-devel-0:0.191 100% | 777.3 KiB/s |  21.8 KiB |  00m00s
[222/276] openssh-clients-0:9.8p1-3.fc4 100% |  10.7 MiB/s | 741.7 KiB |  00m00s
[223/276] libedit-0:3.1-53.20240808cvs. 100% |   2.0 MiB/s | 105.6 KiB |  00m00s
[224/276] libcbor-0:0.11.0-2.fc41.x86_6 100% |   1.7 MiB/s |  33.1 KiB |  00m00s
[225/276] libfido2-0:1.15.0-2.fc41.x86_ 100% |   3.1 MiB/s |  98.1 KiB |  00m00s
[226/276] systemtap-runtime-0:5.2~pre17 100% |   6.2 MiB/s | 462.9 KiB |  00m00s
[227/276] nss-softokn-0:3.104.0-1.fc41. 100% |   5.3 MiB/s | 412.0 KiB |  00m00s
[228/276] nss-sysinit-0:3.104.0-1.fc41. 100% | 603.4 KiB/s |  19.3 KiB |  00m00s
[229/276] nss-util-0:3.104.0-1.fc41.x86 100% |   1.6 MiB/s |  86.0 KiB |  00m00s
[230/276] rsvg-pixbuf-loader-0:2.59.1-1 100% |   2.3 MiB/s | 164.7 KiB |  00m00s
[231/276] jansson-0:2.13.1-10.fc41.x86_ 100% |   1.4 MiB/s |  44.4 KiB |  00m00s
[232/276] binutils-0:2.43.1-2.fc41.x86_ 100% |  14.2 MiB/s |   6.5 MiB |  00m00s
[233/276] glibc-devel-0:2.40-3.fc41.x86 100% |   2.2 MiB/s | 133.3 KiB |  00m00s
[234/276] cpp-0:14.2.1-3.fc41.x86_64    100% |  19.0 MiB/s |  11.9 MiB |  00m01s
[235/276] libxcrypt-devel-0:4.4.36-7.fc 100% |   1.7 MiB/s |  28.9 KiB |  00m00s
[236/276] glibc-headers-x86-0:2.40-3.fc 100% |   2.2 MiB/s | 630.8 KiB |  00m00s
[237/276] kernel-headers-0:6.11.3-300.f 100% |  15.2 MiB/s |   1.6 MiB |  00m00s
[238/276] zlib-ng-compat-devel-0:2.1.7- 100% |   1.2 MiB/s |  38.1 KiB |  00m00s
[239/276] cmake-filesystem-0:3.28.3-7.f 100% | 675.8 KiB/s |  18.2 KiB |  00m00s
[240/276] libzstd-devel-0:1.5.6-2.fc41. 100% |   1.7 MiB/s |  51.8 KiB |  00m00s
[241/276] xz-devel-1:5.6.2-2.fc41.x86_6 100% |   2.2 MiB/s |  66.5 KiB |  00m00s
[242/276] nss-softokn-freebl-0:3.104.0- 100% |   6.9 MiB/s | 302.1 KiB |  00m00s
[243/276] gcc-0:14.2.1-3.fc41.x86_64    100% |  25.9 MiB/s |  36.9 MiB |  00m01s
[244/276] nano-default-editor-0:8.1-1.f 100% |  56.1 KiB/s |   9.1 KiB |  00m00s
[245/276] sudo-python-plugin-0:1.9.15-5 100% |   1.3 MiB/s |  54.0 KiB |  00m00s
[246/276] apr-util-lmdb-0:1.6.3-21.fc41 100% | 302.1 KiB/s |  14.5 KiB |  00m00s
[247/276] apr-util-openssl-0:1.6.3-21.f 100% |   1.0 MiB/s |  16.2 KiB |  00m00s
[248/276] perl-NDBM_File-0:1.17-511.fc4 100% |   1.0 MiB/s |  22.8 KiB |  00m00s
[249/276] kpartx-0:0.9.9-3.fc41.x86_64  100% |   2.4 MiB/s |  48.8 KiB |  00m00s
[250/276] pigz-0:2.8-5.fc41.x86_64      100% |   3.5 MiB/s |  95.6 KiB |  00m00s
[251/276] lmdb-libs-0:0.9.33-2.fc41.x86 100% | 541.3 KiB/s |  61.7 KiB |  00m00s
[252/276] nano-0:8.1-1.fc41.x86_64      100% |   2.3 MiB/s | 728.9 KiB |  00m00s
[253/276] memstrack-0:0.2.5-5.fc41.x86_ 100% |   1.6 MiB/s |  49.3 KiB |  00m00s
[254/276] tpm2-tss-fapi-0:4.1.3-3.fc41. 100% |   2.7 MiB/s | 331.7 KiB |  00m00s
[255/276] tpm2-tools-0:5.7-2.fc41.x86_6 100% |   3.3 MiB/s | 810.1 KiB |  00m00s
[256/276] bison-0:3.8.2-9.fc41.x86_64   100% |   4.9 MiB/s |   1.0 MiB |  00m00s
[257/276] flex-0:2.6.4-18.fc41.x86_64   100% |   4.8 MiB/s | 298.2 KiB |  00m00s
[258/276] m4-0:1.4.19-10.fc41.x86_64    100% |   5.2 MiB/s | 305.4 KiB |  00m00s
[259/276] kernel-devel-0:6.11.3-300.fc4 100% |  33.4 MiB/s |  20.9 MiB |  00m01s
[260/276] elfutils-debuginfod-client-de 100% | 315.3 KiB/s |  19.2 KiB |  00m00s
[261/276] linux-firmware-whence-0:20240 100% |   1.8 MiB/s |  49.8 KiB |  00m00s
[262/276] cracklib-dicts-0:2.9.11-6.fc4 100% |   4.1 MiB/s |   3.6 MiB |  00m01s
[263/276] openssl-devel-1:3.2.2-9.fc41. 100% |  13.7 MiB/s |   2.8 MiB |  00m00s
[264/276] amd-ucode-firmware-0:20240909 100% |   4.8 MiB/s | 237.9 KiB |  00m00s
[265/276] amd-gpu-firmware-0:20240909-1 100% |  18.1 MiB/s |  21.3 MiB |  00m01s
[266/276] linux-firmware-0:20240909-1.f 100% |  22.4 MiB/s |  37.2 MiB |  00m02s
[267/276] cirrus-audio-firmware-0:20240 100% |  10.4 MiB/s |   1.1 MiB |  00m00s
[268/276] atheros-firmware-0:20240909-1 100% |  21.3 MiB/s |  28.0 MiB |  00m01s
[269/276] brcmfmac-firmware-0:20240909- 100% |  23.9 MiB/s |   9.6 MiB |  00m00s
[270/276] intel-audio-firmware-0:202409 100% |  18.1 MiB/s |   3.2 MiB |  00m00s
[271/276] intel-gpu-firmware-0:20240909 100% |  17.9 MiB/s |   8.8 MiB |  00m00s
[272/276] nxpwireless-firmware-0:202409 100% |  11.1 MiB/s | 921.7 KiB |  00m00s
[273/276] mt7xxx-firmware-0:20240909-1. 100% |  20.3 MiB/s |  12.0 MiB |  00m01s
[274/276] realtek-firmware-0:20240909-1 100% |  17.8 MiB/s |   3.7 MiB |  00m00s
[275/276] tiwilink-firmware-0:20240909- 100% |  17.8 MiB/s |   4.6 MiB |  00m00s
[276/276] nvidia-gpu-firmware-0:2024090 100% |  28.1 MiB/s |  38.0 MiB |  00m01s
--------------------------------------------------------------------------------
[276/276] Total                         100% |  28.3 MiB/s | 480.3 MiB |  00m17s
Running transaction
[  1/278] Verify package files          100% | 275.0   B/s | 276.0   B |  00m01s
[  2/278] Prepare transaction           100% | 996.0   B/s | 276.0   B |  00m00s
[  3/278] Installing linux-firmware-whe 100% |  89.3 MiB/s | 274.4 KiB |  00m00s
[  4/278] Installing nspr-0:4.35.0-29.f 100% | 104.9 MiB/s | 322.3 KiB |  00m00s
[  5/278] Installing elfutils-debuginfo 100% |  16.3 MiB/s |  66.9 KiB |  00m00s
[  6/278] Installing libpng-2:1.6.40-4. 100% |  80.4 MiB/s | 247.1 KiB |  00m00s
[  7/278] Installing boost-system-0:1.8 100% |   8.5 MiB/s |  17.3 KiB |  00m00s
[  8/278] Installing libjpeg-turbo-0:3. 100% | 152.1 MiB/s | 778.7 KiB |  00m00s
[  9/278] Installing fonts-filesystem-1 100% | 384.8 KiB/s | 788.0   B |  00m00s
[ 10/278] Installing urw-base35-fonts-c 100% |  18.8 MiB/s |  38.4 KiB |  00m00s
[ 11/278] Installing nss-util-0:3.104.0 100% |  67.1 MiB/s | 206.1 KiB |  00m00s
[ 12/278] Installing grub2-common-1:2.1 100% | 361.7 MiB/s |   6.1 MiB |  00m00s
[ 13/278] Installing libwebp-0:1.4.0-4. 100% | 115.3 MiB/s | 826.8 KiB |  00m00s
[ 14/278] Installing apr-0:1.7.5-1.fc41 100% |  74.2 MiB/s | 304.1 KiB |  00m00s
[ 15/278] Installing apr-util-0:1.6.3-2 100% |  54.2 MiB/s | 222.0 KiB |  00m00s
[ 16/278] Installing make-1:4.4.1-8.fc4 100% | 200.0 MiB/s |   1.8 MiB |  00m00s
[ 17/278] Installing avahi-libs-0:0.8-2 100% |  55.0 MiB/s | 168.9 KiB |  00m00s
[ 18/278] Installing m4-0:1.4.19-10.fc4 100% |  97.5 MiB/s | 599.2 KiB |  00m00s
[ 19/278] Installing libzstd-devel-0:1. 100% |  99.2 MiB/s | 203.2 KiB |  00m00s
[ 20/278] Installing libmpc-0:1.3.1-6.f 100% |  81.1 MiB/s | 166.2 KiB |  00m00s
[ 21/278] Installing openjpeg-0:2.5.2-4 100% | 109.3 MiB/s | 447.6 KiB |  00m00s
[ 22/278] Installing authselect-libs-0: 100% |  81.8 MiB/s | 837.2 KiB |  00m00s
[ 23/278] Installing unzip-0:6.0-64.fc4 100% |  63.5 MiB/s | 390.3 KiB |  00m00s
[ 24/278] Installing libICE-0:1.1.1-4.f 100% |  59.4 MiB/s | 182.6 KiB |  00m00s
[ 25/278] Installing lcms2-0:2.16-4.fc4 100% | 104.1 MiB/s | 426.5 KiB |  00m00s
[ 26/278] Installing adobe-mappings-cma 100% | 360.4 MiB/s |  14.4 MiB |  00m00s
[ 27/278] Installing libtirpc-0:1.3.5-0 100% |  66.6 MiB/s | 204.5 KiB |  00m00s
[ 28/278] Installing gzip-0:1.13-2.fc41 100% |  48.2 MiB/s | 394.6 KiB |  00m00s
[ 29/278] Installing cracklib-0:2.9.11- 100% |  24.4 MiB/s | 250.3 KiB |  00m00s
[ 30/278] Installing file-0:5.45-7.fc41 100% |  51.3 MiB/s | 105.0 KiB |  00m00s
[ 31/278] Installing libtextstyle-0:0.2 100% |  95.9 MiB/s | 196.5 KiB |  00m00s
[ 32/278] Installing gettext-libs-0:0.2 100% | 239.5 MiB/s |   1.7 MiB |  00m00s
[ 33/278] Installing libpwquality-0:1.4 100% |  46.7 MiB/s | 430.1 KiB |  00m00s
[ 34/278] Installing libnsl2-0:2.0.1-2. 100% |  28.8 MiB/s |  59.1 KiB |  00m00s
[ 35/278] Installing adobe-mappings-cma 100% | 190.5 MiB/s | 585.2 KiB |  00m00s
[ 36/278] Installing libSM-0:1.2.4-4.fc 100% |  48.2 MiB/s |  98.7 KiB |  00m00s
[ 37/278] Installing zip-0:3.0-41.fc41. 100% | 138.1 MiB/s | 707.1 KiB |  00m00s
[ 38/278] Installing cpp-0:14.2.1-3.fc4 100% | 443.1 MiB/s |  35.0 MiB |  00m00s
[ 39/278] Installing bison-0:3.8.2-9.fc 100% | 146.3 MiB/s |   3.5 MiB |  00m00s
[ 40/278] Installing flex-0:2.6.4-18.fc 100% | 113.2 MiB/s | 811.4 KiB |  00m00s
[ 41/278] Installing cups-libs-1:2.4.11 100% | 121.9 MiB/s | 624.3 KiB |  00m00s
[ 42/278] Installing libserf-0:1.3.10-6 100% |  43.5 MiB/s | 133.7 KiB |  00m00s
[ 43/278] Installing grub2-pc-modules-1 100% | 139.0 MiB/s |   3.2 MiB |  00m00s
[ 44/278] Installing nss-softokn-freebl 100% | 127.9 MiB/s | 785.8 KiB |  00m00s
[ 45/278] Installing nss-softokn-0:3.10 100% | 188.3 MiB/s |   1.9 MiB |  00m00s
[ 46/278] Installing nss-sysinit-0:3.10 100% |   7.6 MiB/s |  23.3 KiB |  00m00s
[ 47/278] Installing nss-0:3.104.0-1.fc 100% | 134.4 MiB/s |   1.9 MiB |  00m00s
[ 48/278] Installing urw-base35-bookman 100% | 105.0 MiB/s |   1.4 MiB |  00m00s
[ 49/278] Installing urw-base35-c059-fo 100% | 139.5 MiB/s |   1.4 MiB |  00m00s
[ 50/278] Installing urw-base35-d050000 100% |  11.9 MiB/s |  85.4 KiB |  00m00s
[ 51/278] Installing urw-base35-gothic- 100% | 116.3 MiB/s |   1.2 MiB |  00m00s
[ 52/278] Installing urw-base35-nimbus- 100% | 116.9 MiB/s |   1.1 MiB |  00m00s
[ 53/278] Installing urw-base35-nimbus- 100% | 136.6 MiB/s |   1.4 MiB |  00m00s
[ 54/278] Installing urw-base35-nimbus- 100% | 184.2 MiB/s |   2.4 MiB |  00m00s
[ 55/278] Installing urw-base35-p052-fo 100% | 148.7 MiB/s |   1.5 MiB |  00m00s
[ 56/278] Installing urw-base35-standar 100% |   9.2 MiB/s |  66.0 KiB |  00m00s
[ 57/278] Installing urw-base35-z003-fo 100% |  47.8 MiB/s | 391.8 KiB |  00m00s
[ 58/278] Installing urw-base35-fonts-0 100% |   5.5 MiB/s |   5.6 KiB |  00m00s
[ 59/278] Installing google-droid-sans- 100% | 347.7 MiB/s |   6.3 MiB |  00m00s
[ 60/278] Installing abattis-cantarell- 100% |  63.3 MiB/s | 194.4 KiB |  00m00s
[ 61/278] Installing boost-thread-0:1.8 100% |  33.6 MiB/s | 137.7 KiB |  00m00s
[ 62/278] Installing linux-firmware-0:2 100% | 360.2 MiB/s |  37.5 MiB |  00m00s
[ 63/278] Installing openssl-devel-1:3. 100% |  24.1 MiB/s |   5.2 MiB |  00m00s
[ 64/278] Installing tpm2-tss-fapi-0:4. 100% | 212.7 MiB/s | 871.0 KiB |  00m00s
[ 65/278] Installing lmdb-libs-0:0.9.33 100% |  36.1 MiB/s | 111.0 KiB |  00m00s
[ 66/278] Installing nano-0:8.1-1.fc41. 100% | 191.2 MiB/s |   2.9 MiB |  00m00s
[ 67/278] Installing xz-devel-1:5.6.2-2 100% |  19.5 MiB/s | 259.4 KiB |  00m00s
[ 68/278] Installing cmake-filesystem-0 100% |   1.4 MiB/s |   7.1 KiB |  00m00s
[ 69/278] Installing zlib-ng-compat-dev 100% |  52.9 MiB/s | 108.3 KiB |  00m00s
[ 70/278] Installing elfutils-libelf-de 100% |  17.5 MiB/s |  35.8 KiB |  00m00s
[ 71/278] Installing elfutils-devel-0:0 100% |  57.6 MiB/s | 177.0 KiB |  00m00s
[ 72/278] Installing kernel-headers-0:6 100% | 100.7 MiB/s |   6.5 MiB |  00m00s
[ 73/278] Installing glibc-headers-x86- 100% |  53.2 MiB/s |   2.3 MiB |  00m00s
[ 74/278] Installing libxcrypt-devel-0: 100% |  10.6 MiB/s |  32.6 KiB |  00m00s
[ 75/278] Installing glibc-devel-0:2.40 100% |   9.4 MiB/s |  38.4 KiB |  00m00s
[ 76/278] Installing jansson-0:2.13.1-1 100% |  29.2 MiB/s |  89.7 KiB |  00m00s
[ 77/278] Installing binutils-0:2.43.1- 100% | 362.2 MiB/s |  27.5 MiB |  00m00s
[ 78/278] Installing gcc-0:14.2.1-3.fc4 100% | 446.1 MiB/s | 104.4 MiB |  00m00s
[ 79/278] Installing libcbor-0:0.11.0-2 100% |   3.5 MiB/s |  75.3 KiB |  00m00s
[ 80/278] Installing libfido2-0:1.15.0- 100% |  14.6 MiB/s | 239.7 KiB |  00m00s
[ 81/278] Installing libedit-0:3.1-53.2 100% |  17.1 MiB/s | 245.8 KiB |  00m00s
[ 82/278] Installing rav1e-libs-0:0.7.1 100% |  85.5 MiB/s |   3.0 MiB |  00m00s
[ 83/278] Installing less-0:661-2.fc41. 100% |  20.0 MiB/s | 408.6 KiB |  00m00s
[ 84/278] Installing fuse3-libs-0:3.16. 100% |  21.2 MiB/s | 282.6 KiB |  00m00s
[ 85/278] Installing boost-atomic-0:1.8 100% |   1.8 MiB/s |  22.0 KiB |  00m00s
[ 86/278] Installing boost-filesystem-0 100% |  13.2 MiB/s | 148.6 KiB |  00m00s
[ 87/278] Installing efivar-libs-0:39-6 100% |  22.7 MiB/s | 395.9 KiB |  00m00s
[ 88/278] Installing mokutil-2:0.7.1-2. 100% |   5.7 MiB/s | 104.4 KiB |  00m00s
[ 89/278] Installing tbb-0:2021.13.0-2. 100% |  10.8 MiB/s | 443.8 KiB |  00m00s
[ 90/278] Installing dyninst-0:12.3.0-7 100% | 118.6 MiB/s |  14.3 MiB |  00m00s
[ 91/278] Installing systemtap-devel-0: 100% |  19.5 MiB/s |   9.2 MiB |  00m00s
[ 92/278] Installing systemtap-runtime- 100% | 125.8 MiB/s |   1.0 MiB |  00m00s
[ 93/278] Installing libXau-0:1.0.11-7. 100% |  33.4 MiB/s |  68.4 KiB |  00m00s
[ 94/278] Installing libxcb-0:1.17.0-3. 100% | 118.8 MiB/s |   1.2 MiB |  00m00s
[ 95/278] Installing gpgme-0:1.23.2-5.f 100% | 142.0 MiB/s | 581.7 KiB |  00m00s
[ 96/278] Installing gpgmepp-0:1.23.2-5 100% | 138.5 MiB/s | 425.4 KiB |  00m00s
[ 97/278] Installing libvmaf-0:3.0.0-2. 100% | 201.3 MiB/s | 824.4 KiB |  00m00s
[ 98/278] Installing libaom-0:3.9.0-3.f 100% | 389.3 MiB/s |   5.1 MiB |  00m00s
[ 99/278] Installing google-noto-fonts- 100% |   8.9 MiB/s |  18.3 KiB |  00m00s
[100/278] Installing google-noto-sans-v 100% | 249.8 MiB/s |   1.2 MiB |  00m00s
[101/278] Installing default-fonts-core 100% |   3.6 MiB/s |  18.2 KiB |  00m00s
[102/278] Installing poppler-data-0:0.4 100% | 295.0 MiB/s |  12.4 MiB |  00m00s
[103/278] Installing libdatrie-0:0.2.13 100% |  28.8 MiB/s |  59.0 KiB |  00m00s
[104/278] Installing libthai-0:0.1.29-9 100% | 191.7 MiB/s | 785.3 KiB |  00m00s
[105/278] Installing liblerc-0:4.0.0-7. 100% | 148.7 MiB/s | 609.0 KiB |  00m00s
[106/278] Installing jbigkit-libs-0:2.1 100% |  38.9 MiB/s | 119.6 KiB |  00m00s
[107/278] Installing libtiff-0:4.6.0-6. 100% | 148.5 MiB/s | 608.2 KiB |  00m00s
[108/278] Installing svt-av1-libs-0:2.1 100% | 418.9 MiB/s |   7.1 MiB |  00m00s
[109/278] Installing libdav1d-0:1.4.3-2 100% | 280.3 MiB/s |   1.7 MiB |  00m00s
[110/278] Installing libavif-0:1.0.4-7. 100% |  60.3 MiB/s | 185.1 KiB |  00m00s
[111/278] Installing fribidi-0:1.0.15-2 100% |  72.4 MiB/s | 370.9 KiB |  00m00s
[112/278] Installing libpaper-1:2.1.1-7 100% |  16.4 MiB/s |  50.5 KiB |  00m00s
[113/278] Installing libijs-0:0.35-23.f 100% |  30.6 MiB/s |  62.6 KiB |  00m00s
[114/278] Installing jbig2dec-libs-0:0. 100% |  55.5 MiB/s | 170.6 KiB |  00m00s
[115/278] Installing adobe-mappings-pdf 100% | 338.2 MiB/s |   4.4 MiB |  00m00s
[116/278] Installing libX11-common-0:1. 100% |  69.8 MiB/s |   1.2 MiB |  00m00s
[117/278] Installing libX11-0:1.8.10-2. 100% |  98.6 MiB/s |   1.3 MiB |  00m00s
[118/278] Installing libXrender-0:0.9.1 100% |  16.7 MiB/s |  51.4 KiB |  00m00s
[119/278] Installing libXext-0:1.3.6-2. 100% |  44.6 MiB/s |  91.3 KiB |  00m00s
[120/278] Installing libXpm-0:3.5.17-4. 100% |  48.8 MiB/s | 149.8 KiB |  00m00s
[121/278] Installing libXt-0:1.3.0-4.fc 100% | 140.3 MiB/s | 431.1 KiB |  00m00s
[122/278] Installing graphite2-0:1.3.14 100% |  63.2 MiB/s | 194.1 KiB |  00m00s
[123/278] Installing freetype-0:2.13.3- 100% | 166.4 MiB/s | 852.2 KiB |  00m00s
[124/278] Installing harfbuzz-0:9.0.0-3 100% | 294.5 MiB/s |   2.7 MiB |  00m00s
[125/278] Installing netpbm-0:11.02.00- 100% | 141.4 MiB/s | 579.0 KiB |  00m00s
[126/278] Installing gts-0:0.7.6-49.201 100% |  91.7 MiB/s | 657.3 KiB |  00m00s
[127/278] Installing shared-mime-info-0 100% | 142.0 MiB/s |   2.6 MiB |  00m00s
[128/278] Installing gdk-pixbuf2-0:2.42 100% | 140.3 MiB/s |   2.5 MiB |  00m00s
[129/278] Installing libimagequant-0:4. 100% |  59.3 MiB/s | 668.3 KiB |  00m00s
[130/278] Installing xml-common-0:0.6.3 100% |  15.8 MiB/s |  81.1 KiB |  00m00s
[131/278] Installing fontconfig-0:2.15. 100% | 724.9 KiB/s | 811.1 KiB |  00m01s
[132/278] Installing gd-0:2.3.3-17.fc41 100% |  39.5 MiB/s | 404.8 KiB |  00m00s
[133/278] Installing libgs-0:10.03.1-3. 100% | 264.9 MiB/s |  23.3 MiB |  00m00s
[134/278] Installing libXft-0:2.3.8-7.f 100% |  40.5 MiB/s | 166.0 KiB |  00m00s
[135/278] Installing poppler-0:24.08.0- 100% | 328.1 MiB/s |   3.6 MiB |  00m00s
[136/278] Installing pixman-0:0.43.4-2. 100% | 175.6 MiB/s | 719.2 KiB |  00m00s
[137/278] Installing cairo-0:1.18.0-4.f 100% | 249.1 MiB/s |   1.7 MiB |  00m00s
[138/278] Installing pango-0:1.54.0-2.f 100% |  28.8 MiB/s |   1.0 MiB |  00m00s
[139/278] Installing lasi-0:1.1.3-14.fc 100% |  64.6 MiB/s | 132.3 KiB |  00m00s
[140/278] Installing poppler-glib-0:24. 100% | 287.1 MiB/s | 587.9 KiB |  00m00s
[141/278] Installing cairo-gobject-0:1. 100% |  35.2 MiB/s |  36.1 KiB |  00m00s
[142/278] Installing rsvg-pixbuf-loader 100% | 164.5 MiB/s | 336.9 KiB |  00m00s
[143/278] Installing librsvg2-0:2.59.1- 100% | 383.8 MiB/s |   4.6 MiB |  00m00s
[144/278] Installing graphviz-libs-0:12 100% | 241.6 MiB/s |   1.2 MiB |  00m00s
[145/278] Installing graphviz-0:12.1.0- 100% | 289.9 MiB/s |  20.9 MiB |  00m00s
[146/278] Installing libutempter-0:1.2. 100% |  19.4 MiB/s |  59.7 KiB |  00m00s
[147/278] Installing procps-ng-0:4.0.4- 100% | 104.1 MiB/s |   1.0 MiB |  00m00s
[148/278] Installing gdbm-1:1.23-7.fc41 100% |  75.8 MiB/s | 465.8 KiB |  00m00s
[149/278] Installing pam-0:1.6.1-5.fc41 100% |  75.1 MiB/s |   1.9 MiB |  00m00s
[150/278] Installing util-linux-0:2.40. 100% |  81.5 MiB/s |   3.7 MiB |  00m00s
[151/278] Installing openssh-0:9.8p1-3. 100% | 296.4 MiB/s |   1.8 MiB |  00m00s
[152/278] Installing openssh-clients-0: 100% | 118.0 MiB/s |   2.6 MiB |  00m00s
[153/278] Installing git-core-0:2.47.0- 100% | 304.7 MiB/s |  22.6 MiB |  00m00s
[154/278] Installing git-core-doc-0:2.4 100% | 191.4 MiB/s |  17.4 MiB |  00m00s
[155/278] Installing sudo-0:1.9.15-5.p5 100% | 246.4 MiB/s |   4.9 MiB |  00m00s
[156/278] Installing libkcapi-0:1.5.0-4 100% |  32.9 MiB/s | 101.2 KiB |  00m00s
[157/278] Installing libkcapi-hasher-0: 100% |  20.0 MiB/s |  40.9 KiB |  00m00s
[158/278] Installing libkcapi-hmaccalc- 100% |   1.0 MiB/s |   1.1 KiB |  00m00s
[159/278] Installing xz-1:5.6.2-2.fc41. 100% | 133.9 MiB/s |   1.2 MiB |  00m00s
[160/278] Installing cpio-0:2.15-2.fc41 100% | 157.1 MiB/s |   1.1 MiB |  00m00s
[161/278] Installing dracut-0:102-3.fc4 100% |  45.6 MiB/s |   1.5 MiB |  00m00s
[162/278] Installing kernel-modules-cor 100% |  35.3 MiB/s |  37.3 MiB |  00m01s
[163/278] Installing kernel-core-0:6.11 100% | 109.4 MiB/s |  25.6 MiB |  00m00s
[164/278] Installing kernel-modules-0:6 100% |  15.3 MiB/s |  63.1 MiB |  00m04s
[165/278] Installing which-0:2.21-42.fc 100% |  16.1 MiB/s |  82.4 KiB |  00m00s
[166/278] Installing emacs-filesystem-1 100% | 531.2 KiB/s | 544.0   B |  00m00s
[167/278] Installing ncurses-0:6.5-2.20 100% |  34.4 MiB/s | 633.9 KiB |  00m00s
[168/278] Installing groff-base-0:1.23. 100% |  66.8 MiB/s |   3.9 MiB |  00m00s
[169/278] Installing perl-Digest-0:1.20 100% |  18.1 MiB/s |  37.1 KiB |  00m00s
[170/278] Installing perl-B-0:1.89-511. 100% |  97.9 MiB/s | 501.3 KiB |  00m00s
[171/278] Installing perl-FileHandle-0: 100% |   9.5 MiB/s |   9.8 KiB |  00m00s
[172/278] Installing perl-Digest-MD5-0: 100% |  30.1 MiB/s |  61.7 KiB |  00m00s
[173/278] Installing perl-MIME-Base32-0 100% |  31.4 MiB/s |  32.2 KiB |  00m00s
[174/278] Installing perl-Data-Dumper-0 100% |  55.5 MiB/s | 113.6 KiB |  00m00s
[175/278] Installing perl-libnet-0:3.15 100% |  72.0 MiB/s | 294.7 KiB |  00m00s
[176/278] Installing perl-AutoLoader-0: 100% |  20.5 MiB/s |  20.9 KiB |  00m00s
[177/278] Installing perl-IO-Socket-IP- 100% |  49.1 MiB/s | 100.5 KiB |  00m00s
[178/278] Installing perl-URI-0:5.30-1. 100% |  37.6 MiB/s | 269.5 KiB |  00m00s
[179/278] Installing perl-locale-0:1.12 100% |   6.7 MiB/s |   6.9 KiB |  00m00s
[180/278] Installing perl-Time-Local-2: 100% |  34.5 MiB/s |  70.6 KiB |  00m00s
[181/278] Installing perl-Pod-Escapes-1 100% |  25.3 MiB/s |  25.9 KiB |  00m00s
[182/278] Installing perl-Text-Tabs+Wra 100% |  23.3 MiB/s |  23.9 KiB |  00m00s
[183/278] Installing perl-if-0:0.61.000 100% |   6.1 MiB/s |   6.2 KiB |  00m00s
[184/278] Installing perl-Net-SSLeay-0: 100% | 123.9 MiB/s |   1.4 MiB |  00m00s
[185/278] Installing perl-File-Path-0:2 100% |  63.0 MiB/s |  64.5 KiB |  00m00s
[186/278] Installing perl-Mozilla-CA-0: 100% |  10.6 MiB/s |  10.8 KiB |  00m00s
[187/278] Installing perl-IO-Socket-SSL 100% | 172.7 MiB/s | 707.4 KiB |  00m00s
[188/278] Installing perl-POSIX-0:2.20- 100% | 115.4 MiB/s | 236.4 KiB |  00m00s
[189/278] Installing perl-Term-ANSIColo 100% |  96.9 MiB/s |  99.2 KiB |  00m00s
[190/278] Installing perl-Term-Cap-0:1. 100% |  29.9 MiB/s |  30.6 KiB |  00m00s
[191/278] Installing perl-Class-Struct- 100% |  25.3 MiB/s |  25.9 KiB |  00m00s
[192/278] Installing perl-IPC-Open3-0:1 100% |  22.7 MiB/s |  23.3 KiB |  00m00s
[193/278] Installing perl-File-Temp-1:0 100% |  80.1 MiB/s | 164.1 KiB |  00m00s
[194/278] Installing perl-Pod-Simple-1: 100% | 111.4 MiB/s | 570.5 KiB |  00m00s
[195/278] Installing perl-HTTP-Tiny-0:0 100% |  75.3 MiB/s | 154.2 KiB |  00m00s
[196/278] Installing perl-Symbol-0:1.09 100% |   7.0 MiB/s |   7.2 KiB |  00m00s
[197/278] Installing perl-SelectSaver-0 100% |   2.5 MiB/s |   2.6 KiB |  00m00s
[198/278] Installing perl-Socket-4:2.03 100% |  61.6 MiB/s | 126.1 KiB |  00m00s
[199/278] Installing perl-File-stat-0:1 100% |  12.7 MiB/s |  13.1 KiB |  00m00s
[200/278] Installing perl-podlators-1:6 100% | 104.6 MiB/s | 321.4 KiB |  00m00s
[201/278] Installing perl-Pod-Perldoc-0 100% |  55.1 MiB/s | 169.3 KiB |  00m00s
[202/278] Installing perl-Text-ParseWor 100% |  14.2 MiB/s |  14.6 KiB |  00m00s
[203/278] Installing perl-base-0:2.27-5 100% |  12.6 MiB/s |  12.9 KiB |  00m00s
[204/278] Installing perl-Fcntl-0:1.18- 100% |  48.9 MiB/s |  50.1 KiB |  00m00s
[205/278] Installing perl-mro-0:1.29-51 100% |  45.6 MiB/s |  46.7 KiB |  00m00s
[206/278] Installing perl-overloading-0 100% |   5.4 MiB/s |   5.5 KiB |  00m00s
[207/278] Installing perl-IO-0:1.55-511 100% |  37.9 MiB/s | 155.3 KiB |  00m00s
[208/278] Installing perl-Pod-Usage-4:2 100% |  12.0 MiB/s |  86.3 KiB |  00m00s
[209/278] Installing perl-Getopt-Std-0: 100% |   2.3 MiB/s |  11.7 KiB |  00m00s
[210/278] Installing perl-vars-0:1.05-5 100% |   1.0 MiB/s |   4.3 KiB |  00m00s
[211/278] Installing perl-Errno-0:1.38- 100% |   1.7 MiB/s |   8.8 KiB |  00m00s
[212/278] Installing perl-constant-0:1. 100% |   4.5 MiB/s |  27.4 KiB |  00m00s
[213/278] Installing perl-File-Basename 100% |   3.6 MiB/s |  14.6 KiB |  00m00s
[214/278] Installing perl-parent-1:0.24 100% |  10.5 MiB/s |  10.7 KiB |  00m00s
[215/278] Installing perl-MIME-Base64-0 100% |  23.6 MiB/s |  48.4 KiB |  00m00s
[216/278] Installing perl-Storable-1:3. 100% | 114.3 MiB/s | 234.0 KiB |  00m00s
[217/278] Installing perl-overload-0:1. 100% |  70.3 MiB/s |  71.9 KiB |  00m00s
[218/278] Installing perl-Scalar-List-U 100% |  48.8 MiB/s | 149.9 KiB |  00m00s
[219/278] Installing perl-Getopt-Long-1 100% |  71.9 MiB/s | 147.2 KiB |  00m00s
[220/278] Installing perl-Exporter-0:5. 100% |  54.3 MiB/s |  55.6 KiB |  00m00s
[221/278] Installing perl-Carp-0:1.54-5 100% |  46.6 MiB/s |  47.7 KiB |  00m00s
[222/278] Installing perl-DynaLoader-0: 100% |  31.7 MiB/s |  32.5 KiB |  00m00s
[223/278] Installing perl-PathTools-0:3 100% |  45.1 MiB/s | 184.6 KiB |  00m00s
[224/278] Installing perl-Encode-4:3.21 100% | 262.1 MiB/s |   4.7 MiB |  00m00s
[225/278] Installing perl-libs-4:5.40.0 100% | 115.8 MiB/s |  10.0 MiB |  00m00s
[226/278] Installing perl-interpreter-4 100% |   7.6 MiB/s | 124.0 KiB |  00m00s
[227/278] Installing systemtap-client-0 100% |  34.1 MiB/s |  11.8 MiB |  00m00s
[228/278] Installing perl-File-Find-0:1 100% |   5.2 MiB/s |  42.5 KiB |  00m00s
[229/278] Installing perl-TermReadKey-0 100% |   4.3 MiB/s |  66.3 KiB |  00m00s
[230/278] Installing perl-lib-0:0.65-51 100% |   1.2 MiB/s |   8.9 KiB |  00m00s
[231/278] Installing perl-Error-1:0.170 100% |   8.7 MiB/s |  80.5 KiB |  00m00s
[232/278] Installing perl-Git-0:2.47.0- 100% |   7.9 MiB/s |  65.0 KiB |  00m00s
[233/278] Installing git-0:2.47.0-1.fc4 100% |   7.1 MiB/s |  87.4 KiB |  00m00s
[234/278] Installing utf8proc-0:2.7.0-8 100% |  44.4 MiB/s | 363.8 KiB |  00m00s
[235/278] Installing subversion-libs-0: 100% | 110.8 MiB/s |   4.4 MiB |  00m00s
[236/278] Installing gettext-envsubst-0 100% |   7.5 MiB/s |  76.3 KiB |  00m00s
[237/278] Installing gettext-runtime-0: 100% |   5.0 MiB/s | 490.7 KiB |  00m00s
[238/278] Installing grub2-tools-minima 100% |  35.3 MiB/s |   3.0 MiB |  00m00s
[239/278] Installing os-prober-0:1.81-8 100% |   4.4 MiB/s | 121.0 KiB |  00m00s
[240/278] Installing grub2-tools-1:2.12 100% |  61.5 MiB/s |   7.7 MiB |  00m00s
[241/278] Installing ed-0:1.20.2-2.fc41 100% |  18.2 MiB/s | 149.2 KiB |  00m00s
[242/278] Installing patch-0:2.7.6-25.f 100% |  43.7 MiB/s | 268.2 KiB |  00m00s
[243/278] Installing xapian-core-libs-0 100% | 188.6 MiB/s |   2.1 MiB |  00m00s
[244/278] Installing doxygen-2:1.12.0-1 100% | 343.1 MiB/s |  19.2 MiB |  00m00s
[245/278] Installing patchutils-0:0.4.2 100% |  17.6 MiB/s | 216.4 KiB |  00m00s
[246/278] Installing grub2-pc-1:2.12-9. 100% | 277.3 KiB/s | 568.0   B |  00m00s
[247/278] Installing gettext-0:0.22.5-6 100% | 158.8 MiB/s |   5.2 MiB |  00m00s
[248/278] Installing subversion-0:1.14. 100% | 109.2 MiB/s |   5.1 MiB |  00m00s
[249/278] Installing systemtap-0:5.2~pr 100% |   2.3 KiB/s | 124.0   B |  00m00s
[250/278] Installing kernel-devel-0:6.1 100% |   4.2 MiB/s |  79.1 MiB |  00m19s
[251/278] Installing perl-NDBM_File-0:1 100% | 184.9 KiB/s |  33.7 KiB |  00m00s
[252/278] Installing mercurial-0:6.8.1- 100% | 173.4 MiB/s |  31.0 MiB |  00m00s
[253/278] Installing kernel-0:6.11.3-30 100% |  20.2 KiB/s | 124.0   B |  00m00s
[254/278] Installing sudo-python-plugin 100% |   2.0 MiB/s | 108.3 KiB |  00m00s
[255/278] Installing openssh-server-0:9 100% |  55.4 MiB/s |   1.4 MiB |  00m00s
[256/278] Installing nano-default-edito 100% | 675.8 KiB/s |   1.4 KiB |  00m00s
[257/278] Installing apr-util-lmdb-0:1. 100% |   7.8 MiB/s |  16.1 KiB |  00m00s
[258/278] Installing tpm2-tools-0:5.7-2 100% |  67.4 MiB/s |   1.6 MiB |  00m00s
[259/278] Installing cracklib-dicts-0:2 100% | 356.8 MiB/s |   9.3 MiB |  00m00s
[260/278] Installing authselect-0:1.5.0 100% |  31.6 MiB/s | 161.9 KiB |  00m00s
[261/278] Installing apr-util-openssl-0 100% |  11.9 MiB/s |  24.4 KiB |  00m00s
[262/278] Installing elfutils-debuginfo 100% |   3.8 MiB/s |  11.6 KiB |  00m00s
[263/278] Installing amd-gpu-firmware-0 100% | 311.6 MiB/s |  21.2 MiB |  00m00s
[264/278] Installing amd-ucode-firmware 100% | 119.5 MiB/s | 244.6 KiB |  00m00s
[265/278] Installing atheros-firmware-0 100% | 411.1 MiB/s |  28.0 MiB |  00m00s
[266/278] Installing brcmfmac-firmware- 100% | 502.7 MiB/s |   9.6 MiB |  00m00s
[267/278] Installing cirrus-audio-firmw 100% |  32.6 MiB/s |   1.1 MiB |  00m00s
[268/278] Installing intel-audio-firmwa 100% | 330.5 MiB/s |   3.3 MiB |  00m00s
[269/278] Installing intel-gpu-firmware 100% | 484.9 MiB/s |   8.7 MiB |  00m00s
[270/278] Installing mt7xxx-firmware-0: 100% | 631.4 MiB/s |  12.0 MiB |  00m00s
[271/278] Installing nvidia-gpu-firmwar 100% | 575.8 MiB/s |  38.0 MiB |  00m00s
[272/278] Installing nxpwireless-firmwa 100% | 295.2 MiB/s | 906.9 KiB |  00m00s
[273/278] Installing realtek-firmware-0 100% | 337.9 MiB/s |   3.7 MiB |  00m00s
[274/278] Installing tiwilink-firmware- 100% | 573.3 MiB/s |   4.6 MiB |  00m00s
[275/278] Installing memstrack-0:0.2.5- 100% |  59.3 MiB/s | 121.4 KiB |  00m00s
[276/278] Installing pigz-0:2.8-5.fc41. 100% |  80.3 MiB/s | 164.4 KiB |  00m00s
[277/278] Installing kpartx-0:0.9.9-3.f 100% |  28.8 MiB/s |  88.4 KiB |  00m00s
warning: posix.fork(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.wait(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.exec(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
[278/278] Installing diffstat-0:1.66-2. 100% |   3.9 KiB/s |  78.0 KiB |  00m20s
Complete!
+ run_root dnf clean all
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'dnf clean all'
Removed 24 files, 14 directories. 0 errors occurred.
+ cat
++ ls /mnt/boot
++ grep 'vmlinuz.*.x86_64'
++ cut -d- -f2-
+ kernel_version=6.11.3-300.fc41.x86_64
+ run_root dracut --force --kver 6.11.3-300.fc41.x86_64
+ chroot /mnt /usr/bin/env PATH=/sbin:/usr/sbin:/bin:/usr/bin sh -c 'dracut --force --kver 6.11.3-300.fc41.x86_64'
+ 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 40 (Forty) 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: password changed.
+ 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=41f4865f-ae44-493d-9906-1bb8f1526c42
++ blkid --match-tag UUID --output value /dev/nbd0p2
+ swap_uuid=79c13170-664d-421a-a63c-3598b0ef4e9f
++ blkid --match-tag UUID --output value /dev/nbd0p3
+ root_uuid=397ae7c8-7ea5-448b-82d7-b0b5fc3145ee
+ 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
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
+ 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
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0<!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>

100  1256  100  1256    0     0   3448      0 --:--:-- --:--:-- --:--:--  3441
Testing dnf...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Updating and loading repositories:
 Fedora 41 - x86_64 - Test Updates      100% |   3.4 MiB/s |   7.2 MiB |  00m02s
 Fedora 41 openh264 (From Cisco) - x86_ 100% |   9.8 KiB/s |   6.0 KiB |  00m01s
 Fedora 41 - x86_64 - Updates           100% |  49.0 KiB/s |  29.8 KiB |  00m01s
 Fedora 41 - x86_64                     100% |   2.9 MiB/s |  33.8 MiB |  00m12s
Repositories loaded.
Package                      Arch   Version                    Repository           Size
Upgrading:
 crypto-policies             noarch 20241010-1.git8baf557.fc41 updates-testing 136.9 KiB
   replacing crypto-policies noarch 20240826-1.gite824389.fc41 fedora          136.9 KiB
 dnf-data                    noarch 4.21.1-2.fc41              updates-testing  38.3 KiB
   replacing dnf-data        noarch 4.21.1-1.fc41              fedora           38.3 KiB
 python3-dnf                 noarch 4.21.1-2.fc41              updates-testing   2.6 MiB
   replacing python3-dnf     noarch 4.21.1-1.fc41              fedora            2.6 MiB
 python3-rpm                 x86_64 4.20.0-1.fc41              updates-testing 175.3 KiB
   replacing python3-rpm     x86_64 4.19.94-1.fc41             fedora          175.3 KiB
 rpm                         x86_64 4.20.0-1.fc41              updates-testing   3.1 MiB
   replacing rpm             x86_64 4.19.94-1.fc41             fedora            3.1 MiB
 rpm-build-libs              x86_64 4.20.0-1.fc41              updates-testing 206.7 KiB
   replacing rpm-build-libs  x86_64 4.19.94-1.fc41             fedora          206.7 KiB
 rpm-libs                    x86_64 4.20.0-1.fc41              updates-testing 725.9 KiB
   replacing rpm-libs        x86_64 4.19.94-1.fc41             fedora          721.9 KiB
 rpm-sign-libs               x86_64 4.20.0-1.fc41              updates-testing  39.4 KiB
   replacing rpm-sign-libs   x86_64 4.19.94-1.fc41             fedora           39.4 KiB
Installing weak dependencies:
 rpm-plugin-systemd-inhibit  x86_64 4.20.0-1.fc41              updates-testing  16.3 KiB

Transaction Summary:
 Installing:         1 package
 Upgrading:          8 packages
 Replacing:          8 package

Total size of inbound packages is 2 MiB. Need to download 2 MiB.
After this operation, 23 KiB extra will be used (install 7 MiB, remove 7 MiB).
[1/9] crypto-policies-0:20241010-1.git8 100% |   1.2 MiB/s |  97.3 KiB |  00m00s
[2/9] rpm-plugin-systemd-inhibit-0:4.20 100% | 221.2 KiB/s |  20.3 KiB |  00m00s
[3/9] dnf-data-0:4.21.1-2.fc41.noarch   100% | 385.6 KiB/s |  39.7 KiB |  00m00s
[4/9] python3-rpm-0:4.20.0-1.fc41.x86_6 100% |   1.0 MiB/s |  69.1 KiB |  00m00s
[5/9] python3-dnf-0:4.21.1-2.fc41.noarc 100% |   6.2 MiB/s | 627.2 KiB |  00m00s
[6/9] rpm-libs-0:4.20.0-1.fc41.x86_64   100% |   2.9 MiB/s | 309.4 KiB |  00m00s
[7/9] rpm-sign-libs-0:4.20.0-1.fc41.x86 100% | 534.1 KiB/s |  26.7 KiB |  00m00s
[8/9] rpm-build-libs-0:4.20.0-1.fc41.x8 100% |   2.8 MiB/s |  98.6 KiB |  00m00s
[9/9] rpm-0:4.20.0-1.fc41.x86_64        100% |   5.7 MiB/s | 547.4 KiB |  00m00s
--------------------------------------------------------------------------------
[9/9] Total                             100% |   1.9 MiB/s |   1.8 MiB |  00m01s
Running transaction
[ 1/19] Verify package files            100% | 818.0   B/s |   9.0   B |  00m00s
[ 2/19] Prepare transaction             100% | 265.0   B/s |  17.0   B |  00m00s
[ 3/19] Upgrading rpm-libs-0:4.20.0-1.f 100% |  78.9 MiB/s | 727.4 KiB |  00m00s
[ 4/19] Upgrading rpm-sign-libs-0:4.20. 100% |  13.1 MiB/s |  40.2 KiB |  00m00s
[ 5/19] Upgrading rpm-build-libs-0:4.20 100% |  50.7 MiB/s | 207.5 KiB |  00m00s
[ 6/19] Upgrading python3-rpm-0:4.20.0- 100% |  17.5 MiB/s | 178.9 KiB |  00m00s
[ 7/19] Upgrading dnf-data-0:4.21.1-2.f 100% |   6.6 MiB/s |  40.3 KiB |  00m00s
[ 8/19] Upgrading python3-dnf-0:4.21.1- 100% |  68.6 MiB/s |   2.7 MiB |  00m00s
[ 9/19] Installing rpm-plugin-systemd-i 100% | 913.9 KiB/s |  17.4 KiB |  00m00s
[10/19] Upgrading rpm-0:4.20.0-1.fc41.x 100% |  35.8 MiB/s |   2.5 MiB |  00m00s
[11/19] Upgrading crypto-policies-0:202 100% |   8.9 MiB/s | 163.3 KiB |  00m00s
[12/19] Erasing python3-dnf-0:4.21.1-1. 100% |  89.5 KiB/s | 275.0   B |  00m00s
[13/19] Erasing dnf-data-0:4.21.1-1.fc4 100% |  11.2 KiB/s |  23.0   B |  00m00s
[14/19] Erasing crypto-policies-0:20240 100% |  92.8 KiB/s | 190.0   B |  00m00s
[15/19] Erasing python3-rpm-0:4.19.94-1 100% |  10.7 KiB/s |  22.0   B |  00m00s
[16/19] Erasing rpm-build-libs-0:4.19.9 100% |   2.4 KiB/s |   5.0   B |  00m00s
[17/19] Erasing rpm-sign-libs-0:4.19.94 100% |   2.4 KiB/s |   5.0   B |  00m00s
[18/19] Erasing rpm-0:4.19.94-1.fc41.x8 100% |  53.3 KiB/s | 273.0   B |  00m00s
warning: posix.fork(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.wait(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.exec(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.fork(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.wait(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.exec(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
[19/19] Erasing rpm-libs-0:4.19.94-1.fc 100% |  16.0   B/s |  10.0   B |  00m01s
Complete!
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

Updating and loading repositories:
Repositories loaded.
Package     Arch   Version       Repository           Size
Installing:
 htop       x86_64 3.3.0-4.fc41  fedora          448.6 KiB
Installing dependencies:
 hwloc-libs x86_64 2.11.2-1.fc41 updates-testing   2.9 MiB
 libnl3     x86_64 3.10.0-1.fc41 fedora            1.0 MiB

Transaction Summary:
 Installing:         3 packages

Total size of inbound packages is 3 MiB. Need to download 3 MiB.
After this operation, 4 MiB extra will be used (install 4 MiB, remove 0 B).
[1/3] libnl3-0:3.10.0-1.fc41.x86_64     100% |   2.8 MiB/s | 349.2 KiB |  00m00s
[2/3] htop-0:3.3.0-4.fc41.x86_64        100% |   1.2 MiB/s | 195.7 KiB |  00m00s
[3/3] hwloc-libs-0:2.11.2-1.fc41.x86_64 100% |   3.9 MiB/s |   2.1 MiB |  00m01s
--------------------------------------------------------------------------------
[3/3] Total                             100% |   2.2 MiB/s |   2.6 MiB |  00m01s
Running transaction
[1/5] Verify package files              100% | 200.0   B/s |   3.0   B |  00m00s
[2/5] Prepare transaction               100% |  51.0   B/s |   3.0   B |  00m00s
[3/5] Installing hwloc-libs-0:2.11.2-1. 100% | 260.2 MiB/s |   2.9 MiB |  00m00s
[4/5] Installing libnl3-0:3.10.0-1.fc41 100% |  68.3 MiB/s |   1.0 MiB |  00m00s
warning: posix.fork(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.wait(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
warning: posix.exec(): .fork(), .exec(), .wait() and .redirect2null() are deprecated, use rpm.spawn() or rpm.execute() instead
[5/5] Installing htop-0:3.3.0-4.fc41.x8 100% |   4.6 MiB/s | 450.6 KiB |  00m00s
Complete!
Testing git...
Warning: Permanently added '[localhost]:8022' (ED25519) to the list of known hosts.

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

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

Copyright (C) 2005-2024 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.

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

Failed to set wall message, ignoring: Could not activate remote peer 'org.freedesktop.login1': activation request failed: a concurrent deactivation request is already in progress
Call to PowerOff failed: Could not activate remote peer 'org.freedesktop.login1': activation request failed: a concurrent deactivation request is already in progress
./images/control: line 206: kill: (36509) - 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
+ cd builds.sr.ht/images/fedora/rawhide
+ echo StrictHostKeyChecking=no
+ chmod 600 /home/build/.ssh/config
+ for server in "${slaves[@]}"
+ ssh deploy@fra01.builds.sr.ht mkdir -p /var/lib/images/fedora/rawhide/x86_64
Warning: Permanently added 'fra01.builds.sr.ht' (ED25519) to the list of known hosts.

+ rsync -rzP x86_64/root.img.qcow2 deploy@fra01.builds.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  
    366,477,312  12%  349.47MB/s    0:00:06  
    779,878,400  27%  372.05MB/s    0:00:05  
  1,018,200,064  35%  323.88MB/s    0:00:05  
  1,174,175,744  41%  280.15MB/s    0:00:05  
  1,294,991,360  45%  221.54MB/s    0:00:06  
  1,415,315,456  49%  151.58MB/s    0:00:09  
  1,516,240,896  53%  118.80MB/s    0:00:10  
  1,682,702,336  59%  121.27MB/s    0:00:09  
  1,863,876,608  65%  135.70MB/s    0:00:07  
  2,026,143,744  71%  145.71MB/s    0:00:05  
  2,202,533,888  77%  163.71MB/s    0:00:03  
  2,366,636,032  83%  163.18MB/s    0:00:02  
  2,570,321,920  90%  168.56MB/s    0:00:01  
  2,718,990,336  95%  165.31MB/s    0:00:00  
  2,847,932,416 100%  184.75MB/s    0:00:14 (xfr#1, to-chk=0/1)
+ ssh deploy@fra01.builds.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@fra02.builds.sr.ht mkdir -p /var/lib/images/fedora/rawhide/x86_64
Warning: Permanently added 'fra02.builds.sr.ht' (ED25519) to the list of known hosts.

+ rsync -rzP x86_64/root.img.qcow2 deploy@fra02.builds.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  
    404,357,120  14%  385.59MB/s    0:00:06  
    767,688,704  26%  366.23MB/s    0:00:05  
  1,042,808,832  36%  331.49MB/s    0:00:05  
  1,231,159,296  43%  293.52MB/s    0:00:05  
  1,408,761,856  49%  239.47MB/s    0:00:05  
  1,612,578,816  56%  201.44MB/s    0:00:05  
  1,822,949,376  64%  186.14MB/s    0:00:05  
  2,023,882,752  71%  189.09MB/s    0:00:04  
  2,233,073,664  78%  196.63MB/s    0:00:03  
  2,461,794,304  86%  202.57MB/s    0:00:01  
  2,648,834,048  93%  197.05MB/s    0:00:00  
  2,830,630,912  99%  192.49MB/s    0:00:00  
  2,847,932,416 100%  224.87MB/s    0:00:12 (xfr#1, to-chk=0/1)
+ ssh deploy@fra02.builds.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  
    297,926,656  10%  278.52MB/s    0:00:08  
    372,113,408  13%  175.67MB/s    0:00:13  
    506,232,832  17%  159.90MB/s    0:00:14  
    663,617,536  23%  157.50MB/s    0:00:13  
    791,150,592  27%  117.62MB/s    0:00:17  
    872,284,160  30%  119.31MB/s    0:00:16  
    923,533,312  32%   99.52MB/s    0:00:18  
    998,506,496  35%   79.84MB/s    0:00:22  
  1,046,872,064  36%   60.97MB/s    0:00:28  
  1,072,168,960  37%   47.62MB/s    0:00:36  
  1,094,057,984  38%   40.59MB/s    0:00:42  
  1,117,519,872  39%   28.33MB/s    0:00:59  
  1,142,423,552  40%   22.73MB/s    0:01:13  
  1,169,293,312  41%   23.07MB/s    0:01:11  
  1,196,032,000  41%   24.23MB/s    0:01:06  
  1,223,819,264  42%   25.26MB/s    0:01:02  
  1,245,970,432  43%   24.63MB/s    0:01:03  
  1,271,005,184  44%   24.23MB/s    0:01:03  
  1,292,894,208  45%   23.08MB/s    0:01:05  
  1,314,127,872  46%   21.50MB/s    0:01:09  
  1,336,147,968  46%   21.45MB/s    0:01:08  
  1,364,459,520  47%   22.23MB/s    0:01:05  
  1,390,673,920  48%   23.23MB/s    0:01:01  
  1,411,514,368  49%   23.11MB/s    0:01:00  
  1,433,665,536  50%   23.15MB/s    0:00:59  
  1,458,044,928  51%   22.22MB/s    0:01:01  
  1,483,472,896  52%   22.04MB/s    0:01:00  
  1,509,556,224  53%   23.33MB/s    0:00:56  
  1,536,425,984  53%   24.47MB/s    0:00:52  
  1,581,514,752  55%   29.43MB/s    0:00:42  
  1,652,293,632  58%   40.26MB/s    0:00:29  
  1,702,363,136  59%   45.97MB/s    0:00:24  
  1,725,693,952  60%   45.07MB/s    0:00:24  
  1,747,845,120  61%   39.58MB/s    0:00:27  
  1,816,395,776  63%   39.05MB/s    0:00:25  
  1,882,193,920  66%   42.74MB/s    0:00:22  
  1,937,768,448  68%   50.47MB/s    0:00:17  
  1,999,110,144  70%   59.83MB/s    0:00:13  
  2,083,258,368  73%   63.56MB/s    0:00:11  
  2,142,633,984  75%   62.06MB/s    0:00:11  
  2,178,416,640  76%   57.25MB/s    0:00:11  
  2,213,281,792  77%   50.94MB/s    0:00:12  
  2,242,904,064  78%   37.95MB/s    0:00:15  
  2,273,050,624  79%   31.00MB/s    0:00:18  
  2,347,106,304  82%   40.17MB/s    0:00:12  
  2,467,332,096  86%   60.54MB/s    0:00:06  
  2,550,267,904  89%   73.23MB/s    0:00:03  
  2,584,870,912  90%   74.31MB/s    0:00:03  
  2,608,857,088  91%   62.34MB/s    0:00:03  
  2,633,367,552  92%   39.52MB/s    0:00:05  
  2,660,106,240  93%   26.14MB/s    0:00:07  
  2,687,500,288  94%   24.44MB/s    0:00:06  
  2,715,418,624  95%   25.36MB/s    0:00:05  
  2,770,993,152  97%   32.76MB/s    0:00:02  
  2,804,809,728  98%   34.47MB/s    0:00:01  
  2,831,155,200  99%   34.23MB/s    0:00:00  
  2,847,932,416 100%   47.90MB/s    0:00:56 (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 7 months ago (took 4 minutes)