alpmver 0.1.3

A simple crate to compare package Pacman package versions
Documentation
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
86box 3.7.1-1
86box-roms 3.7-1
abseil-cpp 20220623.1-1
accountsservice 22.08.8-2
adbfs-rootless-git r108.5b091a5-1
adobe-source-code-pro-fonts 2.038ro+1.058it+1.018var-1
adwaita-icon-theme 42.0+r1+gc144c3d75-1
akonadi 22.08.1-1
akonadi 22.08.1-2
akonadi-calendar 22.08.1-1
akonadi-contacts 22.08.1-1
akonadi-import-wizard 22.08.1-1
akonadi-mime 22.08.1-1
akonadi-notes 22.08.1-1
akonadi-search 22.08.1-1
alsa-card-profiles 1:0.3.56-1
alsa-card-profiles 1:0.3.57-1
alsa-lib 1.2.7.2-1
alsa-topology-conf 1.2.5.1-1
alsa-ucm-conf 1.2.7.2-1
amd-ucode 20220815.8413c63-1
android-studio 2021.2.1.16-1
android-tools 31.0.3-7
android-udev 20220611-1
aom 3.4.0-1
appstream 0.15.5-1
appstream-qt 0.15.5-1
archlinux-keyring 20220831-1
argon2 20190702-4
ark 22.08.1-1
arm-linux-gnueabihf-binutils 2.38-1
atk 2.38.0-1
at-spi2-atk 2.38.0-1
at-spi2-core 2.44.1-1
attica 5.97.0-1
attica 5.98.0-1
audiocd-kio 22.08.1-1
avahi 0.8+22+gfd482a7-3
baloo 5.98.0-1
baloo-widgets 22.08.1-1
bat 0.22.0-1
bat 0.22.1-1
bindfs 1.15.1-3
binfmt-qemu-static 20220907-1
bluedevil 1:5.25.5-1
bluez 5.65-3
bluez-libs 5.65-2
bluez-libs 5.65-3
bluez-qt 5.98.0-1
bluez-utils 5.65-3
boost 1.79.0-1
boost-libs 1.79.0-1
bpftrace 0.16.0-1
breeze 5.25.4-1
breeze 5.25.5-1
breeze-gtk 5.25.5-1
breeze-icons 5.97.0-1
breeze-icons 5.98.0-1
btrfs-progs 5.19-1
bubblewrap 0.6.2-1
cabextract 1.9.1-2
cairo 1.17.6-2
calendarsupport 22.08.1-1
calibre 6.4.0-1
cantarell-fonts 1:0.303.1-1
capstone 4.0.2-6
c-ares 1.18.1-1
cdecl 2.5-3
cdparanoia 10.2-8
ceph-libs 15.2.17-1
checkbashisms 2.22.2-1
chromeos-gtk-theme-git r91.5ecad1c-1
chromium 105.0.5195.102-1
chromium 105.0.5195.102-2
cifs-utils 7.0-1
cling-bin 1:2020.11.05-2
clyrics 0.13-1
cmake 3.24.1-1
cryptsetup 2.5.0-1
csfml 2.5.1-1
cups-filters 1.28.16-1
curl 7.85.0-1
cython 0.29.32-2
dav1d 1.0.0-1
dbus 1.14.0-1
dbus-python 1.2.18-3
dconf 0.40.0-1
deno 1.25.1-1
deno 1.25.2-1
desktop-file-utils 0.26-2
device-mapper 2.03.16-2
difftastic 0.35.0-1
discover 5.25.5-1
diskmonitor 0.3.4-1
dislocker 0.7.3-2
dmidecode 3.4-1
dmraid 1.0.0.rc16.3-13
dolphin 22.08.1-1
dolphin-plugins 22.08.1-1
dosfstools 4.2-2
double-conversion 3.2.1-1
dragon 22.08.1-1
drkonqi 5.25.5-1
duktape 2.7.0-4
dust 0.8.3-1
easyeffects 6.2.8-2
easyeffects 6.3.0-1
editorconfig-core-c 0.12.5-1
efibootmgr 18-1
efivar 38-2
elfutils 0.187-2
ell 0.53-1
emacs 28.2-1
enchant 2.3.3-1
eventviews 22.08.1-1
exiv2 0.27.5-3
extra-cmake-modules 5.97.0-1
extract-xiso 2.7.1-1
extremetuxracer 0.8.2-1
fakepkg 1.42.0-1
falkon 22.08.1-1
faudio 22.08-1
faudio 22.09.01-1
fcitx5-gtk 5.0.18-1
fcitx5-qt 5.0.15-1
ffmpeg 2:5.1.1-1
ffmpeg 2:5.1.1-2
ffmpeg 2:5.1.1-3
filelight 22.08.1-1
firefox 104.0.2-1
flac 1.3.4-3
fluidsynth 2.2.9-2
fmt 9.1.0-1
font-bh-ttf 1.0.3-8
fontconfig 2:2.14.0-1
fontforge 20220308-1
fonts-tlwg 0.7.3-1
foomatic-db-engine 4:20220521-1
frameworkintegration 5.97.0-1
frameworkintegration 5.98.0-1
freetype2 2.12.1-1
fribidi 1.0.12-1
fselect 0.8.1-1
fuse2 2.9.9-4
fuse3 3.11.0-1
fuse-common 3.11.0-1
gawk 5.2.0-3
gc 8.2.2-1
gcc-d 12.2.0-1
gd 2.3.3-4
gdk-pixbuf2 2.42.9-1
ghostscript 9.56.1-1
giflib 5.2.1-2
git 2.37.3-1
git-delta 0.14.0-2
github-cli 2.15.0-1
glew 2.2.0-5
glib2 2.72.3-3
glib2-docs 2.72.3-3
glib2-static 2.72.3-1
glibc 2.36-4
glib-networking 1:2.72.2-1
glu 9.0.2-3
gnu-free-fonts 20120503-8
gnupg 2.2.38-1
gnupg 2.2.39-1
gnvim 0.1.6-1
go 2:1.19-1
go 2:1.19.1-1
gobject-introspection-runtime 1.72.0-1
google-earth-pro 7.3.4.8738-1
gptfdisk 1.0.9-1
grantlee 5.3.0-1
grantleetheme 22.08.1-1
graphene 1.10.8-1
graphicsmagick 1.3.38-4
graphite 1:1.3.14-2
graphviz 5.0.1-1
grep 3.8-2
grub 2:2.06.r322.gd9b4638c5-4
gsettings-desktop-schemas 42.0-1
gsfonts 20200910-2
gsm 1.0.22-1
gst-libav 1.20.3-1
gst-plugin-pipewire 1:0.3.57-1
gst-plugins-base 1.20.3-1
gst-plugins-base-libs 1.20.3-1
gstreamer 1.20.3-1
gtk3 1:3.24.34-1
gtk4 1:4.8.0-1
gtk4-demos 1:4.8.0-1
gtk-update-icon-cache 1:4.6.7-1
gtk-update-icon-cache 1:4.8.0-1
gts 0.7.6.121130-2
gum 0.6.0-1
gwenview 22.08.1-1
harfbuzz 5.1.0-1
harfbuzz-icu 5.1.0-1
hfsprogs 540.1.linux3-4
hicolor-icon-theme 0.17-2
hidapi 0.12.0-1
hplip 1:3.22.6-1
hplip-plugin 3.22.6-1
hwdata 0.361-1
hwdata 0.362-1
hyphen 2.8.8-4
ijs 0.35-4
imagemagick 7.1.0.47-1
imagemagick 7.1.0.47-2
imagemagick 7.1.0.48-1
incidenceeditor 22.08.1-1
iniparser 4.1-4
inkscape 1.2.1-4
inkscape 1.2.1-5
iptables 1:1.8.8-2
ipython 8.5.0-1
iso-codes 4.11.0-1
itinerary 22.08.1-1
iwd 1.30-1
jack2 1.9.21-1
java-runtime-common 3-3
jbig2dec 0.19-1
jdownloader2 latest-17
jlink-software-and-documentation 48:7.80-0
joshuto 0.9.4-1
jre-openjdk 18.0.2.1.u0-1
jre-openjdk-headless 18.0.2.1.u0-1
js-beautify 1.14.4-1
jsoncpp 1.9.5-2
json-glib 1.6.6-2
k3b 1:22.08.1-1
kaccounts-integration 22.08.1-1
kaccounts-providers 22.08.1-1
kactivities 5.97.0-1
kactivities 5.98.0-1
kactivities-stats 5.97.0-1
kactivities-stats 5.98.0-1
kactivitymanagerd 5.25.4-1
kactivitymanagerd 5.25.5-1
kalendar 22.08.1-1
kamoso 22.08.1-1
kapidox 5.98.0-1
karchive 5.97.0-1
karchive 5.98.0-1
kate 22.08.1-1
kauth 5.97.0-1
kauth 5.98.0-1
kbd 2.5.1-1
kbookmarks 5.97.0-1
kbookmarks 5.98.0-1
kcalc 22.08.1-1
kcalendarcore 5.98.0-1
kcalutils 22.08.1-1
kcmutils 5.97.0-1
kcmutils 5.98.0-1
kcodecs 5.97.0-1
kcodecs 5.98.0-1
kcolorchooser 22.08.1-1
kcompletion 5.97.0-1
kcompletion 5.98.0-1
kconfig 5.97.0-1
kconfig 5.98.0-1
kconfigwidgets 5.97.0-1
kconfigwidgets 5.98.0-1
kcontacts 1:5.98.0-1
kcoreaddons 5.97.0-1
kcoreaddons 5.98.0-1
kcrash 5.97.0-1
kcrash 5.98.0-1
kdav 1:5.98.0-1
kdbusaddons 5.97.0-1
kdbusaddons 5.98.0-1
kdeclarative 5.97.0-1
kdeclarative 5.98.0-1
kde-cli-tools 5.25.4-1
kde-cli-tools 5.25.5-1
kdeconnect 22.08.1-1
kdecoration 5.25.4-1
kdecoration 5.25.5-1
kded 5.97.0-1
kded 5.98.0-1
kde-gtk-config 5.25.5-1
kdelibs4support 5.98.0-1
kdenetwork-filesharing 22.08.1-1
kdenlive 22.08.1-1
kdepim-addons 22.08.1-1
kdepim-runtime 22.08.1-1
kdeplasma-addons 5.25.5-1
kdesu 5.97.0-1
kdesu 5.98.0-1
kdialog 22.08.1-1
kdnssd 5.97.0-1
kdnssd 5.98.0-1
kdoctools 5.98.0-1
kdsoap 2.0.0-1
kdsoap-ws-discovery-client git20200927-2
kemoticons 5.98.0-1
kfilemetadata 5.98.0-1
kgamma5 5.25.5-1
kget 22.08.1-1
kglobalaccel 5.97.0-1
kglobalaccel 5.98.0-1
kguiaddons 5.97.0-1
kguiaddons 5.98.0-1
khelpcenter 22.08.1-1
kholidays 1:5.97.0-1
kholidays 1:5.98.0-1
khotkeys 5.25.5-1
khtml 5.98.0-1
ki18n 5.97.0-1
ki18n 5.98.0-1
kiconthemes 5.97.0-1
kiconthemes 5.98.0-1
kidentitymanagement 22.08.1-1
kidletime 5.97.0-1
kidletime 5.98.0-1
kimageformats 5.98.0-1
kimap 22.08.1-1
kinfocenter 5.25.5-1
kio 5.97.0-1
kio 5.98.0-1
kio-extras 22.08.0-1
kio-extras 22.08.1-1
kio-fuse 5.0.1-1
kio-gdrive 22.08.1-1
kirigami2 5.97.0-1
kirigami2 5.98.0-1
kirigami-gallery 22.08.1-1
kiro 0.4.3-1
kitemmodels 5.97.0-1
kitemmodels 5.98.0-1
kitemviews 5.97.0-1
kitemviews 5.98.0-1
kitinerary 22.08.0-2
kitinerary 22.08.1-1
kitty 0.26.1-1
kitty 0.26.2-1
kitty-shell-integration 0.26.1-1
kitty-shell-integration 0.26.2-1
kitty-terminfo 0.26.1-1
kitty-terminfo 0.26.2-1
kjobwidgets 5.97.0-1
kjobwidgets 5.98.0-1
kjs 5.98.0-1
kldap 22.08.1-1
klickety 22.08.1-1
kmahjongg 22.08.1-1
kmail-account-wizard 22.08.1-1
kmailtransport 22.08.1-1
kmbox 22.08.1-1
kmenuedit 5.25.5-1
kmime 22.08.1-1
kmines 22.08.1-1
kmod 30-1
knewstuff 5.97.0-1
knewstuff 5.98.0-1
knotifications 5.97.0-1
knotifications 5.98.0-1
knotifyconfig 5.97.0-1
knotifyconfig 5.98.0-1
kolourpaint 22.08.1-1
konsole 22.08.1-1
kontact 22.08.1-1
kontactinterface 22.08.1-1
konversation 22.08.1-1
kopeninghours 22.08.1-1
kosmindoormap 22.08.1-1
kpackage 5.97.0-1
kpackage 5.98.0-1
kparts 5.97.0-1
kparts 5.98.0-1
kpeople 5.97.0-1
kpeople 5.98.0-1
kpimtextedit 22.08.1-1
kpkpass 22.08.1-1
kplotting 5.98.0-1
kpmcore 22.08.1-1
kpty 5.97.0-1
kpty 5.98.0-1
kpublictransport 22.08.1-1
kquickcharts 5.97.0-1
kquickcharts 5.98.0-1
krename 5.0.2-1
kross 5.98.0-1
krunner 5.97.0-1
krunner 5.98.0-1
ksanecore 22.08.1-1
kscreen 5.25.5-1
kscreenlocker 5.25.4-1
kscreenlocker 5.25.5-1
kservice 5.97.0-1
kservice 5.98.0-1
ksmtp 22.08.1-1
ksshaskpass 5.25.5-1
ksystemlog 22.08.1-1
ksystemstats 5.25.4-1
ksystemstats 5.25.5-1
kteatime 22.08.1-1
ktexteditor 5.97.0-1
ktexteditor 5.98.0-1
ktextwidgets 5.97.0-1
ktextwidgets 5.98.0-1
ktnef 22.08.1-1
ktorrent 22.08.1-1
kunitconversion 5.98.0-1
kuserfeedback 1.2.0-1
kwallet 5.97.0-4
kwallet 5.98.0-1
kwalletmanager 22.08.1-1
kwallet-pam 5.25.5-1
kwayland 5.97.0-1
kwayland 5.98.0-1
kwayland-integration 5.25.5-1
kwidgetsaddons 5.97.0-1
kwidgetsaddons 5.98.0-1
kwin 5.25.4-1
kwin 5.25.5-1
kwin 5.25.5-2
kwindowsystem 5.97.0-1
kwindowsystem 5.98.0-1
kwrited 5.25.5-1
kxmlgui 5.97.0-1
kxmlgui 5.98.0-1
lab 0.25.1-1
lagrange 1.13.7-1
lame 3.100-4
layer-shell-qt 5.25.4-1
layer-shell-qt 5.25.5-1
lcms2 2.13.1-1
ldb 2:2.5.2-2
less 1:608-1
lib32-acl 2.3.1-1
lib32-attr 2.5.1-1
lib32-brotli 1.0.9-4
lib32-bzip2 1.0.8-2
lib32-curl 7.85.0-1
lib32-dbus 1.14.0-1
lib32-e2fsprogs 1.46.5-1
lib32-expat 2.4.8-1
lib32-faudio 22.08-1
lib32-faudio 22.09.01-1
lib32-fontconfig 2:2.14.0-1
lib32-freetype2 2.12.1-1
lib32-gcc-libs 12.2.0-1
lib32-gettext 0.21-1
lib32-glib2 2.72.3-1
lib32-glibc 2.36-3
lib32-glibc 2.36-4
lib32-glu 9.0.2-3
lib32-gnutls 3.7.7-1
lib32-harfbuzz 5.1.0-1
lib32-icu 71.1-1
lib32-keyutils 1.6.3-1
lib32-krb5 1.20-1
lib32-lcms2 2.13.1-1
lib32-libcap 2.65-1
lib32-libcurl-compat 7.85.0-1
lib32-libcurl-gnutls 7.85.0-1
lib32-libdrm 2.4.112-1
lib32-libdrm 2.4.113-1
lib32-libelf 0.187-1
lib32-libffi 3.4.2-4
lib32-libgcrypt 1.10.1-1
lib32-libglvnd 1.4.0-3
lib32-libglvnd 1.5.0-1
lib32-libgpg-error 1.45-1
lib32-libice 1.0.10-1
lib32-libidn2 2.3.3-1
lib32-libjpeg-turbo 2.1.4-2
lib32-libldap 2.6.3-1
lib32-libnl 3.7.0-1
lib32-libpcap 1.10.1-1
lib32-libpciaccess 0.16-1
lib32-libpng 1.6.37-3
lib32-libpsl 0.21.1-2
lib32-libsm 1.2.3-1
lib32-libssh2 1.10.0-1
lib32-libtasn1 4.19.0-1
lib32-libtiff 4.4.0-4
lib32-libtirpc 1.3.3-1
lib32-libunistring 1.0-1
lib32-libunwind 1.6.2-1
lib32-libva 2.15.0-6
lib32-libx11 1.8.1-1
lib32-libxau 1.0.9-2
lib32-libxcb 1.15-1
lib32-libxcrypt 4.4.28-2
lib32-libxcursor 1.2.1-1
lib32-libxdamage 1.1.5-2
lib32-libxdmcp 1.1.3-1
lib32-libxext 1.3.4-2
lib32-libxfixes 6.0.0-1
lib32-libxi 1.8-1
lib32-libxml2 2.10.2-2
lib32-libxrandr 1.5.2-2
lib32-libxrender 0.9.10-3
lib32-libxshmfence 1.3-2
lib32-libxslt 1.1.37-2
lib32-libxxf86vm 1.1.4-3
lib32-llvm-libs 14.0.6-2
lib32-lm_sensors 1:3.6.0.r41.g31d1f125-1
lib32-mesa 22.1.7-1
lib32-ncurses 6.3-1
lib32-openssl 1:1.1.1.q-1
lib32-pam 1.5.2-1
lib32-pcre 8.45-1
lib32-pipewire 1:0.3.57-1
lib32-sdl2 2.0.22-1
lib32-sqlite 3.39.3-1
lib32-systemd 251.4-1
lib32-systemd 251.4-1.1
lib32-util-linux 2.38.1-1
lib32-vulkan-icd-loader 1.3.221-1
lib32-vulkan-icd-loader 1.3.226-1
lib32-vulkan-validation-layers 1.3.224.1-1
lib32-wayland 1.21.0-1
lib32-xz 5.2.5-2
lib32-xz 5.2.6-1
lib32-zlib 1.2.12-1
lib32-zstd 1.5.2-1
libaccounts-glib 1.26-1
libadwaita 1:1.1.5-1
libaio 0.3.113-1
libakonadi 22.08.1-1
libakonadi 22.08.1-2
libass 0.16.0-1
libasyncns 1:0.8+r3+g68cd5af-1
libatasmart 0.19-5
libavc1394 0.5.4-4
libavif 0.10.1-2
libb2 0.98.1-2
libblockdev 2.27-1
libbluray 1.3.2-1
libbs2b 3.1.0-8
libbsd 0.11.6-2
libbytesize 2.7-1
libcanberra 1:0.30+r2+gc0620e4-1
libcloudproviders 0.3.1-2
libcolord 1.4.6-1
libcups 1:2.4.2-3
libcurl-compat 7.85.0-1
libcurl-gnutls 7.85.0-1
libdaemon 0.14-5
libdatrie 0.2.13-1
libdbusmenu-qt5 0.9.3+16.04.20160218-6
libde265 1.0.8-2
libdmtx 0.7.7-1
libdrm 2.4.112-1
libdrm 2.4.113-2
libedit 20210910_3.1-1
libepoxy 1.5.10-1
libevdev 1.13.0-1
libexif 0.6.24-1
libfdk-aac 2.0.2-1
libfontenc 1.1.6-1
libfreeaptx 0.1.1-1
libgdiplus 5.6.1-3
libglvnd 1.4.0-3
libglvnd 1.5.0-1
libgravatar 22.08.1-1
libgudev 237-2
libharu 2.4.1-1
libheif 1.12.0-3
libheif 1.13.0-1
libheif 1.13.0-2
libice 1.0.10-4
libidn 1.41-1
libiec61883 1.2.0-6
libimobiledevice 1.3.0-5
libinih 56-1
libinput 1.21.0-1
libjpeg-turbo 2.1.4-2
libkcddb 22.08.1-1
libkcompactdisc 22.08.1-1
libkdcraw 22.08.1-1
libkdegames 22.08.1-1
libkdepim 22.08.1-1
libkexiv2 22.08.0-1
libkexiv2 22.08.1-1
libkgapi 22.08.1-1
libkleo 22.08.1-1
libkmahjongg 22.08.1-1
libksane 22.08.1-1
libkscreen 5.25.4-1
libkscreen 5.25.5-1
libksieve 22.08.1-1
libksysguard 5.25.4-1
libksysguard 5.25.5-1
libktorrent 22.08.1-1
libldac 2.0.2.3-1
liblouis 3.23.0-1
liblqr 0.4.2-3
libltc 1.3.2-1
libluv 1.44.2_0-1
libmanette 0.2.6-3
libmd 1.0.4-1
libmediainfo 22.06-1
libmfx 22.4.4-1
libmms 0.6.4-3
libmnl 1.0.5-1
libmodplug 0.8.9.0-3
libmspack 1:0.10.1alpha-3
libmtp 1.1.20-1
libnet 1:1.1.6-1
libnetfilter_conntrack 1.0.9-1
libnfnetlink 1.0.2-1
libnftnl 1.2.3-1
libnl 3.7.0-1
libnma 1.10.0-1
libnma 1.10.2-1
libnma-common 1.10.0-1
libnma-common 1.10.2-1
libnotify 0.8.1-1
libnsl 2.0.0-2
libogg 1.3.5-1
libomxil-bellagio 0.9.3-3
libpaper 1.1.28-2
libpcap 1.10.1-2
libpciaccess 0.16-4
libplist 2.2.0-5
libpng 1.6.37-3
libproxy 0.4.18-1
libpulse 16.1-1
libqaccessibilityclient 0.4.1-2
libqalculate 4.3.0-1
libraqm 0.9.0-1
libraw1394 2.1.2-3
libreoffice-fresh 7.4.0-3
libreoffice-fresh 7.4.0-4
libretro-dolphin 33021-2
librsvg 2:2.54.5-1
libsamplerate 0.2.2-1
libslirp 4.7.0-1
libsm 1.2.3-3
libsndfile 1.1.0-2
libsoup 2.74.2-2
libsoup3 3.0.7-1
libsoup3 3.0.8-1
libsoxr 0.1.3-2
libspiro 1:20220722-1
libssh 0.10.1-1
libssh 0.10.2-1
libssh 0.10.3-1
libssh 0.10.4-1
libstemmer 2.2.0-2
libtermkey 0.22-2
libthai 0.1.29-1
libtheora 1.1.1-5
libtiff 4.4.0-4
libudev0-shim 1-4
libuninameslist 20211114-1
libunwind 1.6.2-1
liburcu 0.13.2-1
liburing 2.2-1
libusb 1.0.26-1
libusbmuxd 2.0.2-1
libutempter 1.2.1-3
libuv 1.44.2-1
libva 2.15.0-2
libva 2.15.0-6
libvdpau 1.5-1
libvisual 0.4.0-8
libvorbis 1.3.7-3
libvpx 1.12.0-1
libvterm01 0.1.4-2
libwacom 2.4.0-1
libwebp 1.2.4-1
libwpe 1.12.3-1
libx11 1.8.1-3
libxau 1.0.10-1
libxaw 1.0.14-1
libxcb 1.15-1
libxcomposite 0.4.5-4
libxcursor 1.2.1-1
libxcvt 0.1.2-1
libxdamage 1.1.5-4
libxdmcp 1.1.3-4
libxext 1.3.4-4
libxfixes 6.0.0-1
libxft 2.3.4-1
libxft 2.3.5-1
libxft 2.3.5-2
libxft 2.3.6-1
libxi 1.8-1
libxinerama 1.1.4-4
libxkbcommon 1.4.1-1
libxkbcommon-x11 1.4.1-1
libxkbfile 1.1.0-3
libxml2 2.10.2-2
libxmlb 0.3.9-1
libxmu 1.1.3-3
libxpm 3.5.13-3
libxrandr 1.5.2-4
libxrender 0.9.10-5
libxres 1.2.1-1
libxshmfence 1.3-3
libxslt 1.1.37-2
libxss 1.2.3-4
libxt 1.2.1-1
libxtst 1.2.3-5
libxv 1.0.11-5
libxxf86vm 1.1.4-5
libyaml 0.2.5-1
libyuv r2322+3aebf69d-1
libzen 0.4.39-1
lilv 0.24.18-1
linux-firmware 20220815.8413c63-1
linux-firmware-whence 20220815.8413c63-1
linux-zen 5.19.6.zen1-1
linux-zen 5.19.7.zen2-1
linux-zen-headers 5.19.6.zen1-1
linux-zen-headers 5.19.7.zen2-1
llvm-libs 14.0.6-3
lmdb 0.9.29-1
lm_sensors 1:3.6.0.r41.g31d1f125-1
logrotate 3.20.1-1
love 11.4-1
l-smash 2.14.5-2
lsof 4.95.0-1
lsp-plugins 1.2.3-1
lttng-ust 2.13.3-1
luajit 2.1.0.beta3.r439.g633f265f-1
lua-language-server 3.5.4-1
lua-language-server 3.5.5-1
lv2 1.18.10-1
lv2 1.18.8-1
lvm2 2.03.16-2
lz4 1:1.9.4-1
lzham 1.0.1-3
lzo 2.10-3
mailcommon 22.08.1-1
mailimporter 22.08.1-1
marble 22.08.1-1
marble-common 22.08.1-1
mbedtls 2.28.0-1
md4c 0.4.8-1
mdadm 4.2-2
media-player-info 24-2
meld 3.22.0-1
memtest86-efi 1:9.4build1000-4
mercurial 6.2.2-1
mesa 22.1.7-1
meson 0.63.1-2
meson 0.63.2-1
messagelib 22.08.1-1
microsoft-edge-stable-bin 105.0.1343.33-1
milou 5.25.4-1
milou 5.25.5-1
minizip 1:1.2.12-2
mksh 59.c-1
modemmanager-qt 5.98.0-1
mold 1.4.2-1
mono 6.12.0.177-1
mpd 0.23.9-2
mpg123 1.30.2-1
msgpack-c 4.0.0-1
mtdev 1.1.6-2
multipath-tools 0.9.1-1
ncurses5-compat-libs 6.3-1
ndctl 74-1
neon 0.32.3-1
neovim 0.7.2-3
netpbm 10.73.37-2
net-snmp 5.9.1-4
networkmanager-qt 5.98.0-1
ninja 1.11.1-1
node-gyp 9.1.0-1
nodejs 18.8.0-1
nodejs 18.9.0-1
nodejs-nopt 6.0.0-1
noto-fonts 20220607-1
npm 8.19.0-1
npm 8.19.1-1
nq-git 0.5.r0.g5bb7de3-1
nrf-command-line-tools-bin 10.15.3-1
nrf-udev 1.0.1-1
nspr 4.34.1-1
nss 3.82-1
nuitka 1.0.6-1
numactl 2.0.14-3
numactl 2.0.15-1
ocl-icd 2.3.1-1
ocs-url 3.1.0-7
okular 22.08.1-1
ookla-speedtest-bin 1.2.0-1
openal 1.22.2-1
opencore-amr 0.1.6-1
openjpeg2 2.5.0-1
opus 1.3.1-3
orc 0.4.32-1
otf-libre-caslon 1.002-2
otf-zilla-slab 1.002-3
oxygen 5.25.5-1
oxygen-icons 1:5.98.0-1
oxygen-sounds 5.25.4-1
oxygen-sounds 5.25.5-1
p7zip 1:17.04-3
pacman-contrib 1.7.0-1
pacman-contrib 1.7.1-1
pango 1:1.50.9-1
papirus-icon-theme 20220910-1
parted 3.5-1
partitionmanager 22.08.1-1
paru 1.11.1-1
pavucontrol 1:5.0+r61+gee77d86-2
pcem 17-3
pciutils 3.8.0-2
pcre2-static 10.40-1
pcre 8.45-2
pcsclite 1.9.9-1
perl-alien-build 2.52-1
perl-alien-build 2.53-1
perl-alien-build 2.56-1
perl-alien-build 2.59-1
perl-alien-libxml2 0.17-3
perl-b-hooks-endofscope 0.26-1
perl-b-utils 0.27-2
perl-capture-tiny 0.48-6
perl-cgi 4.54-2
perl-clone 0.45-4
perl-data-dumper-concise 2.023-1
perl-data-optlist 0.112-2
perl-dbd-sqlite 1.70-2
perl-dbi 1.643-4
perl-devel-caller 2.06-1
perl-devel-lexalias 0.05-1
perl-devel-overloadinfo 0.007-2
perl-dist-checkconflicts 0.11-8
perl-encode-locale 1.05-9
perl-error 0.17029-4
perl-exporter-tiny 1.004000-1
perl-extutils-depends 0.8001-3
perl-ffi-checklib 0.28-3
perl-ffi-checklib 0.29-1
perl-file-chdir 0.1011-4
perl-file-find-rule 0.34-9
perl-file-find-rule-perl 1.16-2
perl-file-listing 6.15-2
perl-file-slurp-tiny 0.004-8
perl-file-which 1.27-2
perl-html-form 6.10-1
perl-html-parser 3.78-2
perl-html-tagset 3.20-12
perl-http-cookies 6.10-3
perl-http-daemon 6.14-2
perl-http-date 6.05-5
perl-http-message 6.37-1
perl-http-negotiate 6.01-10
perl-http-response-encoding 0.06-6
perl-http-server-simple 0.52-3
perl-inc-latest 0.500-9
perl-io-html 1.004-3
perl-io-socket-ssl 2.074-3
perl-io-socket-ssl 2.075-1
perl-ipc-run 20220807.0-1
perl-libwww 6.67-1
perl-list-moreutils 0.430-3
perl-list-moreutils-xs 0.430-3
perl-lwp-mediatypes 6.04-2
perl-lwp-protocol-https 6.10-4
perl-mailtools 2.21-6
perl-module-build 0.4231-7
perl-module-implementation 0.09-8
perl-module-refresh 0.18-1
perl-module-runtime 0.016-2
perl-module-runtime-conflicts 0.003-2
perl-mozilla-ca 20211001-1
perl-mro-compat 0.15-1
perl-namespace-clean 0.27-8
perl-net-http 6.22-2
perl-net-ssleay 1.90-3
perl-number-compare 0.03-12
perl-package-stash 0.40-2
perl-package-stash-xs 0.30-1
perl-padwalker 2.5-3
perl-params-util 1.102-3
perl-parse-yapp 1.21-5
perl-path-tiny 0.122-2
perl-role-tiny 2.002004-3
perl-sub-exporter 0.988-2
perl-sub-exporter-progressive 0.001013-8
perl-sub-identify 0.14-10
perl-sub-install 0.928-8
perl-sub-uplevel 0.2800-4
perl-sys-sigaction 0.23-1
perl-task-weaken 1.06-5
perl-test-cleannamespaces 0.24-2
perl-test-deep 1.130-2
perl-test-nowarnings 1.06-2
perl-test-reporter 1.62-1
perl-test-requires 0.11-4
perl-test-warn 0.36-2
perl-test-warn 0.37-1
perl-test-warnings 0.031-3
perl-text-glob 0.11-9
perl-timedate 2.33-4
perl-tree-dag-node 1.32-1
perl-try-tiny 0.31-2
perl-uri 5.12-1
perl-variable-magic 0.62-7
perl-www-mechanize 2.13-1
perl-www-mechanize 2.15-1
perl-www-robotrules 6.02-10
perl-xml-libxml 2.0207-3
perl-xml-namespacesupport 1.12-4
perl-xml-sax 1.02-1
perl-xml-sax-base 1.09-4
phonon-qt5 4.11.1-3
phonon-qt5-gstreamer 4.10.0-3
php 8.1.10-1
pimcommon 22.08.1-1
pinfo 0.6.13-2
pipewire 1:0.3.56-1
pipewire 1:0.3.57-1
pipewire-alsa 1:0.3.57-1
pipewire-jack 1:0.3.57-1
pipewire-media-session 1:0.4.1-2
pipewire-pulse 1:0.3.57-1
pixman 0.40.0-2
plasma5-applets-weather-widget-2 2.3.0-1
plasma-browser-integration 5.25.5-1
plasma-desktop 5.25.5-1
plasma-disks 5.25.5-1
plasma-framework 5.97.0-1
plasma-framework 5.98.0-1
plasma-integration 5.25.4-1
plasma-integration 5.25.5-1
plasma-nm 5.25.5-1
plasma-pa 5.25.5-1
plasma-sdk 5.25.5-1
plasma-systemmonitor 5.25.5-1
plasma-vault 5.25.5-1
plasma-wayland-session 5.25.5-1
plasma-wayland-session 5.25.5-2
plasma-workspace 5.25.4-1
plasma-workspace 5.25.5-1
plasma-workspace 5.25.5-2
plasma-workspace-wallpapers 5.25.5-1
plex-media-server 1.28.2.6151-1
polkit 121-1
polkit-kde-agent 5.25.5-1
polkit-qt5 0.114.0-1
popcorntime-bin 0.4.9-1
poppler 22.08.0-2
poppler 22.09.0-1
poppler-glib 22.09.0-1
poppler-qt5 22.09.0-1
popt 1.18-3
potrace 1.16-2
powerdevil 5.25.5-1
powerline-go 1.22.1-1
powershell-bin 7.2.6-1
ppsspp-assets 1.13.2-1
print-manager 22.08.1-1
prison 5.97.0-1
prison 5.98.0-1
protobuf 21.4-1
protobuf 21.5-1
protontricks 1.9.1-1
purpose 5.98.0-1
pyright 1.1.270-1
pyside2 5.15.6-1
python 3.10.6-1
python 3.10.7-1
python-appdirs 1.4.4-7
python-arrow 1.2.3-1
python-astroid 2.12.6-1
python-astroid 2.12.8-1
python-astroid 2.12.9-1
python-autocommand 2.2.1-1
python-cachecontrol 1:0.12.11-1
python-certifi 2022.06.15.1-1
python-cryptography 38.0.0-1
python-cryptography 38.0.1-1
python-deprecation 2.1.0-6
python-distro 1.7.0-1
python-docutils 1:0.19-2
python-filelock 3.7.1-1
python-filelock 3.8.0-1
python-filetype 1.0.10-1
python-flake8-isort 4.2.0-2
python-gobject 3.42.2-1
python-grpcio 1.48.0-1
python-grpcio-tools 1.47.0-1
python-imagesize 1.4.1-2
python-importlib-metadata 4.8.3-1
python-inflect 6.0.0-1
python-jaraco.context 4.1.2-1
python-jaraco.functools 3.5.1-1
python-jaraco.text 3.9.1-1
python-matplotlib-inline 0.1.6-2
python-more-itertools 8.13.0-2
python-nspektr 0.4.0-1
python-nspektr 0.4.0-2
python-numpy 1.23.3-1
python-ordered-set 4.1.0-1
python-packaging 21.3-1
python-patiencediff 0.2.3-1
python-pdftotext 2.2.2-3
python-prompt_toolkit 3.0.31-1
python-protobuf 21.4-1
python-protobuf 21.5-1
python-pyasn 1.6.1-2
python-pycodestyle 2.9.1-2
python-pydantic 1.10.1-1
python-pydantic 1.10.2-1
python-pyparsing 3.0.9-1
python-pyppmd 1.0.0-1
python-pyudev 0.24.0-1
python-regex 2022.8.17-1
python-rope 1.3.0-1
python-setuptools 1:62.3.2-1
python-setuptools 1:62.3.3-1
python-setuptools 1:62.3.4-1
python-setuptools-scm 7.0.5-1
python-shiboken2 5.15.6-1
python-six 1.16.0-6
python-sphinx 5.1.1-2
python-sphinxcontrib-applehelp 1.0.2-9
python-sphinxcontrib-devhelp 1.0.2-9
python-sphinxcontrib-htmlhelp 2.0.0-5
python-sphinxcontrib-jsmath 1.0.1-12
python-sphinxcontrib-qthelp 1.0.3-9
python-sphinxcontrib-serializinghtml 1.1.5-4
python-toml 0.10.2-8
python-tomli 2.0.1-1
python-trove-classifiers 2022.8.31-1
python-typing_extensions 4.3.0-1
python-validate-pyproject 0.10.1-1
python-validate-pyproject 0.9-1
python-vdf 3.4-2
python-virtualenv 20.12.1-1
python-virtualenv 20.13.0-1
python-virtualenv 20.13.1-1
python-virtualenv 20.13.2-1
python-yaml 6.0-1
qca-qt5 2.3.4-3
qemu-audio-alsa 7.1.0-4
qemu-audio-alsa 7.1.0-5
qemu-audio-dbus 7.1.0-4
qemu-audio-dbus 7.1.0-5
qemu-audio-jack 7.1.0-4
qemu-audio-jack 7.1.0-5
qemu-audio-oss 7.1.0-4
qemu-audio-oss 7.1.0-5
qemu-audio-pa 7.1.0-4
qemu-audio-pa 7.1.0-5
qemu-audio-sdl 7.1.0-4
qemu-audio-sdl 7.1.0-5
qemu-audio-spice 7.1.0-4
qemu-audio-spice 7.1.0-5
qemu-block-curl 7.1.0-4
qemu-block-curl 7.1.0-5
qemu-block-dmg 7.1.0-4
qemu-block-dmg 7.1.0-5
qemu-block-nfs 7.1.0-4
qemu-block-nfs 7.1.0-5
qemu-block-ssh 7.1.0-4
qemu-block-ssh 7.1.0-5
qemu-chardev-spice 7.1.0-4
qemu-chardev-spice 7.1.0-5
qemu-common 7.1.0-4
qemu-common 7.1.0-5
qemu-desktop 7.1.0-4
qemu-desktop 7.1.0-5
qemu-emulators-full 7.1.0-4
qemu-emulators-full 7.1.0-5
qemu-hw-display-qxl 7.1.0-4
qemu-hw-display-qxl 7.1.0-5
qemu-hw-display-virtio-gpu 7.1.0-4
qemu-hw-display-virtio-gpu 7.1.0-5
qemu-hw-display-virtio-gpu-gl 7.1.0-4
qemu-hw-display-virtio-gpu-gl 7.1.0-5
qemu-hw-display-virtio-gpu-pci 7.1.0-4
qemu-hw-display-virtio-gpu-pci 7.1.0-5
qemu-hw-display-virtio-gpu-pci-gl 7.1.0-4
qemu-hw-display-virtio-gpu-pci-gl 7.1.0-5
qemu-hw-display-virtio-vga 7.1.0-4
qemu-hw-display-virtio-vga 7.1.0-5
qemu-hw-display-virtio-vga-gl 7.1.0-4
qemu-hw-display-virtio-vga-gl 7.1.0-5
qemu-hw-s390x-virtio-gpu-ccw 7.1.0-4
qemu-hw-s390x-virtio-gpu-ccw 7.1.0-5
qemu-hw-usb-host 7.1.0-4
qemu-hw-usb-host 7.1.0-5
qemu-hw-usb-redirect 7.1.0-4
qemu-hw-usb-redirect 7.1.0-5
qemu-hw-usb-smartcard 7.1.0-4
qemu-hw-usb-smartcard 7.1.0-5
qemu-img 7.1.0-4
qemu-img 7.1.0-5
qemu-pr-helper 7.1.0-4
qemu-pr-helper 7.1.0-5
qemu-system-aarch64 7.1.0-4
qemu-system-aarch64 7.1.0-5
qemu-system-alpha 7.1.0-4
qemu-system-alpha 7.1.0-5
qemu-system-arm 7.1.0-4
qemu-system-arm 7.1.0-5
qemu-system-avr 7.1.0-4
qemu-system-avr 7.1.0-5
qemu-system-cris 7.1.0-4
qemu-system-cris 7.1.0-5
qemu-system-hppa 7.1.0-4
qemu-system-hppa 7.1.0-5
qemu-system-loongarch64 7.1.0-4
qemu-system-loongarch64 7.1.0-5
qemu-system-m68k 7.1.0-4
qemu-system-m68k 7.1.0-5
qemu-system-microblaze 7.1.0-4
qemu-system-microblaze 7.1.0-5
qemu-system-mips 7.1.0-4
qemu-system-mips 7.1.0-5
qemu-system-nios2 7.1.0-4
qemu-system-nios2 7.1.0-5
qemu-system-or1k 7.1.0-4
qemu-system-or1k 7.1.0-5
qemu-system-ppc 7.1.0-4
qemu-system-ppc 7.1.0-5
qemu-system-riscv 7.1.0-4
qemu-system-riscv 7.1.0-5
qemu-system-rx 7.1.0-4
qemu-system-rx 7.1.0-5
qemu-system-s390x 7.1.0-4
qemu-system-s390x 7.1.0-5
qemu-system-sh4 7.1.0-4
qemu-system-sh4 7.1.0-5
qemu-system-sparc 7.1.0-4
qemu-system-sparc 7.1.0-5
qemu-system-tricore 7.1.0-4
qemu-system-tricore 7.1.0-5
qemu-system-x86 7.1.0-4
qemu-system-x86 7.1.0-5
qemu-system-xtensa 7.1.0-4
qemu-system-xtensa 7.1.0-5
qemu-tools 7.1.0-4
qemu-tools 7.1.0-5
qemu-ui-curses 7.1.0-4
qemu-ui-curses 7.1.0-5
qemu-ui-dbus 7.1.0-4
qemu-ui-dbus 7.1.0-5
qemu-ui-egl-headless 7.1.0-4
qemu-ui-egl-headless 7.1.0-5
qemu-ui-gtk 7.1.0-4
qemu-ui-gtk 7.1.0-5
qemu-ui-opengl 7.1.0-4
qemu-ui-opengl 7.1.0-5
qemu-ui-sdl 7.1.0-4
qemu-ui-sdl 7.1.0-5
qemu-ui-spice-app 7.1.0-4
qemu-ui-spice-app 7.1.0-5
qemu-ui-spice-core 7.1.0-4
qemu-ui-spice-core 7.1.0-5
qemu-user 7.1.0-4
qemu-user 7.1.0-5
qemu-user-static 7.1.0-4
qemu-user-static 7.1.0-5
qemu-vhost-user-gpu 7.1.0-4
qemu-vhost-user-gpu 7.1.0-5
qemu-virtiofsd 7.1.0-4
qemu-virtiofsd 7.1.0-5
qpdf 10.6.3-1
qqc2-desktop-style 5.97.0-1
qqc2-desktop-style 5.98.0-1
qrencode 4.1.1-1
qt5-3d 5.15.6+kde+r6-1
qt5-base 5.15.5+kde+r180-1
qt5-base 5.15.5+kde+r182-1
qt5-base 5.15.5+kde+r184-1
qt5-base 5.15.6+kde+r167-1
qt5-charts 5.15.6+kde+r0-1
qt5-connectivity 5.15.6+kde+r5-1
qt5-datavis3d 5.15.6+kde+r0-1
qt5-declarative 5.15.5+kde+r19-1
qt5-declarative 5.15.6+kde+r20-1
qt5-gamepad 5.15.6+kde+r0-1
qt5-graphicaleffects 5.15.5+kde+r0-1
qt5-graphicaleffects 5.15.6+kde+r0-1
qt5-imageformats 5.15.6+kde+r4-1
qt5-location 5.15.5+kde+r3-1
qt5-location 5.15.6+kde+r3-1
qt5-lottie 5.15.6+kde+r0-1
qt5-multimedia 5.15.5+kde+r1-1
qt5-multimedia 5.15.6+kde+r1-1
qt5-networkauth 5.15.6+kde+r0-1
qt5-purchasing 5.15.6+kde+r0-1
qt5-quick3d 5.15.6+kde+r1-1
qt5-quickcontrols2 5.15.5+kde+r6-1
qt5-quickcontrols2 5.15.6+kde+r5-1
qt5-quickcontrols 5.15.5+kde+r0-1
qt5-quickcontrols 5.15.6+kde+r0-1
qt5-quicktimeline 5.15.6+kde+r0-1
qt5-remoteobjects 5.15.6+kde+r0-1
qt5-script 5.15.10-3
qt5-scxml 5.15.6+kde+r0-1
qt5-sensors 5.15.6+kde+r0-1
qt5-serialbus 5.15.6+kde+r0-1
qt5-serialport 5.15.6+kde+r0-1
qt5-speech 5.15.5+kde+r1-1
qt5-speech 5.15.6+kde+r1-1
qt5-svg 5.15.5+kde+r11-1
qt5-svg 5.15.6+kde+r9-1
qt5-tools 5.15.5+kde+r1-3
qt5-tools 5.15.6+kde+r1-1
qt5-translations 5.15.5+kde+r2-1
qt5-translations 5.15.6+kde+r2-1
qt5-virtualkeyboard 5.15.6+kde+r1-1
qt5-wayland 5.15.5+kde+r38-3
qt5-wayland 5.15.5+kde+r38-4
qt5-wayland 5.15.6+kde+r43-2
qt5-webchannel 5.15.5+kde+r3-1
qt5-webchannel 5.15.6+kde+r3-1
qt5-webengine 5.15.10-2
qt5-webengine 5.15.10-3
qt5-webglplugin 5.15.6+kde+r0-1
qt5-webkit 5.212.0alpha4-16
qt5-websockets 5.15.6+kde+r2-1
qt5-webview 5.15.6+kde+r0-1
qt5-x11extras 5.15.5+kde+r0-1
qt5-x11extras 5.15.6+kde+r0-1
qt5-xmlpatterns 5.15.5+kde+r0-1
qt5-xmlpatterns 5.15.6+kde+r0-1
qt6-3d 6.3.2-1
qt6-5compat 6.3.2-1
qt6-base 6.3.1-1
qt6-base 6.3.2-1
qt6-charts 6.3.2-1
qt6-connectivity 6.3.2-1
qt6-datavis3d 6.3.2-1
qt6-declarative 6.3.2-1
qt6-doc 6.3.2-1
qt6-examples 6.3.2-1
qt6-imageformats 6.3.2-1
qt6-languageserver 6.3.2-1
qt6-lottie 6.3.2-1
qt6-multimedia 6.3.2-1
qt6-networkauth 6.3.2-1
qt6-positioning 6.3.2-1
qt6-quick3d 6.3.2-1
qt6-quicktimeline 6.3.2-1
qt6-remoteobjects 6.3.2-1
qt6-scxml 6.3.2-1
qt6-sensors 6.3.2-1
qt6-serialbus 6.3.2-1
qt6-serialport 6.3.2-1
qt6-shadertools 6.3.2-1
qt6-svg 6.3.2-1
qt6-tools 6.3.1-3
qt6-tools 6.3.2-1
qt6-translations 6.3.1-1
qt6-translations 6.3.2-1
qt6-virtualkeyboard 6.3.2-1
qt6-wayland 6.3.2-1
qt6-webchannel 6.3.2-1
qt6-webengine 6.3.2-1
qt6-websockets 6.3.2-1
qt6-webview 6.3.2-1
qtcreator 8.0.1-2
quiche 0.12.0-1
rar 6.12.0-1
rasdaemon 0.6.8-1
rav1e 0.5.1-2
re2 1:20220601-1
refind 0.13.3.1-1
refind-theme-regular-git r77.1ab545c-1
rest 0.8.1+r4+ge5ee6ef-1
rhash 1.4.2-1
rpm-tools 4.17.1-1
rsync 3.2.6-1
rtmidi 5.0.0-1
ruby 3.0.4-9
ruby-abbrev 0.1.0-1
ruby-base64 0.1.1-1
ruby-benchmark 0.2.0-1
ruby-bigdecimal 3.1.2-1
ruby-bundledgems 3.0.4-9
ruby-bundler 2.3.19-1
ruby-bundler 2.3.22-1
ruby-cgi 0.3.2-1
ruby-csv 3.2.5-1
ruby-date 3.2.2-1
ruby-delegate 0.2.0-1
ruby-did_you_mean 1.6.1-1
ruby-digest 3.1.0-1
ruby-drb 2.1.0-1
ruby-english 0.7.1-1
ruby-erb 2.2.3-2
ruby-etc 1.3.0-2
ruby-fcntl 1.0.1-1
ruby-fiddle 1.1.0-1
ruby-fileutils 1.6.0-1
ruby-find 0.1.1-1
ruby-forwardable 1.3.2-1
rubygems 3.3.19-1
ruby-getoptlong 0.1.1-1
ruby-io-console 0.5.11-1
ruby-io-nonblock 0.1.0-1
ruby-io-wait 0.2.3-1
ruby-ipaddr 1.2.4-1
ruby-irb 1.4.1-1
ruby-json 2.6.2-1
ruby-logger 1.5.1-1
ruby-minitest 5.16.3-1
ruby-mutex_m 0.1.1-1
ruby-net-http 0.2.2-1
ruby-open-uri 0.2.0-2
ruby-power_assert 2.0.1-1
ruby-psych 4.0.4-2
ruby-rake 13.0.6-1
ruby-rdoc 6.4.0-2
ruby-reline 0.3.1-1
ruby-rexml 3.2.5-1
ruby-ruby2_keywords 0.0.5-1
ruby-stdlib 3.0.4-9
ruby-stringio 3.0.2-1
ruby-test-unit 3.5.3-1
ruby-time 0.2.0-2
ruby-tmpdir 0.1.2-1
ruby-uri 0.11.0-2
run-parts 5.5-1
rust 1:1.63.0-1
rust-analyzer 20220829-2
rust-analyzer 20220905-1
samba 4.16.4-3
samba 4.16.5-1
samurai 1.2-2
sbc 2.0-1
scc 3.0.0-1
scdoc 1.11.2-4
sddm-kcm 5.25.5-1
sdl2 2.24.0-1
sdl2 2.24.0-2
semver 7.3.7-1
serd 0.30.14-1
sfml 2.5.1-2
shared-mime-info 2.0+144+g13695c7-1
shared-mime-info 2.0+155+gf4e7cbc-1
shntool 3.0.10-7
signon-kwallet-extension 22.08.1-1
skypeforlinux-stable-bin 8.88.0.401-1
smbclient 4.16.4-3
smbclient 4.16.5-1
snappy 1.1.9-2
sniffglue 0.15.0-1
snowman 0.1.3-1
solid 5.97.0-1
solid 5.98.0-1
sonarr 3.0.9.1549-1
sonnet 5.97.0-1
sonnet 5.98.0-1
sord 0.16.12-3
soundfont-opl3-fm-128m 1.0-1
sound-theme-freedesktop 0.8-5
spectacle 22.08.1-1
speex 1.2.1-1
speexdsp 1.2.1-1
sqlite 3.39.3-1
sratom 0.6.12-1
sratom 0.6.14-1
srt 1.5.0-1
suil 0.10.16-3
suitesparse 5.13.0-1
svt-av1 1.2.1-1
syndication 5.97.0-1
syndication 5.98.0-1
syntax-highlighting 5.97.0-1
syntax-highlighting 5.98.0-1
sysfsutils 2.1.1-1
systemd 251.4-1
systemsettings 5.25.5-1
talloc 2.3.4-1
tdb 1.4.7-1
teams 1.5.00.10453-1
tesseract-data-spa 2:4.1.0-3
tevent 1:0.13.0-1
texi2html 5.0-7
thin-provisioning-tools 0.9.0-1
threadweaver 5.97.0-1
threadweaver 5.98.0-1
tinyxml2 9.0.0-1
tomlplusplus 3.2.0-1
tracker3 3.3.3-1
tree 2.0.4-1
tree-sitter 0.20.6-1
tree-sitter 0.20.7-1
tslib 1.22-1
ttf-comic-neue 2.5-1
ttf-freebanglafont 20130212-5
ttf-hack 3.003-3
ttf-mph-2b-damase 002.000-1
ttf-ubraille 001.000-11
ttf-zilla-slab 1.002-3
tz 0.6.1-1
udisks2 2.9.4-1
unibilium 2.1.1-1
unzip 6.0-19
upower 0.99.20-1
usbmuxd 1.1.1-1
v4l-utils 1.22.1-1
vala 0.56.3-1
vde2 2.3.3-2
vde2 2.3.3-3
vid.stab 1.1-3
virtio-win 0.1.221.1-1
visual-studio-code-bin 1.71.0-3
vmaf 2.3.1-1
volume_key 0.3.12-7
vrrtest-git r33.79bd724-1
vulkan-extra-layers 1.3.224.1-1
vulkan-headers 1:1.3.221-1
vulkan-headers 1:1.3.227-1
vulkan-html-docs 1:1.3.227-1
vulkan-icd-loader 1.3.221-1
vulkan-icd-loader 1.3.226-1
vulkan-tools 1.3.226-1
vulkan-validation-layers 1.3.224.1-1
wayland 1.21.0-1
wayland-protocols 1.26-1
waypipe 0.8.3-1
webkit2gtk 2.36.7-1
webrtc-audio-processing 0.3.1-3
weston 10.0.2-1
wev 1.0.0-7
wget 1.21.3-1
wine 7.16-1
wine 7.16-2
wine-staging 7.16-2
wine-staging 7.17-1
winetricks 20220411-1
woff2 1.0.2-4
wolfssl 5.4.0-1
wolfssl 5.5.0-1
wpebackend-fdo 1.12.1-1
wsdd 0.7.0-1
wxwidgets-common 3.2.0-5
wxwidgets-common 3.2.0-6
wxwidgets-common 3.2.1-1
wxwidgets-gtk3 3.2.0-5
wxwidgets-gtk3 3.2.0-6
wxwidgets-gtk3 3.2.1-1
wxwidgets-qt5 3.2.0-6
wxwidgets-qt5 3.2.1-1
x264 3:0.164.r3095.baee400-4
x265 3.5-3
xcb-proto 1.15.2-1
xcb-util 0.4.0-4
xcb-util-cursor 0.1.3-4
xcb-util-image 0.4.0-4
xcb-util-keysyms 0.4.0-4
xcb-util-renderutil 0.3.9-4
xcb-util-wm 0.4.1-4
xdg-dbus-proxy 0.1.4-1
xdg-desktop-portal-kde 5.25.5-1
xdg-utils 1.1.3+21+g1a58bc2-1
xemu 0.7.70-1
xfsprogs 5.19.0-1
xkeyboard-config 2.36-3
xkeyboard-config 2.36+89+g382c5feb-1
xmlsec 1.2.34-2
xorg-bdftopcf 1.1-3
xorg-fonts-encodings 1.0.6-1
xorg-font-util 1.3.3-1
xorg-font-utils 7.6-6
xorg-mkfontscale 1.2.2-1
xorgproto 2022.2-1
xorg-util-macros 1.19.3-1
xorg-xmessage 1.0.6-1
xorg-xprop 1.2.5-1
xorg-xrdb 1.2.1-1
xorg-xset 1.2.4-3
xorg-xsetroot 1.1.2-3
xvidcore 1.3.7-2
xxd-standalone 8.2.4088-1
xxhash 0.8.1-2
yakuake 22.08.1-1
yt-dlp 2022.09.01-1
z3 4.11.2-1
zfs-linux-zen 2.1.5_5.19.6.zen1.1-1
zfs-linux-zen 2.1.5_5.19.7.zen2.1-1
zimg 3.0.4-1
zip 3.0-10
zoom 5.11.10-1
zoxide 0.8.3-1
zxing-cpp 1.4.0-1