-
Notifications
You must be signed in to change notification settings - Fork 0
/
dnf_installed_packages.txt
3270 lines (3270 loc) · 370 KB
/
dnf_installed_packages.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
설치된 꾸러미
Box2D.x86_64 2.4.2-1.fc40 @updates
ImageMagick.x86_64 1:7.1.1.39-1.fc40 @updates
ImageMagick-libs.x86_64 1:7.1.1.39-1.fc40 @updates
LibRaw.x86_64 0.21.3-1.fc40 @updates
ModemManager.x86_64 1.22.0-3.fc40 @anaconda
ModemManager-glib.x86_64 1.22.0-3.fc40 @anaconda
NetworkManager.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-adsl.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-bluetooth.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-config-connectivity-fedora.noarch 1:1.46.2-1.fc40 @updates
NetworkManager-libnm.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-openconnect.x86_64 1.2.10-5.fc40 @anaconda
NetworkManager-openconnect-gnome.x86_64 1.2.10-5.fc40 @anaconda
NetworkManager-openvpn.x86_64 1:1.12.0-1.fc40 @updates
NetworkManager-openvpn-gnome.x86_64 1:1.12.0-1.fc40 @updates
NetworkManager-ppp.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-pptp.x86_64 1:1.2.12-6.fc40 @anaconda
NetworkManager-pptp-gnome.x86_64 1:1.2.12-6.fc40 @anaconda
NetworkManager-ssh.x86_64 1.2.13-1.fc40 @anaconda
NetworkManager-ssh-gnome.x86_64 1.2.13-1.fc40 @anaconda
NetworkManager-team.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-vpnc.x86_64 1:1.2.8-7.fc40 @anaconda
NetworkManager-vpnc-gnome.x86_64 1:1.2.8-7.fc40 @anaconda
NetworkManager-wifi.x86_64 1:1.46.2-1.fc40 @updates
NetworkManager-wwan.x86_64 1:1.46.2-1.fc40 @updates
PDAL.x86_64 2.6.3-1.fc40 @fedora
PDAL-devel.x86_64 2.6.3-1.fc40 @fedora
PDAL-libs.x86_64 2.6.3-1.fc40 @fedora
PackageKit.x86_64 1.2.8-8.fc40 @updates
PackageKit-command-not-found.x86_64 1.2.8-8.fc40 @updates
PackageKit-glib.x86_64 1.2.8-8.fc40 @updates
PackageKit-gstreamer-plugin.x86_64 1.2.8-8.fc40 @updates
PackageKit-gtk3-module.x86_64 1.2.8-8.fc40 @updates
PyQt-builder.noarch 1.15.4-1.fc40 @fedora
R.x86_64 4.4.1-5.fc40 @updates
R-core.x86_64 4.4.1-5.fc40 @updates
R-core-devel.x86_64 4.4.1-5.fc40 @updates
R-devel.x86_64 4.4.1-5.fc40 @updates
R-java.x86_64 4.4.1-5.fc40 @updates
R-java-devel.x86_64 4.4.1-5.fc40 @updates
R-rpm-macros.noarch 1.2.1-10.fc40 @updates
SDL2.i686 2.30.3-1.fc40 @updates
SDL2.x86_64 2.30.3-1.fc40 @updates
SDL2_image.x86_64 2.8.2-4.fc40 @anaconda
SDL2_mixer.x86_64 2.8.0-1.fc40 @updates
SDL2_net.x86_64 2.2.0-5.fc40 @fedora
SDL2_ttf.x86_64 2.22.0-2.fc40 @fedora
SFCGAL.x86_64 1.4.1-6.fc40 @fedora
SuperLU.x86_64 6.0.1-3.fc40 @fedora
SuperLU-devel.x86_64 6.0.1-3.fc40 @fedora
aajohan-comfortaa-fonts.noarch 3.105-0.4.20210729git2a87ac6.fc40 @updates
aardvark-dns.x86_64 2:1.12.2-2.fc40 @updates
abattis-cantarell-fonts.noarch 0.301-12.fc40 @anaconda
abattis-cantarell-vf-fonts.noarch 0.301-12.fc40 @anaconda
abrt.x86_64 2.17.6-1.fc40 @updates
abrt-addon-ccpp.x86_64 2.17.6-1.fc40 @updates
abrt-addon-kerneloops.x86_64 2.17.6-1.fc40 @updates
abrt-addon-pstoreoops.x86_64 2.17.6-1.fc40 @updates
abrt-addon-vmcore.x86_64 2.17.6-1.fc40 @updates
abrt-addon-xorg.x86_64 2.17.6-1.fc40 @updates
abrt-cli.x86_64 2.17.6-1.fc40 @updates
abrt-dbus.x86_64 2.17.6-1.fc40 @updates
abrt-desktop.x86_64 2.17.6-1.fc40 @updates
abrt-gui.x86_64 2.17.6-1.fc40 @updates
abrt-gui-libs.x86_64 2.17.6-1.fc40 @updates
abrt-java-connector.x86_64 1.3.2-6.fc40 @anaconda
abrt-libs.x86_64 2.17.6-1.fc40 @updates
abrt-plugin-bodhi.x86_64 2.17.6-1.fc40 @updates
abrt-tui.noarch 2.17.6-1.fc40 @updates
abseil-cpp.x86_64 20240116.2-1.fc40 @updates
accountsservice.x86_64 23.13.9-4.fc40 @anaconda
accountsservice-libs.x86_64 23.13.9-4.fc40 @anaconda
acl.x86_64 2.3.2-1.fc40 @anaconda
adobe-mappings-cmap.noarch 20231115-1.fc40 @updates
adobe-mappings-cmap-deprecated.noarch 20231115-1.fc40 @updates
adobe-mappings-pdf.noarch 20190401-7.fc40 @anaconda
adobe-source-code-pro-fonts.noarch 2.042.1.062.1.026-4.fc40 @anaconda
adwaita-cursor-theme.noarch 46.2-2.fc40 @updates
adwaita-icon-theme.noarch 46.2-2.fc40 @updates
adwaita-icon-theme-legacy.noarch 46.2-1.fc40 @updates
akmod-wl.x86_64 6.30.223.271-53.fc40 @rpmfusion-nonfree-updates
akmods.noarch 0.5.8-8.fc40 @fedora
alsa-lib.i686 1.2.12-1.fc40 @updates
alsa-lib.x86_64 1.2.12-1.fc40 @updates
alsa-sof-firmware.noarch 2024.09-1.fc40 @updates
alsa-ucm.noarch 1.2.12-1.fc40 @updates
alsa-utils.x86_64 1.2.12-1.fc40 @updates
alternatives.x86_64 1.27-1.fc40 @updates
amd-gpu-firmware.noarch 20241017-2.fc40 @updates
amd-ucode-firmware.noarch 20241017-2.fc40 @updates
anaconda.x86_64 40.22.3-1.fc40 @anaconda
anaconda-core.x86_64 40.22.3-1.fc40 @anaconda
anaconda-gui.x86_64 40.22.3-1.fc40 @anaconda
anaconda-install-env-deps.x86_64 40.22.3-1.fc40 @anaconda
anaconda-live.noarch 40.22.3-1.fc40 @anaconda
anaconda-tui.x86_64 40.22.3-1.fc40 @anaconda
anaconda-widgets.x86_64 40.22.3-1.fc40 @anaconda
annobin-docs.noarch 12.60-1.fc40 @updates
annobin-plugin-gcc.x86_64 12.60-1.fc40 @updates
ansible-srpm-macros.noarch 1-16.fc40 @updates
anthy-unicode.x86_64 1.0.0.20240502-8.fc40 @updates
antiword.x86_64 0.37-38.fc40 @anaconda
appstream.x86_64 1.0.2-2.fc40 @anaconda
appstream-data.noarch 40-8.fc40 @updates
apr.x86_64 1.7.5-1.fc40 @updates
apr-util.x86_64 1.6.3-16.fc40 @anaconda
apr-util-lmdb.x86_64 1.6.3-16.fc40 @anaconda
apr-util-openssl.x86_64 1.6.3-16.fc40 @anaconda
aria2.x86_64 1.37.0-3.fc40 @fedora
armadillo.x86_64 12.8.1-1.fc40 @fedora
armadillo-devel.x86_64 12.8.1-1.fc40 @fedora
arpack.x86_64 3.9.1-3.fc40 @fedora
arpack-devel.x86_64 3.9.1-3.fc40 @fedora
assimp.x86_64 5.3.1-1.fc40 @updates
at-spi2-atk.i686 2.52.0-1.fc40 @fedora
at-spi2-atk.x86_64 2.52.0-1.fc40 @anaconda
at-spi2-core.i686 2.52.0-1.fc40 @fedora
at-spi2-core.x86_64 2.52.0-1.fc40 @anaconda
atheros-firmware.noarch 20241017-2.fc40 @updates
atk.i686 2.52.0-1.fc40 @fedora
atk.x86_64 2.52.0-1.fc40 @anaconda
atkmm.x86_64 2.28.4-1.fc40 @anaconda
attr.x86_64 2.5.2-3.fc40 @anaconda
audit.x86_64 4.0.2-1.fc40 @updates
audit-libs.i686 4.0.2-1.fc40 @updates
audit-libs.x86_64 4.0.2-1.fc40 @updates
audit-rules.x86_64 4.0.2-1.fc40 @updates
augeas-libs.x86_64 1.14.2-0.1.20240903git2de06e0.fc40 @updates
authselect.x86_64 1.5.0-6.fc40 @updates
authselect-libs.x86_64 1.5.0-6.fc40 @updates
autoconf.noarch 2.71-10.fc40 @fedora
autocorr-en.noarch 1:24.2.7.2-1.fc40 @updates
autocorr-ko.noarch 1:24.2.7.2-1.fc40 @updates
automake.noarch 1.16.5-16.fc40 @fedora
avahi.x86_64 0.8-26.fc40 @anaconda
avahi-devel.x86_64 0.8-26.fc40 @fedora
avahi-glib.i686 0.8-26.fc40 @fedora
avahi-glib.x86_64 0.8-26.fc40 @anaconda
avahi-gobject.x86_64 0.8-26.fc40 @anaconda
avahi-libs.i686 0.8-26.fc40 @fedora
avahi-libs.x86_64 0.8-26.fc40 @anaconda
avahi-tools.x86_64 0.8-26.fc40 @anaconda
avif-pixbuf-loader.x86_64 1.0.4-3.fc40 @updates
b43-fwcutter.x86_64 019-36.fc40 @updates
b43-openfwwf.noarch 5.2-33.fc40 @anaconda
baobab.x86_64 46.0-1.fc40 @anaconda
basesystem.noarch 11-20.fc40 @anaconda
bash.x86_64 5.2.26-3.fc40 @anaconda
bash-color-prompt.noarch 0.4.2-1.fc40 @updates
bash-completion.noarch 1:2.11-14.fc40 @anaconda
bc.x86_64 1.07.1-21.fc40 @anaconda
biber.noarch 2.19-5.fc40 @fedora
bind-libs.x86_64 32:9.18.28-2.fc40 @updates
bind-utils.x86_64 32:9.18.28-2.fc40 @updates
binutils.x86_64 2.41-37.fc40 @updates
binutils-gold.x86_64 2.41-37.fc40 @updates
bison.x86_64 3.8.2-7.fc40 @fedora
blivet-data.noarch 1:3.10.0-1.fc40 @updates
blivet-gui-runtime.noarch 2.5.0-1.fc40 @anaconda
blosc.x86_64 1.21.6-1.fc40 @updates
bluez.x86_64 5.78-1.fc40 @updates
bluez-cups.x86_64 5.78-1.fc40 @updates
bluez-libs.x86_64 5.78-1.fc40 @updates
bluez-obexd.x86_64 5.78-1.fc40 @updates
bolt.x86_64 0.9.8-2.fc40 @updates
boost.x86_64 1.83.0-5.fc40 @updates
boost-atomic.x86_64 1.83.0-5.fc40 @updates
boost-chrono.x86_64 1.83.0-5.fc40 @updates
boost-container.x86_64 1.83.0-5.fc40 @updates
boost-context.x86_64 1.83.0-5.fc40 @updates
boost-contract.x86_64 1.83.0-5.fc40 @updates
boost-coroutine.x86_64 1.83.0-5.fc40 @updates
boost-date-time.x86_64 1.83.0-5.fc40 @updates
boost-devel.x86_64 1.83.0-5.fc40 @updates
boost-fiber.x86_64 1.83.0-5.fc40 @updates
boost-filesystem.x86_64 1.83.0-5.fc40 @updates
boost-graph.x86_64 1.83.0-5.fc40 @updates
boost-iostreams.x86_64 1.83.0-5.fc40 @updates
boost-json.x86_64 1.83.0-5.fc40 @updates
boost-locale.x86_64 1.83.0-5.fc40 @updates
boost-log.x86_64 1.83.0-5.fc40 @updates
boost-math.x86_64 1.83.0-5.fc40 @updates
boost-nowide.x86_64 1.83.0-5.fc40 @updates
boost-numpy3.x86_64 1.83.0-5.fc40 @updates
boost-program-options.x86_64 1.83.0-5.fc40 @updates
boost-python3.x86_64 1.83.0-5.fc40 @updates
boost-random.x86_64 1.83.0-5.fc40 @updates
boost-regex.x86_64 1.83.0-5.fc40 @updates
boost-serialization.x86_64 1.83.0-5.fc40 @updates
boost-stacktrace.x86_64 1.83.0-5.fc40 @updates
boost-system.x86_64 1.83.0-5.fc40 @updates
boost-test.x86_64 1.83.0-5.fc40 @updates
boost-thread.x86_64 1.83.0-5.fc40 @updates
boost-timer.x86_64 1.83.0-5.fc40 @updates
boost-type_erasure.x86_64 1.83.0-5.fc40 @updates
boost-wave.x86_64 1.83.0-5.fc40 @updates
braille-printer-app.x86_64 1:2.0~b0^386eea385f-6.fc40 @anaconda
brasero-libs.x86_64 3.12.3-8.fc40 @anaconda
brcmfmac-firmware.noarch 20241017-2.fc40 @updates
brlapi.x86_64 0.8.5-13.fc40 @anaconda
brltty.x86_64 6.6-13.fc40 @anaconda
broadcom-wl.noarch 6.30.223.271-23.fc40 @rpmfusion-nonfree
brotli.x86_64 1.1.0-3.fc40 @fedora
brotli-devel.x86_64 1.1.0-3.fc40 @fedora
btrfs-progs.x86_64 6.11-1.fc40 @updates
bubblewrap.x86_64 0.10.0-1.fc40 @updates
bzip2.x86_64 1.0.8-18.fc40 @anaconda
bzip2-devel.x86_64 1.0.8-18.fc40 @fedora
bzip2-libs.i686 1.0.8-18.fc40 @fedora
bzip2-libs.x86_64 1.0.8-18.fc40 @anaconda
c-ares.x86_64 1.28.1-1.fc40 @updates
ca-certificates.noarch 2024.2.69_v8.0.401-1.0.fc40 @updates
cairo.i686 1.18.0-3.fc40 @fedora
cairo.x86_64 1.18.0-3.fc40 @anaconda
cairo-devel.x86_64 1.18.0-3.fc40 @fedora
cairo-gobject.i686 1.18.0-3.fc40 @fedora
cairo-gobject.x86_64 1.18.0-3.fc40 @anaconda
cairomm.x86_64 1.14.5-3.fc40 @anaconda
cairomm1.16.x86_64 1.18.0-3.fc40 @anaconda
capstone.x86_64 5.0.1-3.fc40 @anaconda
catatonit.x86_64 0.1.7-22.fc40 @anaconda
cdparanoia-libs.i686 10.2-44.fc40 @fedora
cdparanoia-libs.x86_64 10.2-44.fc40 @anaconda
cfitsio.x86_64 4.4.0-2.fc40 @fedora
checkpolicy.x86_64 3.7-2.fc40 @updates
chkconfig.x86_64 1.27-1.fc40 @updates
chromedriver.x86_64 130.0.6723.91-1.fc40 @updates
chromium-common.x86_64 130.0.6723.91-1.fc40 @updates
chrony.x86_64 4.6.1-1.fc40 @updates
cifs-utils.x86_64 7.0-5.fc40 @updates
cifs-utils-info.x86_64 7.0-5.fc40 @updates
cirrus-audio-firmware.noarch 20241017-2.fc40 @updates
cjson.x86_64 1.7.18-1.fc40 @updates
clang.x86_64 18.1.8-1.fc40 @updates
clang-devel.x86_64 18.1.8-1.fc40 @updates
clang-libs.x86_64 18.1.8-1.fc40 @updates
clang-resource-filesystem.noarch 18.1.8-1.fc40 @updates
clang-tools-extra.x86_64 18.1.8-1.fc40 @updates
cldr-emoji-annotation.noarch 1:45-4.fc40 @updates
cldr-emoji-annotation-dtd.noarch 1:45-4.fc40 @updates
clucene-contribs-lib.x86_64 2.3.3.4-48.20130812.e8e3d20git.fc40 @anaconda
clucene-core.x86_64 2.3.3.4-48.20130812.e8e3d20git.fc40 @anaconda
cmake.x86_64 3.30.5-1.fc40 @updates
cmake-data.noarch 3.30.5-1.fc40 @updates
cmake-filesystem.x86_64 3.30.5-1.fc40 @updates
cmake-gui.x86_64 3.30.5-1.fc40 @updates
cmake-rpm-macros.noarch 3.30.5-1.fc40 @updates
code.x86_64 1.95.1-1730355393.el8 @code
codec2.x86_64 1.2.0-4.fc40 @anaconda
color-filesystem.noarch 1-33.fc40 @anaconda
colord.x86_64 1.4.7-3.fc40 @anaconda
colord-gtk4.x86_64 0.3.1-1.fc40 @anaconda
colord-libs.i686 1.4.7-3.fc40 @fedora
colord-libs.x86_64 1.4.7-3.fc40 @anaconda
compiler-rt.x86_64 18.1.8-1.fc40 @updates
composefs.x86_64 1.0.3-1.fc40 @fedora
composefs-libs.x86_64 1.0.3-1.fc40 @fedora
compsize.x86_64 1.5-8.fc40 @anaconda
conmon.x86_64 2:2.1.12-2.fc40 @updates
container-selinux.noarch 2:2.233.0-1.fc40 @updates
containers-common.noarch 5:0.60.4-2.fc40 @updates
containers-common-extra.noarch 5:0.60.4-2.fc40 @updates
copy-jdk-configs.noarch 4.1-5.fc40 @anaconda
coreutils.x86_64 9.4-8.fc40 @updates
coreutils-common.x86_64 9.4-8.fc40 @updates
cpio.x86_64 2.15-1.fc40 @anaconda
cpp.x86_64 14.2.1-3.fc40 @updates
cracklib.x86_64 2.9.11-5.fc40 @anaconda
cracklib-dicts.x86_64 2.9.11-5.fc40 @anaconda
criu.x86_64 4.0-1.fc40 @updates
criu-libs.x86_64 4.0-1.fc40 @updates
crun.x86_64 1.17-1.fc40 @updates
crypto-policies.noarch 20241011-1.git5930b9a.fc40 @updates
crypto-policies-scripts.noarch 20241011-1.git5930b9a.fc40 @updates
cryptsetup.x86_64 2.7.5-1.fc40 @updates
cryptsetup-libs.x86_64 2.7.5-1.fc40 @updates
ctags.x86_64 6.0.0-5.fc40 @anaconda
cups.x86_64 1:2.4.11-1.fc40 @updates
cups-browsed.x86_64 1:2.0.1-4.fc40 @updates
cups-client.x86_64 1:2.4.11-1.fc40 @updates
cups-devel.x86_64 1:2.4.11-1.fc40 @updates
cups-filesystem.noarch 1:2.4.11-1.fc40 @updates
cups-filters.x86_64 1:2.0.1-1.fc40 @updates
cups-filters-driverless.x86_64 1:2.0.1-1.fc40 @updates
cups-ipptool.x86_64 1:2.4.11-1.fc40 @updates
cups-libs.i686 1:2.4.11-1.fc40 @updates
cups-libs.x86_64 1:2.4.11-1.fc40 @updates
cups-pk-helper.x86_64 0.2.7-7.fc40 @anaconda
curl.x86_64 8.6.0-10.fc40 @updates
cxl-libs.x86_64 80-1.fc40 @updates
cypher-shell.noarch 5.25.1-1 @neo4j
cyrus-sasl.x86_64 2.1.28-19.fc40 @anaconda
cyrus-sasl-gssapi.x86_64 2.1.28-19.fc40 @anaconda
cyrus-sasl-lib.x86_64 2.1.28-19.fc40 @anaconda
cyrus-sasl-plain.x86_64 2.1.28-19.fc40 @anaconda
daxctl-libs.x86_64 80-1.fc40 @updates
dbus.x86_64 1:1.14.10-3.fc40 @anaconda
dbus-broker.x86_64 36-2.fc40 @updates
dbus-common.noarch 1:1.14.10-3.fc40 @anaconda
dbus-daemon.x86_64 1:1.14.10-3.fc40 @anaconda
dbus-glib.x86_64 0.112-8.fc40 @anaconda
dbus-libs.i686 1:1.14.10-3.fc40 @fedora
dbus-libs.x86_64 1:1.14.10-3.fc40 @anaconda
dbus-tools.x86_64 1:1.14.10-3.fc40 @anaconda
dbus-x11.x86_64 1:1.14.10-3.fc40 @anaconda
dconf.i686 0.40.0-12.fc40 @fedora
dconf.x86_64 0.40.0-12.fc40 @anaconda
debugedit.x86_64 5.0-18.fc40 @updates
default-editor.noarch 7.2-7.fc40 @updates
default-fonts-am.noarch 4.0-13.fc40 @updates
default-fonts-ar.noarch 4.0-13.fc40 @updates
default-fonts-as.noarch 4.0-13.fc40 @updates
default-fonts-ast.noarch 4.0-13.fc40 @updates
default-fonts-be.noarch 4.0-13.fc40 @updates
default-fonts-bg.noarch 4.0-13.fc40 @updates
default-fonts-bn.noarch 4.0-13.fc40 @updates
default-fonts-bo.noarch 4.0-13.fc40 @updates
default-fonts-br.noarch 4.0-13.fc40 @updates
default-fonts-chr.noarch 4.0-13.fc40 @updates
default-fonts-cjk-mono.noarch 4.0-13.fc40 @updates
default-fonts-cjk-sans.noarch 4.0-13.fc40 @updates
default-fonts-cjk-serif.noarch 4.0-13.fc40 @updates
default-fonts-core-emoji.noarch 4.0-13.fc40 @updates
default-fonts-core-math.noarch 4.0-13.fc40 @updates
default-fonts-core-mono.noarch 4.0-13.fc40 @updates
default-fonts-core-sans.noarch 4.0-13.fc40 @updates
default-fonts-core-serif.noarch 4.0-13.fc40 @updates
default-fonts-dv.noarch 4.0-13.fc40 @updates
default-fonts-dz.noarch 4.0-13.fc40 @updates
default-fonts-el.noarch 4.0-13.fc40 @updates
default-fonts-eo.noarch 4.0-13.fc40 @updates
default-fonts-eu.noarch 4.0-13.fc40 @updates
default-fonts-fa.noarch 4.0-13.fc40 @updates
default-fonts-gu.noarch 4.0-13.fc40 @updates
default-fonts-he.noarch 4.0-13.fc40 @updates
default-fonts-hi.noarch 4.0-13.fc40 @updates
default-fonts-hy.noarch 4.0-13.fc40 @updates
default-fonts-ia.noarch 4.0-13.fc40 @updates
default-fonts-iu.noarch 4.0-13.fc40 @updates
default-fonts-ka.noarch 4.0-13.fc40 @updates
default-fonts-km.noarch 4.0-13.fc40 @updates
default-fonts-kn.noarch 4.0-13.fc40 @updates
default-fonts-ku.noarch 4.0-13.fc40 @updates
default-fonts-lo.noarch 4.0-13.fc40 @updates
default-fonts-mai.noarch 4.0-13.fc40 @updates
default-fonts-ml.noarch 4.0-13.fc40 @updates
default-fonts-mni.noarch 4.0-13.fc40 @updates
default-fonts-mr.noarch 4.0-13.fc40 @updates
default-fonts-my.noarch 4.0-13.fc40 @updates
default-fonts-nb.noarch 4.0-13.fc40 @updates
default-fonts-ne.noarch 4.0-13.fc40 @updates
default-fonts-nn.noarch 4.0-13.fc40 @updates
default-fonts-nr.noarch 4.0-13.fc40 @updates
default-fonts-nso.noarch 4.0-13.fc40 @updates
default-fonts-or.noarch 4.0-13.fc40 @updates
default-fonts-other-mono.noarch 4.0-13.fc40 @updates
default-fonts-other-sans.noarch 4.0-13.fc40 @updates
default-fonts-other-serif.noarch 4.0-13.fc40 @updates
default-fonts-pa.noarch 4.0-13.fc40 @updates
default-fonts-ru.noarch 4.0-13.fc40 @updates
default-fonts-sat.noarch 4.0-13.fc40 @updates
default-fonts-si.noarch 4.0-13.fc40 @updates
default-fonts-ss.noarch 4.0-13.fc40 @updates
default-fonts-ta.noarch 4.0-13.fc40 @updates
default-fonts-te.noarch 4.0-13.fc40 @updates
default-fonts-th.noarch 4.0-13.fc40 @updates
default-fonts-tn.noarch 4.0-13.fc40 @updates
default-fonts-ts.noarch 4.0-13.fc40 @updates
default-fonts-uk.noarch 4.0-13.fc40 @updates
default-fonts-ur.noarch 4.0-13.fc40 @updates
default-fonts-ve.noarch 4.0-13.fc40 @updates
default-fonts-vi.noarch 4.0-13.fc40 @updates
default-fonts-xh.noarch 4.0-13.fc40 @updates
default-fonts-yi.noarch 4.0-13.fc40 @updates
default-fonts-zu.noarch 4.0-13.fc40 @updates
dejavu-sans-fonts.noarch 2.37-23.fc40 @fedora
deltarpm.x86_64 3.6.5-1.fc40 @updates
desktop-backgrounds-gnome.noarch 40.0.0-1.fc40 @anaconda
desktop-file-utils.x86_64 0.26-12.fc40 @anaconda
device-mapper.x86_64 1.02.199-1.fc40 @updates
device-mapper-event.x86_64 1.02.199-1.fc40 @updates
device-mapper-event-libs.x86_64 1.02.199-1.fc40 @updates
device-mapper-libs.x86_64 1.02.199-1.fc40 @updates
device-mapper-multipath-libs.x86_64 0.9.7-7.fc40 @anaconda
device-mapper-persistent-data.x86_64 1.0.12-1.fc40 @anaconda
devscripts-checkbashisms.noarch 2.23.7-3.fc40 @fedora
dhcp-client.x86_64 12:4.4.3-13.P1.fc40 @anaconda
dhcp-common.noarch 12:4.4.3-13.P1.fc40 @anaconda
diffutils.x86_64 3.10-5.fc40 @anaconda
distribution-gpg-keys.noarch 1.105-1.fc40 @updates
djvulibre-libs.x86_64 3.5.28-9.fc40 @updates
dkms.noarch 3.1.1-1.fc40 @updates
dleyna.x86_64 0.8.3-4.fc40 @updates
dleyna-connector-dbus.x86_64 0.8.3-4.fc40 @updates
dleyna-server.x86_64 0.8.3-4.fc40 @updates
dmidecode.x86_64 1:3.6-1.fc40 @updates
dnf.noarch 4.21.1-1.fc40 @updates
dnf-data.noarch 4.21.1-1.fc40 @updates
dnf-plugins-core.noarch 4.9.0-1.fc40 @updates
dnsmasq.x86_64 2.90-1.fc40 @anaconda
dos2unix.x86_64 7.5.2-1.fc40 @anaconda
dosbox-staging.x86_64 0.81.2-1.fc40 @updates
dosfstools.x86_64 4.2-11.fc40 @anaconda
dotconf.x86_64 1.3-35.fc40 @anaconda
double-conversion.x86_64 3.3.0-3.fc40 @anaconda
draco.x86_64 1.5.7-2.fc40 @fedora
draco-devel.x86_64 1.5.7-2.fc40 @fedora
dracut.x86_64 102-2.fc40 @updates
dracut-config-rescue.x86_64 102-2.fc40 @updates
dracut-live.x86_64 102-2.fc40 @updates
dracut-network.x86_64 102-2.fc40 @updates
dracut-squash.x86_64 102-2.fc40 @updates
duktape.i686 2.7.0-7.fc40 @fedora
duktape.x86_64 2.7.0-7.fc40 @anaconda
dwz.x86_64 0.15-8.fc40 @updates
e2fsprogs.x86_64 1.47.0-5.fc40 @anaconda
e2fsprogs-libs.x86_64 1.47.0-5.fc40 @anaconda
ed.x86_64 1.20.2-1.fc40 @updates
editorconfig-libs.x86_64 0.12.9-1.fc40 @updates
edk2-ovmf.noarch 20240813-2.fc40 @updates
efi-filesystem.noarch 5-11.fc40 @anaconda
efi-srpm-macros.noarch 5-11.fc40 @fedora
efibootmgr.x86_64 18-6.fc40 @anaconda
efivar-libs.x86_64 39-2.fc40 @updates
eigen3-devel.noarch 3.4.0-15.fc40 @fedora
elfutils.x86_64 0.192-4.fc40 @updates
elfutils-debuginfod-client.i686 0.192-4.fc40 @updates
elfutils-debuginfod-client.x86_64 0.192-4.fc40 @updates
elfutils-default-yama-scope.noarch 0.192-4.fc40 @updates
elfutils-libelf.i686 0.192-4.fc40 @updates
elfutils-libelf.x86_64 0.192-4.fc40 @updates
elfutils-libelf-devel.x86_64 0.192-4.fc40 @updates
elfutils-libs.i686 0.192-4.fc40 @updates
elfutils-libs.x86_64 0.192-4.fc40 @updates
emacs-filesystem.noarch 1:29.4-9.fc40 @updates
enchant2.x86_64 2.6.9-1.fc40 @updates
epiphany-runtime.x86_64 1:46.4-1.fc40 @updates
espeak-ng.x86_64 1.51.1-8.fc40 @anaconda
ethtool.x86_64 2:6.11-1.fc40 @updates
evince.x86_64 46.3.1-1.fc40 @updates
evince-djvu.x86_64 46.3.1-1.fc40 @updates
evince-libs.x86_64 46.3.1-1.fc40 @updates
evince-previewer.x86_64 46.3.1-1.fc40 @updates
evince-thumbnailer.x86_64 46.3.1-1.fc40 @updates
evolution-data-server.x86_64 3.52.4-1.fc40 @updates
evolution-data-server-langpacks.noarch 3.52.4-1.fc40 @updates
exempi.x86_64 2.6.4-5.fc40 @anaconda
exfatprogs.x86_64 1.2.5-1.fc40 @updates
exiv2.x86_64 0.27.6-7.fc40 @anaconda
exiv2-devel.x86_64 0.27.6-7.fc40 @fedora
exiv2-libs.x86_64 0.27.6-7.fc40 @anaconda
expat.i686 2.6.3-1.fc40 @updates
expat.x86_64 2.6.3-1.fc40 @updates
expat-devel.x86_64 2.6.3-1.fc40 @updates
f2fs-tools.x86_64 1.16.0-4.fc40 @anaconda
f40-backgrounds-base.noarch 40.2.0-1.fc40 @updates
f40-backgrounds-gnome.noarch 40.2.0-1.fc40 @updates
fakeroot.x86_64 1.36-1.fc40 @updates
fakeroot-libs.x86_64 1.36-1.fc40 @updates
fcgi.x86_64 2.4.0-49.fc40 @fedora
fcgi-devel.x86_64 2.4.0-49.fc40 @fedora
fdk-aac-free.x86_64 2.0.0-13.fc40 @anaconda
fedora-bookmarks.noarch 28-30.fc40 @anaconda
fedora-chromium-config.noarch 3.0-4.fc40 @anaconda
fedora-chromium-config-gnome.noarch 3.0-4.fc40 @anaconda
fedora-flathub-remote.noarch 1-8.fc40 @anaconda
fedora-gpg-keys.noarch 40-2 @updates
fedora-logos.noarch 38.1.0-5.fc40 @anaconda
fedora-logos-httpd.noarch 38.1.0-5.fc40 @anaconda
fedora-release-common.noarch 40-39 @updates
fedora-release-identity-workstation.noarch 40-39 @updates
fedora-release-workstation.noarch 40-39 @updates
fedora-repos.noarch 40-2 @updates
fedora-third-party.noarch 0.10-8.fc40 @anaconda
fedora-workstation-backgrounds.noarch 1.6-5.fc40 @anaconda
fedora-workstation-repositories.x86_64 38-5.fc40 @anaconda
ffmpeg-free.x86_64 6.1.2-1.fc40 @updates
fftw-libs-double.x86_64 3.3.10-12.fc40 @updates
file.x86_64 5.45-4.fc40 @anaconda
file-libs.x86_64 5.45-4.fc40 @anaconda
filesystem.x86_64 3.18-8.fc40 @anaconda
filezilla.x86_64 3.67.1-2.fc40 @updates
findutils.x86_64 1:4.9.0-9.fc40 @updates
firefox.x86_64 132.0-2.fc40 @updates
firefox-langpacks.x86_64 132.0-2.fc40 @updates
firewalld.noarch 2.1.4-2.fc40 @updates
firewalld-filesystem.noarch 2.1.4-2.fc40 @updates
flac-libs.i686 1.4.3-4.fc40 @fedora
flac-libs.x86_64 1.4.3-4.fc40 @anaconda
flashrom.x86_64 1.4.0-1.fc40 @updates
flatpak.x86_64 1.15.10-1.fc40 @updates
flatpak-libs.x86_64 1.15.10-1.fc40 @updates
flatpak-selinux.noarch 1.15.10-1.fc40 @updates
flatpak-session-helper.x86_64 1.15.10-1.fc40 @updates
flex.x86_64 2.6.4-16.fc40 @fedora
flexiblas.x86_64 3.4.4-1.fc40 @updates
flexiblas-devel.x86_64 3.4.4-1.fc40 @updates
flexiblas-netlib.x86_64 3.4.4-1.fc40 @updates
flexiblas-netlib64.x86_64 3.4.4-1.fc40 @updates
flexiblas-openblas-openmp.x86_64 3.4.4-1.fc40 @updates
flexiblas-openblas-openmp64.x86_64 3.4.4-1.fc40 @updates
flite.x86_64 2.2-8.fc40 @anaconda
fluid-soundfont-common.noarch 3.1-32.fc40 @fedora
fluid-soundfont-gm.noarch 3.1-32.fc40 @fedora
fluidsynth-libs.x86_64 2.3.6-2.fc40 @updates
fmt.x86_64 10.2.1-5.fc40 @updates
folks.x86_64 1:0.15.9-1.fc40 @updates
fontconfig.i686 2.15.0-6.fc40 @updates
fontconfig.x86_64 2.15.0-6.fc40 @updates
fontconfig-devel.x86_64 2.15.0-6.fc40 @updates
fonts-filesystem.noarch 1:2.0.5-14.fc40 @anaconda
fonts-srpm-macros.noarch 1:2.0.5-14.fc40 @fedora
forge-srpm-macros.noarch 0.3.2-1.fc40 @updates
fpaste.noarch 0.5.0.0-1.fc40 @updates
fpc-srpm-macros.noarch 1.3-12.fc40 @fedora
fprintd.x86_64 1.94.2-11.fc40 @anaconda
fprintd-pam.x86_64 1.94.2-11.fc40 @anaconda
freeglut.x86_64 3.6.0-1.fc40 @updates
freerdp-libs.x86_64 2:3.9.0-1.fc40 @updates
freerdp2-libs.x86_64 2.11.7-5.fc40 @updates
freetype.i686 2.13.2-5.fc40 @fedora
freetype.x86_64 2.13.2-5.fc40 @anaconda
freetype-devel.x86_64 2.13.2-5.fc40 @fedora
freexl.x86_64 2.0.0-7.fc40 @fedora
fribidi.i686 1.0.14-2.fc40 @updates
fribidi.x86_64 1.0.14-2.fc40 @updates
fros.noarch 1.1-35.fc40 @anaconda
fros-gnome.noarch 1.1-35.fc40 @anaconda
fstrm.x86_64 0.6.1-10.fc40 @anaconda
fuse.x86_64 2.9.9-21.fc40 @anaconda
fuse-common.x86_64 3.16.2-3.fc40 @anaconda
fuse-libs.x86_64 2.9.9-21.fc40 @anaconda
fuse-overlayfs.x86_64 1.13-1.fc40 @anaconda
fuse3.x86_64 3.16.2-3.fc40 @anaconda
fuse3-libs.x86_64 3.16.2-3.fc40 @anaconda
fwupd.x86_64 1.9.26-1.fc40 @updates
fwupd-efi.x86_64 1.6-1.fc40 @updates
fwupd-plugin-flashrom.x86_64 1.9.26-1.fc40 @updates
fwupd-plugin-modem-manager.x86_64 1.9.26-1.fc40 @updates
fwupd-plugin-uefi-capsule-data.x86_64 1.9.26-1.fc40 @updates
game-music-emu.x86_64 0.6.3-14.fc40 @anaconda
gamemode.x86_64 1.8.2-1.fc40 @updates
gawk.x86_64 5.3.0-3.fc40 @anaconda
gawk-all-langpacks.x86_64 5.3.0-3.fc40 @anaconda
gc.x86_64 8.2.2-6.fc40 @fedora
gcc.x86_64 14.2.1-3.fc40 @updates
gcc-c++.x86_64 14.2.1-3.fc40 @updates
gcc-gfortran.x86_64 14.2.1-3.fc40 @updates
gcc-plugin-annobin.x86_64 14.2.1-3.fc40 @updates
gcr.x86_64 4.3.0-1.fc40 @updates
gcr-libs.x86_64 4.3.0-1.fc40 @updates
gcr3.x86_64 3.41.1-8.fc40 @anaconda
gcr3-base.x86_64 3.41.1-8.fc40 @anaconda
gd.i686 2.3.3-16.fc40 @fedora
gd.x86_64 2.3.3-16.fc40 @anaconda
gdal.x86_64 3.8.5-2.fc40 @updates
gdal-devel.x86_64 3.8.5-2.fc40 @updates
gdal-libs.x86_64 3.8.5-2.fc40 @updates
gdal-python-tools.x86_64 3.8.5-2.fc40 @updates
gdb.x86_64 15.2-1.fc40 @updates
gdb-headless.x86_64 15.2-1.fc40 @updates
gdbm.x86_64 1:1.23-6.fc40 @anaconda
gdbm-libs.x86_64 1:1.23-6.fc40 @anaconda
gdk-pixbuf2.i686 2.42.10-8.fc40 @fedora
gdk-pixbuf2.x86_64 2.42.10-8.fc40 @anaconda
gdk-pixbuf2-modules.i686 2.42.10-8.fc40 @fedora
gdk-pixbuf2-modules.x86_64 2.42.10-8.fc40 @anaconda
gdm.x86_64 1:46.2-1.fc40 @updates
gdouros-symbola-fonts.noarch 10.24-15.fc40 @anaconda
genisoimage.x86_64 1.1.11-54.fc40 @anaconda
geoclue2.x86_64 2.7.0-5.fc40 @anaconda
geoclue2-libs.x86_64 2.7.0-5.fc40 @anaconda
geocode-glib.x86_64 3.26.4-11.fc40 @anaconda
geolite2-city.noarch 20191217-12.fc40 @anaconda
geolite2-country.noarch 20191217-12.fc40 @anaconda
geos.x86_64 3.12.2-1.fc40 @updates
geos-devel.x86_64 3.12.2-1.fc40 @updates
gettext.x86_64 0.22.5-4.fc40 @updates
gettext-envsubst.x86_64 0.22.5-4.fc40 @updates
gettext-libs.x86_64 0.22.5-4.fc40 @updates
gettext-runtime.x86_64 0.22.5-4.fc40 @updates
gh.x86_64 2.45.0-1.fc40 @fedora
ghc-srpm-macros.noarch 1.9.1-1.fc40 @updates
ghostscript.x86_64 10.02.1-12.fc40 @updates
ghostscript-tools-fonts.noarch 10.02.1-12.fc40 @updates
ghostscript-tools-printing.noarch 10.02.1-12.fc40 @updates
giflib.x86_64 5.2.2-1.fc40 @anaconda
git.x86_64 2.47.0-1.fc40 @updates
git-core.x86_64 2.47.0-1.fc40 @updates
git-core-doc.noarch 2.47.0-1.fc40 @updates
gjs.x86_64 1.80.2-3.fc40 @updates
gl-manpages.noarch 1.1-31.20190306.fc40 @fedora
glew.x86_64 2.2.0-7.fc40 @fedora
glew-devel.x86_64 2.2.0-7.fc40 @fedora
glfw.x86_64 1:3.3.10-1.fc40 @updates
glfw-devel.x86_64 1:3.3.10-1.fc40 @updates
glib-networking.i686 2.80.0-1.fc40 @fedora
glib-networking.x86_64 2.80.0-1.fc40 @anaconda
glib2.i686 2.80.3-1.fc40 @updates
glib2.x86_64 2.80.3-1.fc40 @updates
glib2-devel.x86_64 2.80.3-1.fc40 @updates
glibc.i686 2.39-22.fc40 @updates
glibc.x86_64 2.39-22.fc40 @updates
glibc-all-langpacks.x86_64 2.39-22.fc40 @updates
glibc-common.x86_64 2.39-22.fc40 @updates
glibc-devel.x86_64 2.39-22.fc40 @updates
glibc-gconv-extra.i686 2.39-22.fc40 @updates
glibc-gconv-extra.x86_64 2.39-22.fc40 @updates
glibc-headers-x86.noarch 2.39-22.fc40 @updates
glibmm2.4.x86_64 2.66.7-1.fc40 @anaconda
glibmm2.68.x86_64 2.80.0-1.fc40 @anaconda
glusterfs.x86_64 11.1-3.fc40 @anaconda
glusterfs-cli.x86_64 11.1-3.fc40 @anaconda
glusterfs-client-xlators.x86_64 11.1-3.fc40 @anaconda
glusterfs-fuse.x86_64 11.1-3.fc40 @anaconda
glx-utils.x86_64 9.0.0-6.fc40 @anaconda
glycin-loaders.x86_64 1.0.1-6.fc40 @updates
glyphography-newscycle-fonts.noarch 0.5.2-13.fc40 @fedora
gmp.i686 1:6.2.1-8.fc40 @fedora
gmp.x86_64 1:6.2.1-8.fc40 @anaconda
gmp-c++.x86_64 1:6.2.1-8.fc40 @fedora
gmp-devel.x86_64 1:6.2.1-8.fc40 @fedora
gnat-srpm-macros.noarch 6-5.fc40 @fedora
gnome-abrt.x86_64 1.4.3-1.fc40 @anaconda
gnome-autoar.x86_64 0.4.5-1.fc40 @updates
gnome-backgrounds.noarch 46.0-1.fc40 @anaconda
gnome-bluetooth.x86_64 1:46.2-1.fc40 @updates
gnome-bluetooth-libs.x86_64 1:46.2-1.fc40 @updates
gnome-boxes.x86_64 46.1-1.fc40 @updates
gnome-browser-connector.x86_64 42.1-6.fc40 @anaconda
gnome-calculator.x86_64 46.0-1.fc40 @anaconda
gnome-calendar.x86_64 46.1-1.fc40 @updates
gnome-characters.x86_64 46.0-1.fc40 @anaconda
gnome-classic-session.noarch 46.2-1.fc40 @updates
gnome-classic-session-xsession.noarch 46.2-1.fc40 @updates
gnome-clocks.x86_64 46.0-1.fc40 @anaconda
gnome-color-manager.x86_64 3.36.0-12.fc40 @anaconda
gnome-connections.x86_64 46.0-3.fc40 @updates
gnome-contacts.x86_64 46.0-1.fc40 @anaconda
gnome-control-center.x86_64 46.4-1.fc40 @updates
gnome-control-center-filesystem.noarch 46.4-1.fc40 @updates
gnome-desktop3.x86_64 44.0-15.fc40 @anaconda
gnome-desktop4.x86_64 44.0-15.fc40 @anaconda
gnome-disk-utility.x86_64 46.1-1.fc40 @updates
gnome-font-viewer.x86_64 46.0-1.fc40 @anaconda
gnome-initial-setup.x86_64 46.6-1.fc40 @updates
gnome-keyring.x86_64 46.2-1.fc40 @updates
gnome-keyring-pam.x86_64 46.2-1.fc40 @updates
gnome-logs.x86_64 45.0-3.fc40 @updates
gnome-maps.x86_64 46.12-1.fc40 @updates
gnome-menus.x86_64 3.36.0-11.fc40 @anaconda
gnome-online-accounts.x86_64 3.50.5-1.fc40 @updates
gnome-remote-desktop.x86_64 46.5-1.fc40 @updates
gnome-session.x86_64 46.0-1.fc40 @anaconda
gnome-session-wayland-session.x86_64 46.0-1.fc40 @anaconda
gnome-session-xsession.x86_64 46.0-1.fc40 @anaconda
gnome-settings-daemon.x86_64 46.0-1.fc40 @anaconda
gnome-shell.x86_64 46.6-1.fc40 @updates
gnome-shell-extension-apps-menu.noarch 46.2-1.fc40 @updates
gnome-shell-extension-background-logo.noarch 46.0-1.fc40 @updates
gnome-shell-extension-common.noarch 46.2-1.fc40 @updates
gnome-shell-extension-dash-to-dock.noarch 99-1.fc40 @updates
gnome-shell-extension-launch-new-instance.noarch 46.2-1.fc40 @updates
gnome-shell-extension-places-menu.noarch 46.2-1.fc40 @updates
gnome-shell-extension-window-list.noarch 46.2-1.fc40 @updates
gnome-software.x86_64 46.5-1.fc40 @updates
gnome-software-fedora-langpacks.x86_64 46.5-1.fc40 @updates
gnome-system-monitor.x86_64 46.0-1.fc40 @anaconda
gnome-terminal.x86_64 3.50.1-8.fc40 @updates
gnome-terminal-nautilus.x86_64 3.50.1-8.fc40 @updates
gnome-text-editor.x86_64 46.3-1.fc40 @updates
gnome-tour.x86_64 46.0-2.fc40 @updates
gnome-tweaks.noarch 46.1-1.fc40 @updates
gnome-user-docs.noarch 46.4-1.fc40 @updates
gnome-user-share.x86_64 43.0-5.fc40 @anaconda
gnome-weather.noarch 46.0-1.fc40 @anaconda
gnu-free-fonts-common.noarch 20120503-33.fc40 @fedora
gnu-free-sans-fonts.noarch 20120503-33.fc40 @fedora
gnupg2.x86_64 2.4.4-1.fc40 @anaconda
gnupg2-smime.x86_64 2.4.4-1.fc40 @anaconda
gnutls.i686 3.8.6-1.fc40 @updates
gnutls.x86_64 3.8.6-1.fc40 @updates
gnutls-c++.x86_64 3.8.6-1.fc40 @updates
gnutls-dane.x86_64 3.8.6-1.fc40 @updates
gnutls-devel.x86_64 3.8.6-1.fc40 @updates
gnutls-utils.x86_64 3.8.6-1.fc40 @updates
go-srpm-macros.noarch 3.5.0-1.fc40 @fedora
gobject-introspection.x86_64 1.80.1-1.fc40 @updates
gom.x86_64 0.5.3-1.fc40 @updates
google-carlito-fonts.noarch 1.103-0.24.20130920.fc40 @anaconda
google-chrome-stable.x86_64 130.0.6723.116-1 @google-chrome
google-crosextra-caladea-fonts.noarch 1:1.002-0.18.20130214.fc40 @anaconda
google-droid-sans-fonts.noarch 20200215-19.fc40 @anaconda
google-noto-color-emoji-fonts.noarch 20231130-1.fc40 @anaconda
google-noto-fonts-common.noarch 20240301-2.fc40 @anaconda
google-noto-naskh-arabic-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-arabic-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-armenian-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-bengali-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-canadian-aboriginal-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-cherokee-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-cjk-vf-fonts.noarch 1:2.004-7.fc40 @anaconda
google-noto-sans-devanagari-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-ethiopic-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-georgian-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-gujarati-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-gurmukhi-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-hebrew-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-kannada-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-khmer-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-lao-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-math-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-meeteimayek-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-mono-cjk-vf-fonts.noarch 1:2.004-7.fc40 @anaconda
google-noto-sans-mono-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-ol-chiki-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-oriya-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-sinhala-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-symbols-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-symbols2-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-tamil-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-telugu-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-thaana-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-thai-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-sans-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-armenian-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-bengali-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-cjk-vf-fonts.noarch 1:2.002-4.fc40 @anaconda
google-noto-serif-devanagari-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-ethiopic-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-georgian-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-gujarati-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-gurmukhi-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-hebrew-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-kannada-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-khmer-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-lao-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-oriya-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-sinhala-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-tamil-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-telugu-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-thai-vf-fonts.noarch 20240301-2.fc40 @anaconda
google-noto-serif-vf-fonts.noarch 20240301-2.fc40 @anaconda
gperftools-libs.x86_64 2.14-4.fc40 @updates
gpgme.x86_64 1.23.2-3.fc40 @anaconda
gpgmepp.x86_64 1.23.2-3.fc40 @anaconda
gpsbabel.x86_64 1.9.0-6.fc40 @fedora
graphene.i686 1.10.6-8.fc40 @fedora
graphene.x86_64 1.10.6-8.fc40 @anaconda
graphite2.i686 1.3.14-15.fc40 @fedora
graphite2.x86_64 1.3.14-15.fc40 @anaconda
graphite2-devel.x86_64 1.3.14-15.fc40 @fedora
graphviz.x86_64 9.0.0-11.fc40 @anaconda
grass.x86_64 8.4.0-1.fc40 @updates
grass-devel.x86_64 8.4.0-1.fc40 @updates
grass-libs.x86_64 8.4.0-1.fc40 @updates
grep.x86_64 3.11-7.fc40 @anaconda
grilo.x86_64 0.3.16-4.fc40 @anaconda
grilo-plugins.x86_64 0.3.16-4.fc40 @anaconda
groff-base.x86_64 1.23.0-6.fc40 @anaconda
grub2-common.noarch 1:2.06-123.fc40 @updates
grub2-efi-ia32.x86_64 1:2.06-123.fc40 @updates
grub2-efi-ia32-cdboot.x86_64 1:2.06-123.fc40 @updates
grub2-efi-x64.x86_64 1:2.06-123.fc40 @updates
grub2-efi-x64-cdboot.x86_64 1:2.06-123.fc40 @updates
grub2-pc.x86_64 1:2.06-123.fc40 @updates
grub2-pc-modules.noarch 1:2.06-123.fc40 @updates
grub2-tools.x86_64 1:2.06-123.fc40 @updates
grub2-tools-efi.x86_64 1:2.06-123.fc40 @updates
grub2-tools-extra.x86_64 1:2.06-123.fc40 @updates
grub2-tools-minimal.x86_64 1:2.06-123.fc40 @updates
grubby.x86_64 8.40-75.fc40 @anaconda
gsettings-desktop-schemas.x86_64 46.1-1.fc40 @updates
gsl.x86_64 2.7.1-8.fc40 @fedora
gsl-devel.x86_64 2.7.1-8.fc40 @fedora
gsm.i686 1.0.22-6.fc40 @fedora
gsm.x86_64 1.0.22-6.fc40 @anaconda
gsound.x86_64 1.0.3-8.fc40 @anaconda
gspell.x86_64 1.12.2-4.fc40 @anaconda
gssdp.x86_64 1.6.3-2.fc40 @anaconda
gssproxy.x86_64 0.9.2-3.fc40 @anaconda
gst-editing-services.x86_64 1.24.9-1.fc40 @updates
gstreamer1.i686 1.24.9-1.fc40 @updates
gstreamer1.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugin-libav.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugin-openh264.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-bad-free.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-bad-free-libs.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-base.i686 1.24.9-1.fc40 @updates
gstreamer1-plugins-base.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-good.i686 1.24.9-1.fc40 @updates
gstreamer1-plugins-good.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-good-gtk.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-good-qt.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-good-qt6.x86_64 1.24.9-1.fc40 @updates
gstreamer1-plugins-ugly-free.x86_64 1.24.9-1.fc40 @updates
gtk-update-icon-cache.x86_64 3.24.43-1.fc40 @updates
gtk-vnc2.x86_64 1.3.1-5.fc40 @anaconda
gtk3.i686 3.24.43-1.fc40 @updates
gtk3.x86_64 3.24.43-1.fc40 @updates
gtk4.x86_64 4.14.5-1.fc40 @updates
gtkmm3.0.x86_64 3.24.9-1.fc40 @anaconda
gtkmm4.0.x86_64 4.14.0-1.fc40 @anaconda
gtksourceview4.x86_64 4.8.4-6.fc40 @anaconda
gtksourceview5.x86_64 5.12.1-1.fc40 @updates
gts.x86_64 0.7.6-48.20121130.fc40 @anaconda
guile30.x86_64 3.0.7-12.fc40 @fedora
gumbo-parser.x86_64 1:0.10.1-31.fc40 @fedora
gupnp.x86_64 1.6.6-2.fc40 @anaconda
gupnp-av.x86_64 0.14.1-6.fc40 @updates
gupnp-dlna.x86_64 0.12.0-7.fc40 @anaconda
gupnp-igd.x86_64 1.6.0-4.fc40 @anaconda
gutenprint.x86_64 5.3.4-16.fc40 @anaconda
gutenprint-cups.x86_64 5.3.4-16.fc40 @anaconda
gutenprint-libs.x86_64 5.3.4-16.fc40 @anaconda
gvfs.x86_64 1.54.3-1.fc40 @updates
gvfs-afc.x86_64 1.54.3-1.fc40 @updates
gvfs-afp.x86_64 1.54.3-1.fc40 @updates
gvfs-archive.x86_64 1.54.3-1.fc40 @updates
gvfs-client.x86_64 1.54.3-1.fc40 @updates
gvfs-fuse.x86_64 1.54.3-1.fc40 @updates
gvfs-goa.x86_64 1.54.3-1.fc40 @updates
gvfs-gphoto2.x86_64 1.54.3-1.fc40 @updates
gvfs-mtp.x86_64 1.54.3-1.fc40 @updates
gvfs-smb.x86_64 1.54.3-1.fc40 @updates
gvisor-tap-vsock.x86_64 6:0.8.0-1.fc40 @updates
gvisor-tap-vsock-gvforwarder.x86_64 6:0.8.0-1.fc40 @updates
gvnc.x86_64 1.3.1-5.fc40 @anaconda
gvncpulse.x86_64 1.3.1-5.fc40 @anaconda
gzip.x86_64 1.13-1.fc40 @anaconda
harfbuzz.i686 8.5.0-1.fc40 @updates
harfbuzz.x86_64 8.5.0-1.fc40 @updates
harfbuzz-devel.x86_64 8.5.0-1.fc40 @updates
harfbuzz-icu.x86_64 8.5.0-1.fc40 @updates
hdf-libs.x86_64 4.2.16.2-1.fc40 @fedora
hdf5.x86_64 1.12.1-15.fc40 @fedora
hdf5-devel.x86_64 1.12.1-15.fc40 @fedora
hfsplus-tools.x86_64 540.1.linux3-31.fc40 @anaconda
hicolor-icon-theme.noarch 0.17-18.fc40 @anaconda
highway.i686 1.2.0-2.fc40 @updates
highway.x86_64 1.2.0-2.fc40 @updates
hostname.x86_64 3.23-12.fc40 @anaconda
hplip.x86_64 3.24.4-1.fc40 @updates
hplip-common.x86_64 3.24.4-1.fc40 @updates
hplip-libs.x86_64 3.24.4-1.fc40 @updates
httpd.x86_64 2.4.62-2.fc40 @updates
httpd-core.x86_64 2.4.62-2.fc40 @updates
httpd-filesystem.noarch 2.4.62-2.fc40 @updates
httpd-tools.x86_64 2.4.62-2.fc40 @updates
hunspell.x86_64 1.7.2-7.fc40 @anaconda
hunspell-en.noarch 0.20201207-9.fc40 @anaconda
hunspell-en-GB.noarch 0.20201207-9.fc40 @anaconda
hunspell-en-US.noarch 0.20201207-9.fc40 @anaconda
hunspell-filesystem.x86_64 1.7.2-7.fc40 @anaconda
hunspell-ko.noarch 0.7.0-19.fc40 @fedora
hwdata.noarch 0.388-1.fc40 @updates
hyperv-daemons.x86_64 0-0.44.20220731git.fc40 @anaconda
hyperv-daemons-license.noarch 0-0.44.20220731git.fc40 @anaconda
hypervfcopyd.x86_64 0-0.44.20220731git.fc40 @anaconda
hypervkvpd.x86_64 0-0.44.20220731git.fc40 @anaconda
hypervvssd.x86_64 0-0.44.20220731git.fc40 @anaconda
hyphen.x86_64 2.8.8-24.fc40 @anaconda
hyphen-en.noarch 2.8.8-24.fc40 @anaconda
ibus.x86_64 1.5.30-6.fc40 @updates
ibus-anthy.x86_64 1.5.16-6.fc40 @updates
ibus-anthy-python.noarch 1.5.16-6.fc40 @updates
ibus-gtk3.x86_64 1.5.30-6.fc40 @updates
ibus-gtk4.x86_64 1.5.30-6.fc40 @updates
ibus-hangul.x86_64 1.5.5-5.fc40 @anaconda
ibus-libpinyin.x86_64 1.15.8-1.fc40 @updates
ibus-libs.x86_64 1.5.30-6.fc40 @updates
ibus-libzhuyin.x86_64 1.10.3-1.fc40 @anaconda
ibus-m17n.x86_64 1.4.33-1.fc40 @updates
ibus-setup.noarch 1.5.30-6.fc40 @updates
ibus-typing-booster.noarch 2.25.18-1.fc40 @updates
iio-sensor-proxy.x86_64 3.5-3.fc40 @anaconda
iir1.x86_64 1.9.3-6.fc40 @fedora
ilbc.x86_64 3.0.4-10.fc40 @anaconda
ima-evm-utils.x86_64 1.5-4.fc40 @anaconda
imath.x86_64 3.1.12-1.fc40 @updates
inih.x86_64 58-1.fc40 @anaconda
iniparser.x86_64 4.1-16.fc40 @anaconda
initscripts.x86_64 10.23-1.fc40 @updates
initscripts-rename-device.x86_64 10.23-1.fc40 @updates
initscripts-service.noarch 10.23-1.fc40 @updates
intel-audio-firmware.noarch 20241017-2.fc40 @updates
intel-gmmlib.x86_64 22.3.20-1.fc40 @updates
intel-gpu-firmware.noarch 20241017-2.fc40 @updates
intel-mediasdk.x86_64 23.2.2-5.fc40 @updates
intel-vpl-gpu-rt.x86_64 24.2.5-1.fc40 @updates
ipcalc.x86_64 1.0.3-9.fc40 @anaconda
ipp-usb.x86_64 0.9.28-1.fc40 @updates
iproute.x86_64 6.7.0-2.fc40 @updates
iproute-tc.x86_64 6.7.0-2.fc40 @updates
ipset.x86_64 7.21-1.fc40 @anaconda
ipset-libs.x86_64 7.21-1.fc40 @anaconda
iptables-libs.x86_64 1.8.10-7.fc40 @anaconda
iptables-nft.x86_64 1.8.10-7.fc40 @anaconda
iptstate.x86_64 2.2.7-4.fc40 @anaconda
iputils.x86_64 20240117-4.fc40 @anaconda
ipxe-roms-qemu.noarch 20240119-1.gitde8a0821.fc40 @anaconda
iscsi-initiator-utils.x86_64 6.2.1.9-20.gita65a472.fc40 @anaconda
iscsi-initiator-utils-iscsiuio.x86_64 6.2.1.9-20.gita65a472.fc40 @anaconda
isns-utils-libs.x86_64 0.101-9.fc40 @anaconda
iso-codes.noarch 4.16.0-3.fc40 @anaconda
isomd5sum.x86_64 1:1.2.5-1.fc40 @updates
iw.x86_64 6.7-2.fc40 @anaconda
iwlegacy-firmware.noarch 20241017-2.fc40 @updates
iwlwifi-dvm-firmware.noarch 20241017-2.fc40 @updates
iwlwifi-mvm-firmware.noarch 20241017-2.fc40 @updates
jack-audio-connection-kit.x86_64 1.9.22-5.fc40 @anaconda
jansson.x86_64 2.13.1-9.fc40 @anaconda
jasper-libs.x86_64 4.2.1-1.fc40 @anaconda
java-17-openjdk.x86_64 1:17.0.13.0.11-1.fc40 @updates
java-17-openjdk-headless.x86_64 1:17.0.13.0.11-1.fc40 @updates
java-21-openjdk.x86_64 1:21.0.5.0.11-1.fc40 @updates
java-21-openjdk-devel.x86_64 1:21.0.5.0.11-1.fc40 @updates
java-21-openjdk-headless.x86_64 1:21.0.5.0.11-1.fc40 @updates
javapackages-filesystem.noarch 6.2.0-9.fc40 @anaconda
javascriptcoregtk4.1.x86_64 2.46.1-1.fc40 @updates
javascriptcoregtk6.0.x86_64 2.46.1-1.fc40 @updates
jbig2dec-libs.x86_64 0.20-4.fc40 @anaconda
jbigkit-libs.i686 2.1-29.fc40 @fedora
jbigkit-libs.x86_64 2.1-29.fc40 @anaconda
jemalloc.x86_64 5.3.0-6.fc40 @anaconda
jomolhari-fonts.noarch 0.003-41.fc40 @anaconda
jq.x86_64 1.7.1-7.fc40 @updates
json-c.i686 0.17-3.fc40 @fedora
json-c.x86_64 0.17-3.fc40 @anaconda
json-glib.i686 1.8.0-3.fc40 @fedora
json-glib.x86_64 1.8.0-3.fc40 @anaconda
jsoncpp.x86_64 1.9.5-7.fc40 @fedora
julietaula-montserrat-fonts.noarch 1:7.222-8.fc40 @updates
jxl-pixbuf-loader.x86_64 1:0.8.3-1.fc40 @updates
kasumi-common.noarch 2.5-47.fc40 @updates
kasumi-unicode.x86_64 2.5-47.fc40 @updates
kbd.x86_64 2.6.4-3.fc40 @anaconda
kbd-legacy.noarch 2.6.4-3.fc40 @anaconda
kbd-misc.noarch 2.6.4-3.fc40 @anaconda
kdump-anaconda-addon.noarch 006-11.20220714git7ca2d3e.fc40 @anaconda
kdump-utils.x86_64 1.0.48-1.fc40 @updates
kernel.x86_64 6.8.5-301.fc40 @anaconda
kernel.x86_64 6.11.4-201.fc40 @updates
kernel.x86_64 6.11.5-200.fc40 @updates
kernel-core.x86_64 6.8.5-301.fc40 @anaconda
kernel-core.x86_64 6.11.4-201.fc40 @updates
kernel-core.x86_64 6.11.5-200.fc40 @updates
kernel-devel.x86_64 6.8.5-301.fc40 @fedora
kernel-devel.x86_64 6.11.4-201.fc40 @updates
kernel-devel.x86_64 6.11.5-200.fc40 @updates
kernel-devel-matched.x86_64 6.11.5-200.fc40 @updates
kernel-headers.x86_64 6.11.3-200.fc40 @updates
kernel-modules.x86_64 6.8.5-301.fc40 @anaconda
kernel-modules.x86_64 6.11.4-201.fc40 @updates
kernel-modules.x86_64 6.11.5-200.fc40 @updates
kernel-modules-core.x86_64 6.8.5-301.fc40 @anaconda
kernel-modules-core.x86_64 6.11.4-201.fc40 @updates
kernel-modules-core.x86_64 6.11.5-200.fc40 @updates
kernel-modules-extra.x86_64 6.8.5-301.fc40 @anaconda
kernel-modules-extra.x86_64 6.11.4-201.fc40 @updates
kernel-modules-extra.x86_64 6.11.5-200.fc40 @updates
kernel-srpm-macros.noarch 1.0-23.fc40 @fedora
kexec-tools.x86_64 2.0.29-1.fc40 @updates
keyutils.x86_64 1.6.3-3.fc40 @anaconda
keyutils-libs.i686 1.6.3-3.fc40 @fedora
keyutils-libs.x86_64 1.6.3-3.fc40 @anaconda
keyutils-libs-devel.x86_64 1.6.3-3.fc40 @fedora
kmod.x86_64 31-5.fc40 @anaconda
kmod-libs.x86_64 31-5.fc40 @anaconda
kmod-wl-6.11.4-201.fc40.x86_64.x86_64 6.30.223.271-53.fc40 @@commandline
kmod-wl-6.11.5-200.fc40.x86_64.x86_64 6.30.223.271-53.fc40 @@commandline
kmodtool.noarch 1.1-10.fc40 @fedora
kpartx.x86_64 0.9.7-7.fc40 @anaconda
krb5-devel.x86_64 1.21.3-1.fc40 @updates
krb5-libs.i686 1.21.3-1.fc40 @updates
krb5-libs.x86_64 1.21.3-1.fc40 @updates
kyotocabinet-libs.x86_64 1.2.80-5.fc40 @anaconda
ladspa.x86_64 1.17-4.fc40 @anaconda
lame-libs.i686 3.100-17.fc40 @fedora
lame-libs.x86_64 3.100-17.fc40 @anaconda
langpacks-core-en.noarch 4.0-13.fc40 @updates
langpacks-core-ko.noarch 4.0-13.fc40 @updates
langpacks-en.noarch 4.0-13.fc40 @updates
langpacks-fonts-en.noarch 4.0-13.fc40 @updates
langpacks-fonts-ko.noarch 4.0-13.fc40 @updates
langpacks-ko.noarch 4.0-13.fc40 @updates
langtable.noarch 0.0.68-1.fc40 @updates
lasi.x86_64 1.1.3-13.fc40 @anaconda
lato-fonts.noarch 2.015-20.fc40 @fedora
lcms2.i686 2.16-3.fc40 @fedora
lcms2.x86_64 2.16-3.fc40 @anaconda
leptonica.x86_64 1.84.1-3.fc40 @anaconda
less.x86_64 643-6.fc40 @updates
libGLEW.x86_64 2.2.0-7.fc40 @fedora
libICE.x86_64 1.1.1-3.fc40 @anaconda
libRmath.x86_64 4.4.1-5.fc40 @updates
libRmath-devel.x86_64 4.4.1-5.fc40 @updates
libSM.x86_64 1.2.4-3.fc40 @anaconda
libX11.i686 1.8.10-2.fc40 @updates