-
Notifications
You must be signed in to change notification settings - Fork 0
/
void-packages.full
1257 lines (1257 loc) · 132 KB
/
void-packages.full
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
ii 1password-8.4.1_1 Password manager
ii AppStream-0.16.2_1 Tools and libraries to work with AppStream metadata
ii GConf-3.2.6_11 Process-transparent configuration system
ii GraphicsMagick-1.3.40_1 GraphicsMagick Image Processing System
ii LuaJIT-2.1.0beta3_2 Just-In-Time Compiler for Lua
ii NetworkManager-1.42.8_1 Network Management daemon
ii NetworkManager-openconnect-1.2.6_4 NetworkManager VPN plugin for OpenConnect
ii NetworkManager-openvpn-1.8.18_1 NetworkManager VPN plugin for OpenVPN
ii SDL-1.2.15_13 Simple Directmedia Layer
ii SDL2-2.28.1_1 Simple DirectMedia Layer (version 2)
ii SDL2_image-2.6.3_1 Load images as SDL surfaces (SDL 2.x)
ii Thunar-4.18.6_1 Thunar File Manager
ii aalib-1.4rc5_2 Portable ASCII art GFX library
ii abseil-cpp-20230125.3_1 Abseil common libraries
ii abseil-cpp-devel-20230125.3_1 Abseil common libraries (development files)
ii accountsservice-0.6.55_1 D-Bus interfaces for querying and manipulating user account information
ii acl-2.3.1_1 Access Control List filesystem support
ii acpi-1.7_4 Informations about ACPI devices (battery, thermal sensors and power)
ii acpica-utils-20210930_1 Intel ACPI CA Unix utilities
ii acpid-2.0.34_2 ACPI Daemon (acpid) With Netlink Support
ii adwaita-icon-theme-44.0_1 Theme consisting of a set of icons for GTK+
ii alsa-lib-1.2.9_1 Advanced Linux Sound Architecture (ALSA) library
ii alsa-plugins-1.2.7.1_1 Advanced Linux Sound Architecture (ALSA) extra plugins
ii alsa-tools-1.2.5_1 Advanced ALSA tools for certain sound cards
ii alsa-utils-1.2.9_1 Advanced Linux Sound Architecture (ALSA) utilities
ii amiri-font-1.000_1 Classical Arabic typeface in Naskh style
ii android-file-transfer-linux-4.2_2 Android File Transfer for Linux
ii android-udev-rules-20230614_1 Android udev rules list aimed to be the most comprehensive on the net
ii anki-2.1.15_6 Spaced repetition flashcard program
ii aptly-1.4.0_2 Debian repository management tool
ii aqemu-0.9.4_3 Qt5 GUI to QEMU and KVM emulators
ii arandr-0.1.11_1 Graphical frontend for XRandR
ii asciidoc-9.1.1_1 Text based document generation
ii aspell-0.60.8_5 Spell checker with good multi-language support
ii aspell-en-2020.12.07_2 English dictionary for aspell
ii at-spi2-atk-2.48.0_1 Assistive Technology Service Provider Interface - ATK bridge
ii at-spi2-core-2.48.0_1 Assistive Technology Service Provider Interface
ii atk-2.48.0_1 Set of interfaces for accessibility
ii atkmm-2.28.3_1 Set of interfaces for accessibility (C++ bindings)
ii attr-2.5.1_1 Extended attribute support library for ACL support
ii autoconf-2.71_1 Generates automatic source code configuration scripts
ii automake-1.16.5_1 GNU Standards-compliant Makefile generator
ii avahi-glib-libs-0.8_6 Avahi glib shared libraries
ii avahi-libs-0.8_2 Avahi shared libraries
ii ayatana-ido-0.9.3_1 Ayatana Indicator Display Objects
ii babashka-1.3.179_1 Native, fast starting Clojure interpreter for scripting
ii banner-1.2_6 Prints ASCII banners
ii base-devel-20181003_2 Void Linux development tools meta package
ii base-files-0.143_3 Void Linux base system files
ii base-system-0.114_1 Void Linux base system meta package
ii bash-5.2.015_1 GNU Bourne Again Shell
ii bat-0.23.0_2 Cat(1) clone with syntax highlighting and Git integration
ii bc-1.07.1_5 Arbitrary precision numeric processing language
ii bcc-0.28.0_1 BPF-based Linux IO analysis, networking, monitoring, and more
ii bcc-tools-0.28.0_1 BPF-based Linux IO analysis, networking, monitoring, and more - tools
ii bind-libs-9.16.22_2 Berkeley Internet Name Domain server - Runtime libraries
ii bind-utils-9.16.22_2 Berkeley Internet Name Domain server - DNS utils
ii binutils-2.39_2 GNU binary utilities
ii binutils-doc-2.39_2 GNU binary utilities - info files
ii bison-3.7.6_1 GNU yacc(1) replacement
ii blackbird-themes-0.4_5 Elegant dark GTK2/3/Metacity/Xfwm theme
ii blueman-2.3.5_1 GTK+ Bluetooth Manager
ii bluez-5.68_1 Bluetooth tools and daemons
ii bluez-deprecated-5.68_1 Bluetooth tools and daemons - deprecated tools
ii bookworm-1.1.2_5 Simple, focused eBook reader
ii bridge-utils-1.7.1_1 Layer2 ethernet bridging for Linux
ii brotli-1.0.9_2 Generic-purpose lossless compression algorithm
ii btrfs-progs-6.3.1_1 Btrfs filesystem utilities
ii bubblewrap-0.8.0_1 Unprivileged sandboxing tool
ii bumblebee-status-2.1.4_3 Modular, theme-able status line generator for the i3 window manager
ii bzip2-1.0.8_2 Freely available, patent free, high-quality data compressor
ii c-ares-1.19.1_1 Library for asynchronous DNS requests
ii c-ares-devel-1.19.1_1 Library for asynchronous DNS requests - development files
ii ca-certificates-20230311+3.89.1_1 Common CA certificates for SSL/TLS from Mozilla
ii cairo-1.16.0_2 Vector graphics library with cross-device output support
ii cairomm-1.14.4_1 C++ bindings to Cairo vector graphics library
ii cairomm1.16-1.16.1_1 C++ bindings to Cairo vector graphics library
ii calibre-6.17.0_2 Ebook management application
ii cantarell-fonts-0.303.1_1 Cantarell family of TrueType fonts
ii capstone-4.0.2_5 Lightweight multi-platform, multi-architecture disassembly framework
ii cdrtools-3.02a09_3 Highly portable CD/DVD/BluRay command line recording software
ii celt-0.11.3_3 An audio codec for use in low-delay speech and audio communication
ii chromaprint-1.5.1_1 Library that extracts fingerprints from any audio source
ii chromium-115.0.5790.98_1 Google's attempt at creating a safer, faster, and more stable browser
ii chrony-4.3_2 Versatile implementation of the Network Time Protocol (NTP)
ii cifs-utils-6.15_1 CIFS filesystem user-space tools
ii cloc-1.96.1_1 Count Lines of Code
ii clojure-1.11.1.1347_1 Clojure programming language command line tools
ii clutter-1.26.4_1 OpenGL based interactive canvas library
ii clutter-gtk-1.8.4_4 GTK+3 bindings for the Clutter Toolkit
ii clyrics-0.13_1 Extensible lyrics fetcher, with daemon support for cmus and mocp
ii cmus-2.10.0_1 Small, fast and powerful console music player
ii cmus-faad-2.10.0_1 Small, fast and powerful console music player - AAC/MP4 input plugin
ii cmus-flac-2.10.0_1 Small, fast and powerful console music player - FLAC input plugin
ii cmus-pulseaudio-2.10.0_1 Small, fast and powerful console music player - Pulseaudio output plugin
ii cogl-1.22.8_1 Library for using 3D graphics hardware for rendering
ii confuse-3.3_1 Small configuration file parser library for C
ii containerd-1.7.2_1 Open and reliable container runtime
ii cool-retro-term-1.1.1_1 Good looking terminal emulator which mimics the old cathode display
ii coreutils-9.2_1 GNU core utilities
ii cowsay-3.04_3 Configurable speaking/thinking cow (and a bit more)
ii cpio-2.14_1 GNU copy-in/out (cpio) with remote magnetic tape (rmt) support
ii cracklib-2.9.11_1 Password Checking Library
ii cryptsetup-2.6.1_1 Setup virtual encryption devices under Linux dm-crypt
ii curl-8.2.0_1 Client that groks URLs
ii dash-0.5.12_1 POSIX-compliant Unix shell, much smaller than GNU bash
ii dbus-1.14.8_1 Message bus system
ii dbus-devel-1.14.8_1 Message bus system - development files
ii dbus-glib-0.112_1 GLib bindings for D-Bus
ii dbus-libs-1.14.8_1 Message bus system - shared libraries
ii dbus-x11-1.14.8_1 Message bus system - X11 support
ii dconf-0.40.0_1 Low-level configuration system
ii dejavu-fonts-ttf-2.37_2 DejaVu family of TrueType fonts
ii delta-0.16.5_2 Syntax-highlighting pager for git
ii desktop-file-utils-0.26_1 Utilities to manage desktop entries
ii device-mapper-2.02.187_2 Device Mapper userspace library and tools
ii dhcpcd-10.0.1_2 RFC2131 compliant DHCP client
ii dialog-1.3.20230209_1 Tool to display dialog boxes from shell scripts
ii dict-1.13.0_1 DICT protocol dictionary client, from the dictd developers
ii diff-pdf-0.5.1_1 Simple tool for visually comparing two PDF files
ii diffutils-3.10_1 GNU diff utilities
ii dmidecode-3.5_1 Desktop Management Interface table related utilities
ii dmraid-1.0.0.rc16.3_12 Device mapper RAID interface
ii dnsmasq-2.89_1 Lightweight, easy to configure DNS forwarder and DHCP server
ii dnssec-anchors-20230213_1 DNSSEC trust anchors for the root zone
ii dnstracer-1.10_2 Trace a chain of DNS servers to the source
ii docbook-xml-4.5_5 XML DTD designed for computer documentation
ii docbook-xsl-1.79.2_2 Docbook XSL modular stylesheet
ii docker-24.0.4_1 Docker container runtime
ii docker-cli-24.0.4_1 Command-line interface for the Docker daemon
ii docker-compose-2.20.2_1 Tool to define and run multi-container Docker applications
ii dos2unix-7.5.0_1 Text file format converter
ii dosfstools-4.2_1 DOS filesystem tools
ii dotconf-1.3_3 A C library for parsing configuration files
ii double-conversion-3.3.0_1 Efficient binary-decimal and decimal-binary routines for IEEE doubles
ii dpkg-1.21.22_1 Debian Package Manager
ii dracut-059_3 Low-level tool for generating an initramfs/initrd image
ii drive-0.4.0_2 Google Drive client for the commandline
ii dtc-1.7.0_1 Device Tree Compiler
ii duff-0.5.2_2 Duplicate file finder
ii duktape-2.7.0_1 Embeddable JavaScript engine
ii dunst-1.9.2_1 Lightweight and customizable notification daemon
ii dvdbackup-0.4.2_3 Tool to rip video DVDs from the command line
ii e2fsprogs-1.47.0_1 Ext2/3/4 Filesystem Utilities
ii e2fsprogs-libs-1.47.0_1 Ext2/3/4 Filesystem Utilities - shared libraries
ii ed-1.19_1 GNU Line-oriented text editor
ii efibootmgr-18_1 Tool to modify UEFI Firmware Boot Manager Variables
ii electron24-24.3.0_1 Cross platform application framework based on web technologies
ii elinks-0.16.0_1 Full-Featured Text WWW Browser
ii elogind-246.10_3 Standalone logind fork
ii enchant2-2.5.0_2 Generic spell checking library
ii entr-5.3_1 Utility for running arbitrary commands when files change
ii epdfview-0.1.8_12 Lightweight PDF viewer using Poppler and GTK+
ii ethtool-6.3_1 Utility for controlling network drivers and hardware
ii eudev-3.2.12_1 Fork of systemd-udev (enhanced userland device daemon)
ii eudev-libudev-3.2.12_1 Fork of systemd-udev (enhanced userland device daemon) - runtime library
ii exercism-3.1.0_2 Command line tool for exercism.io
ii exfat-utils-1.4.0_1 Utilities for exFAT file system
ii exiftool-12.64_1 Reader and rewriter of EXIF information that supports raw files
ii exiv2-0.27.6_1 Image metadata manipulation
ii exo-4.18.0_1 Extension library for the Xfce desktop environment
ii expat-2.5.0_1 XML parser library written in C
ii expat-devel-2.5.0_1 XML parser library written in C - development files
ii f2fs-tools-1.15.0_1 Tools for the Linux Flash-Friendly File System (F2FS)
ii faac-1.30_1 AAC audio encoder library
ii faad2-2.10.1_1 AAC decoding library
ii faenza-icon-theme-1.3.1_3 Faenza icon theme
ii fd-8.7.0_1 Simple, fast and user-friendly alternative to find
ii fdk-aac-2.0.2_2 Fraunhofer FDK AAC codec library
ii feh-3.10_1 Fast and light imlib2-based image viewer
ii ffmpeg-4.4.4_2 Decoding, encoding and streaming software
ii ffplay-4.4.4_2 Simple video player using FFmpeg and SDL2
ii file-5.44_1 File type identification utility
ii findutils-4.9.0_1 GNU Find Utilities
ii firefox-115.0.2_1 Mozilla Firefox web browser
ii fish-shell-3.6.1_1 User friendly shell intended mostly for interactive use
ii flameshot-12.1.0_1 Powerful yet simple to use screenshot software for GNU/Linux
ii flatpak-1.15.4_2 Application sandboxing and distribution framework
ii flex-2.6.4_3 The Fast Lexical Analyzer
ii flite-2.2_1 Lightweight speech synthesis engine
ii fltk-1.3.8_1 Cross-platform C++ GUI toolkit
ii font-adobe-source-code-pro-2.038R~ro+1.058R~it+1.018R~VAR_1 Monospaced font family for user interface and coding environments
ii font-adobe-source-sans-pro-v2-2.045_1 Real SourceSansPro fonts
ii font-adobe-source-serif-pro-3.001R_1 Adobe's sans serif font family
ii font-alef-1.001_1 Alef fonts for Latin and Hebrew scripts
ii font-alias-1.0.5_1 Standard aliases for X11 PCF fonts
ii font-b612-1.008_3 Highly legible font family designed for aircraft cockpit screens
ii font-crosextra-caladea-ttf-20130214_1 Serif font metric-compatible with the Cambria font
ii font-fantasque-sans-ttf-1.8.0_2 Handwriting-like programming typeface
ii font-fira-ttf-4.202_4 Mozilla's new typeface OTF, used in Firefox OS
ii font-ibm-plex-ttf-6.2.0_1 IBM’s typeface, IBM Plex (TTF variant)
ii font-libre-hebrew-1.0_1 LibreOffice fonts for Hebrew
ii font-manjari-2.000_1 Malayalam font with smooth curves
ii font-material-design-icons-ttf-4.0.0_2 Material Design icons by Google
ii font-misc-misc-1.1.3_1 Standard X11 fixed PCF fonts
ii font-reem-kufi-ttf-1.7_1 Modern Kufic typefaces for Arabic
ii font-sil-abyssinica-2.200_1 Ethiopic font, based on Ethiopic calligraphic traditions
ii font-sil-alkalami-3.000_1 Font designed for Arabic-based writing systems in the Kano region
ii font-sil-charis-6.200_1 Unicode serif font, similar to Bitstream Charter
ii font-sil-harmattan-4.000_1 Arabic Warsh font designed to suit the needs of West African languages
ii font-sil-mingzat-1.100_1 Script used by the Lepcha language of South Asia since Unicode 5.1
ii font-sil-padauk-5.001_1 Font with broad support for writing systems that use the Myanmar script
ii font-sil-tai-heritage-pro-2.600_2 Typeface that reflects the traditional style of the Tai Viet script
ii font-util-1.4.0_1 Tools for truncating and subseting of ISO10646-1 BDF fonts
ii font-vollkorn-ttf-4.105_2 The free and healthy typeface
ii fontconfig-2.14.2_1 Library for configuring and customizing font access
ii fonts-croscore-ttf-1.31.0_3 TrueType fonts Arimo, Cousine, Tinos and SymbolNeu from Google
ii fonts-roboto-ttf-2.138_3 Google's signature family of fonts
ii fonttools-4.41.0_1 Library to manipulate font files from Python
ii freetype-2.13.1_1 Font rendering engine and library API
ii fribidi-1.0.13_1 Free Implementation of the Unicode Bidirectional Algorithm
ii fstl-0.10.0_1 Fast viewer for STL files
ii fuse-2.9.9_1 Filesystem in Userspace
ii fuse-exfat-1.4.0_1 Free exFAT file system implementation
ii fuse3-3.15.1_1 Filesystem in Userspace 3.x
ii fzf-0.42.0_1 Command-line fuzzy finder
ii gawk-5.1.1_1 GNU awk utility
ii gcc-12.2.0_2 GNU Compiler Collection
ii gcr-3.41.1_1 GNOME crypto package
ii gdbm-1.23_1 GNU database routines
ii gdk-pixbuf-2.42.10_2 Image loading library for The GTK+ toolkit (v2)
ii gettext-0.21_4 Internationalized Message Handling Library and tools
ii ghostscript-10.01.2_1 Interpreter for the PostScript language
ii giflib-5.2.1_1 Library to handle, display and manipulate GIF images
ii gir-freedesktop-1.76.1_1 Introspection data for some FreeDesktop components
ii git-2.41.0_1 Git Tree History Storage Tool
ii git-extras-7.0.0_1 Little git extras
ii glib-2.76.1_1 GNU library of C routines
ii glib-networking-2.76.0_1 Network-related giomodules for glib
ii glibc-2.36_1 GNU C library
ii glibc-devel-2.36_1 GNU C library - development files
ii glibc-locales-2.36_1 GNU C library - locale data files
ii glibmm-2.66.6_1 C++ bindings for GLib
ii glibmm2.68-2.76.0_1 C++ bindings for GLib
ii glslang-11.11.0_1 Khronos reference front-end for GLSL, ESSL, and sample SPIR-V generator
ii glxinfo-8.4.0_3 Tool to diagnose problems with 3D acceleration setup
ii gmp-6.2.1_1 Library for arbitrary precision arithmetic
ii gmp-devel-6.2.1_1 Library for arbitrary precision arithmetic - development files
ii gnome-keyring-42.1_1 GNOME password and secret manager
ii gnome-themes-extra-3.28_3 Extra GNOME themes
ii gnupg-2.4.3_1 GNU Privacy Guard (2.x)
ii gnutls-3.8.0_1 GNU Transport Layer Security library
ii goldendict-1.5.0_1 A feature-rich dictionary lookup program
ii google-chrome-113.0.5672.126_1 Attempt at creating a safer, faster, and more stable browser
ii google-fonts-ttf-20230317_2 Google's Collection of Fonts
ii gpm-1.20.7_10 Mouse server for the console and xterm
ii granite-6.2.0_1 GTK3 widget library for elementary OS
ii graphene-1.10.8_1 Thin layer of types for graphic libraries
ii graphite-1.3.14_1 Reimplementation of the SIL Graphite text processing engine
ii grep-3.11_1 GNU grep utility
ii groff-1.22.4_3 GNU troff text-formatting system
ii grpc-1.56.0_1 High performance, open source, general RPC framework
ii grpc-devel-1.56.0_1 High performance, open source, general RPC framework - development files
ii grub-2.06_3 GRand Unified Bootloader 2
ii grub-x86_64-efi-2.06_3 GRand Unified Bootloader 2 - x86_64 EFI support
ii gscreenshot-3.4.1_1 GUI for multiple screenshot backends including scrot, PIL, and grim
ii gsettings-desktop-schemas-44.0_1 Collection of GSettings schemas
ii gsfonts-20200910_1 URW+ base35 fonts
ii gsl-2.7.1_1 Numerical library for C and C++ programmers
ii gst-plugins-bad1-1.22.2_2 GStreamer plugins from the bad set (v1.x)
ii gst-plugins-base1-1.22.2_1 GStreamer Base Plug-ins (v1.x)
ii gst-plugins-good1-1.22.2_1 GStreamer set of well-maintained good plug-ins (1.x)
ii gstreamer1-1.22.2_1 Core GStreamer libraries and elements (1.x)
ii gthumb-3.12.2_3 Image viewer and browser for the GNOME Desktop
ii gtk+-2.24.33_2 GTK+ toolkit (v2)
ii gtk+3-3.24.38_1 GTK+ toolkit (v3)
ii gtk-engine-murrine-0.98.2_7 GTK2 engine to make your desktop look like a murrina
ii gtk-update-icon-cache-2.24.33_2 GTK+ toolkit (v2) - The GTK+ update icon cache tool
ii gtk-vnc-1.3.1_1 VNC viewer widget for GTK
ii gtk2fontsel-0.1_4 Font selection and preview tool
ii gtk4-4.10.4_1 GIMP ToolKit (v4)
ii gtkmm-3.24.7_1 C++ bindings for The GTK+ toolkit (v3)
ii gtkmm4-4.4.0_1 C++ bindings for The GTK+ toolkit (v4)
ii gtksourceview4-4.8.2_2 Text widget that extends GTK+ GtkTextView widget
ii gumbo-parser-0.10.1_3 HTML5 parsing library in pure C99
ii gv-3.7.4_5 Postscript and PDF viewer
ii gvfs-1.50.4_1 Userspace virtual filesystem
ii gvfs-afc-1.50.4_1 Userspace virtual filesystem - Apple mobile device backend
ii gvfs-afp-1.50.4_1 Userspace virtual filesystem - Apple Filing Protocol (AFP) backend
ii gvfs-mtp-1.50.4_1 Userspace virtual filesystem - MTP backend
ii gvfs-smb-1.50.4_1 Userspace virtual filesystem - SMB/CIFS (Windows client) backend
ii gzip-1.12_2 GNU compression utility (replacement for compress)
ii handbrake-1.5.1_1 Multithreaded video transcoder
ii hdparm-9.65_1 Utility to access IDE device parameters
ii helix-23.05_2 Post-modern modal text editor
ii hfsprogs-540.1.linux3_8 Apple's mkfs and fsck for HFS and HFS+ file systems
ii hfsutils-3.2.6_2 Software package to permit manipulation of HFS volumes
ii hicolor-icon-theme-0.17_3 Standard icon theme called hicolor
ii hidapi-0.13.1_1 Simple library for communicating with USB and Bluetooth HID devices
ii htop-3.2.2_1 Interactive process viewer
ii httpie-3.2.2_1 Modern, user-friendly command-line HTTP client for the API era
ii hugo-0.115.4_1 Fast & Modern Static Website Engine
ii hunspell-1.7.2_1 Spell checker and morphological analyzer
ii hunspell-en_GB-ize-2020.12.07_1 English dictionary for hunspell ize variant
ii hunspell-es_ES-2.7_1 Spanish dictionary for hunspell
ii hwids-0.372_1 Hardware Identification Databases
ii hydrogen-1.0.2_1 Advanced drum machine
ii hyphen-2.8.8_3 ALTLinux hyphenation library
ii i3-4.22_1 Improved tiling window manager
ii i3blocks-1.5_2 Flexible scheduler for i3bar
ii i3blocks-blocklets-2.0.0_1 Flexible scheduler for i3bar
ii i3status-2.14_1 Status bar generator for i3bar, dzen2, xmobar or similar programs
ii iana-etc-20230629_1 Unix /etc/services and /etc/protocols files
ii icu-libs-73.2_2 Robust and fully-featured Unicode libraries - shared libs
ii ifstatus-2.0.0_3 Display network traffic on console
ii iftop-1.0pre4_3 Top-like tool to display bandwidth usage on an interface
ii igt-gpu-tools-1.27.1_1 Tools for development and testing of the DRM drivers
ii imlib2-1.11.1_1 Image manipulation library
ii imlib2-tools-1.11.1_1 Image manipulation library - utilities
ii inetutils-telnet-2.4_1 GNU network utilities - telnet client and server
ii inih-57_1 Simple ini file parser library
ii instaloader-4.9.6_1 Download pictures with metadata from Instagram
ii intel-gmmlib-22.2.0_1 Intel Graphics Memory Management Library
ii intel-gpu-tools-1.27.1_1 Tools for development and testing of the DRM drivers (transitional dummy package)
ii intel-media-driver-22.5.3_1 Intel Media Driver for VAAPI (Broadwell+)
ii intel-video-accel-1_2 Intel Video Acceleration meta-pkg
ii inxi-3.3.27.1_1 Full featured system information script
ii iproute2-6.3.0_1 IP Routing Utilities
ii iptables-1.8.9_1 Linux IPv[46] packet filtering ruleset
ii iputils-20221126_1 Useful utilities for Linux networking (including ping)
ii ipw2100-firmware-1.3_6 Firmware for the Intel PRO/Wireless 2100 wifi cards
ii ipw2200-firmware-3.1_6 Firmware for the Intel PRO/Wireless 2200BG wifi cards
ii irssi-1.4.4_1 Secure and modular IRC client with text mode user interface
ii iso-codes-4.15.0_1 List of country, language and currency names
ii iw-5.19_1 Utility for nl80211 based CLI configuration of wireless devices
ii jansson-2.14_1 Library for encoding, decoding and manipulating JSON data
ii jbigkit-libs-2.2_2 Data compression library/utilities for bi-level high-resolution images - shared libraries
ii jemalloc-5.2.1_1 General-purpose scalable concurrent malloc(3) implementation
ii json-c-0.16_1 JSON implementation in C
ii json-glib-1.6.6_2 JSON parser for GLib-based libraries and applications
ii jsoncpp-1.9.4_2 JSON implementation in C++
ii kbd-2.6.1_1 Linux keyboard utilities
ii kernel-libc-headers-5.10.4_1 Linux API headers for userland development
ii kitty-0.29.1_1 Modern, hackable, featureful, OpenGL based terminal emulator
ii kitty-kitten-0.29.1_1 Modern, hackable, featureful, OpenGL based terminal emulator - kitten client
ii kitty-shell-integration-0.29.1_1 Modern, hackable, featureful, OpenGL based terminal emulator - shell integration scripts
ii kitty-terminfo-0.29.1_1 Modern, hackable, featureful, OpenGL based terminal emulator - terminfo data
ii kmod-30_1 Linux kernel module handling
ii kmonad-0.4.1.20220321_1 Keyboard remapping utility providing qmk-like functionality
ii kpartx-0.9.5_1 Create device maps from partition tables
ii kwindowsystem-5.107.0_1 KDE frameworks - Access to the windowing system
ii lame-3.100_2 Fast, high quality MP3 encoder
ii lazygit-0.39.3_1 Simple terminal UI for git commands
ii lcms2-2.15_1 Small-footprint color management engine, version 2
ii ldb-2.3.2_2 LDAP-like database from samba
ii leiningen-2.10.0_1 Automate Clojure projects without setting your hair on fire
ii less-633_1 Pager program similar to more(1)
ii libICE-1.1.1_1 Inter Client Exchange (ICE) library for X
ii libSM-1.2.4_1 X Session Management Library
ii libX11-1.8.6_1 Base X libraries from Xorg
ii libXScrnSaver-1.2.4_1 X11 Screen Saver Library
ii libXau-1.0.11_1 Authorization Protocol for X
ii libXaw-1.0.15_1 X Athena Widgets Library
ii libXaw3d-1.6.4_1 X Athena Widget 3d library
ii libXcomposite-0.4.6_1 X Composite Library
ii libXcursor-1.2.1_2 Client-side cursor loading library for X
ii libXdamage-1.1.6_1 Xdamage extension Library
ii libXdmcp-1.1.4_1 X Display Manager Control Protocol library
ii libXext-1.3.5_1 X Extension library
ii libXfixes-6.0.1_1 Xfixes library and extension of X RandR from modular X.org
ii libXfont2-2.0.6_1 X font 2 Library
ii libXft-2.3.8_1 Library for configuring and customizing font access
ii libXi-1.8.1_1 X Input extension library
ii libXinerama-1.1.5_1 X PanoramiX extension library
ii libXmu-1.1.4_1 X Miscellaneous Utilities library
ii libXpm-3.5.16_1 X PixMap Library from modular Xorg X11
ii libXpresent-1.0.1_1 XPresent extension C library
ii libXrandr-1.5.3_1 X RandR Library from X.org
ii libXrender-0.9.11_1 X Render Library
ii libXt-1.3.0_1 X Toolkit Intrinsics library
ii libXtst-1.2.4_1 X Tst Library
ii libXv-1.0.12_1 Xv Extension library
ii libXvMC-1.0.13_1 XVideo Motion Compensation Library
ii libXxf86vm-1.1.5_1 Library for the XFree86-VidMode X extension
ii liba52-0.7.4_9 Free ATSC A/52 stream decoder
ii libaio-0.3.113_1 Linux-native asynchronous I/O facility (aio) library
ii libao-1.2.2_1 Cross-platform audio output library
ii libaom-3.6.1_1 AV1 Codec library implementation
ii libapparmor-3.1.6_1 Mandatory access control to restrict programs - Library
ii libarchive-3.6.2_2 Library to read/write several different streaming archive formats
ii libargon2-20190702_3 Password hashing library
ii libaspell-0.60.8_5 Spell checker with good multi-language support - library
ii libass-0.17.1_1 Portable library for SSA/ASS subtitles rendering
ii libassuan-2.5.5_1 IPC library used by some GnuPG related software
ii libasyncns-0.8_9 C library for executing name service queries asynchronously
ii libatasmart-0.19_5 ATA S.M.A.R.T. Reading and Parsing Library
ii libatomic-12.2.0_2 GNU Compiler Collection - Atomics library
ii libavcodec-4.4.4_2 FFmpeg codec library
ii libavdevice-4.4.4_2 FFmpeg device handling library
ii libavfilter-4.4.4_2 FFmpeg audio/video filter library
ii libavformat-4.4.4_2 FFmpeg file format library
ii libavif-0.11.1_3 Library for encoding and decoding .avif files
ii libavresample-4.4.4_2 FFmpeg audio resampling library
ii libavutil-4.4.4_2 FFmpeg utility library
ii libayatana-appindicator-0.5.91_1 Ayatana Application Indicators Shared Library
ii libayatana-indicator-0.9.3_2 Ayatana Indicators Shared Library
ii libb2-0.98.1_1 BLAKE2 cryptographic hash function
ii libblkid-2.38.1_4 Library to handle device identification
ii libblockdev-2.28_1 Library for manipulating block devices
ii libbluetooth-5.68_1 Library to use the Bluez Linux Bluetooth Stack
ii libbluray-1.3.4_1 Library to access Blu-Ray disks for video playback
ii libbs2b-3.1.0_3 Audiofilter for headphones
ii libbytesize-2.8_2 Library for operations with sizes in bytes
ii libcaca-0.99.beta19_12 Graphics library that outputs text instead of pixels
ii libcacard-2.8.1_1 Library to provide emulation of smart cards to a virtual card reader
ii libcanberra-0.30_11 XDG Sound Theme and Name Specification library implementation
ii libcanberra-gtk3-0.30_11 XDG Sound Theme and Name Specification library implementation - GTK+ (3.x) support
ii libcap-2.69_1 POSIX.1e capabilities suite
ii libcap-ng-0.8.3_2 Alternate POSIX capabilities library
ii libcap-progs-2.69_1 POSIX.1e capabilities suite - utilities
ii libcbor-0.10.2_1 Library for parsing and generating CBOR, a binary data format
ii libcddb-1.3.2_9 Library to access data on a CDDB server
ii libcdio-2.1.0_1 CD-ROM access library
ii libcdio-paranoia-10.2+2.0.1_1 CD paranoia utility/libraries from libcdio
ii libcdparanoia-10.2_15 CDDA reading utility with extra data verification features - runtime library
ii libchmlib-0.40_4 Library for dealing with Microsoft ITSS/CHM format files
ii libclang-15.0.7_1 Low Level Virtual Machine - C frontend runtime library
ii libclang-cpp-15.0.7_1 Low Level Virtual Machine - C frontend runtime library (C++ interface)
ii libcloudproviders-0.3.1_1 DBus API for cloud storage sync clients to expose their services
ii libcolord-1.4.6_2 System daemon for managing color devices - runtime library
ii libconfig-1.7.3_1 C Configuration File Library
ii libcracklib-2.9.11_1 Password Checking Library - runtime library
ii libcrypto1.1-1.1.1t_1 Toolkit for Secure Sockets Layer and Transport Layer Security - crypto library
ii libcryptsetup-2.6.1_1 Setup virtual encryption devices under Linux dm-crypt - runtime libraries
ii libcups-2.4.6_1 Common Unix Printing System - client runtime shared libraries
ii libcurl-8.2.0_1 Multiprotocol file transfer library
ii libdatrie-0.2.13_1 Implementation of double-array structure for representing trie
ii libdav1d6-1.2.1_1 Small and fast AV1 Decoder - runtime library
ii libdaxctl-70.1_1 Utility library for managing libnvdimm - daxctl library
ii libdb-5.3.28_8 Berkeley DB embedded database system - C shared libraries
ii libdbusmenu-glib-16.04.0_5 Library for passing menus over DBus
ii libdbusmenu-gtk3-16.04.0_5 Library for passing menus over DBus (GTK+3)
ii libdca-0.0.7_2 DTS Coherent Acoustics decoder
ii libde265-1.0.12_1 Open h.265 video codec implementation
ii libdebuginfod-0.189_1 Utilities to handle ELF object files - debuginfod library
ii libdecor-0.1.1_1 Client-side decorations library for Wayland client
ii libdeflate-1.18_1 Optimized library for DEFLATE/zlib/gzip (de)compression
ii libdiscid-0.6.2_2 A Library for creating MusicBrainz DiscIDs
ii libdrm-2.4.115_1 Userspace interface to kernel DRM services
ii libdvdcss-1.4.3_1 Simple library designed for accessing DVDs
ii libdvdnav-6.1.1_1 Library to navigate DVDs
ii libdvdread-6.1.3_1 DVD access library
ii libeb-4.4.3_3 C library and tools for accessing CD-ROM books - Library
ii libedit-20221030.3.1_1 Port of the NetBSD Command Line Editor Library
ii libefivar-38_1 Library to manipulate EFI variables
ii libelf-0.189_1 Utilities to handle ELF object files - runtime library
ii libelogind-246.10_3 Standalone logind fork - elogind library
ii libenca-1.19_2 Extremely Naive Charset Analyser and converter - shared library
ii libepoxy-1.5.10_1 Library for handling OpenGL function pointer management for you
ii liberation-fonts-ttf-2.1.5_2 Fonts from RedHat with same metrics as Times, Arial and Courier
ii libespeak-ng-1.51_1 Text to Speech engine - runtime libraries
ii libev-4.33_1 High-performance event loop loosely modelled after libevent
ii libevdev-1.13.0_1 Wrapper library for evdev devices
ii libevent-2.1.12_2 Abstract asynchronous event notification library
ii libexif-0.6.24_1 EXIF file library
ii libfdisk-2.38.1_4 Library for fdisk(8)
ii libffi-3.3_2 Library supporting Foreign Function Interfaces
ii libfftw-3.3.10_1 Library for computing the discrete Fourier transform (DFT) - runtime libraries
ii libfido2-1.13.0_1 Library for FIDO 2.0, including communication with a device over USB
ii libfl-devel-2.6.4_3 The Fast Lexical Analyzer - development files
ii libflac-1.3.4_2 Free Lossless Audio Codec - shared libraries
ii libfluidsynth-2.3.3_1 Real-time software synthesizer based on the SoundFont 2 specifications - runtime library
ii libfontenc-1.1.7_1 Fontenc Library from X.org
ii libfreeglut-3.2.2_1 Open source implementation of the OpenGL Utility Toolkit library
ii libgbm-23.1.3_1 Mesa Generic buffer management API - runtime
ii libgcc-12.2.0_2 GNU Compiler Collection - GCC library
ii libgcc-devel-12.2.0_2 GNU Compiler Collection - GCC library - development files
ii libgcrypt-1.10.2_1 GNU cryptographic library
ii libgee-0.20.6_1 GObject collection library
ii libgee08-0.20.6_1 GObject collection library - transitional dummy package
ii libgexiv2-0.14.0_2 GObject-based wrapper around the Exiv2 library
ii libgirepository-1.76.1_1 Library for handling GObject introspection data (runtime library)
ii libgit2-1.6.4_1 Git linkable library
ii libglade-2.6.4_12 Runtime interpreter for GLADE GUI files
ii libglapi-23.1.3_1 Free implementation of the GL API - shared library
ii libglvnd-1.6.0_1 GL Vendor-Neutral Dispatch library
ii libgme-0.6.3_1 Video game music file emulation/playback library
ii libgnomekbd-3.28.1_1 Gnome keyboard configuration library
ii libgomp-12.2.0_2 GNU Compiler Collection - OpenMP v4.0 library
ii libgpg-error-1.47_1 Library for error values used by GnuPG component
ii libgpgme-1.18.0_3 GnuPG Made Easy - library
ii libgpm-1.20.7_10 Mouse server for the console and xterm - runtime library
ii libgraphicsmagick-1.3.40_1 GraphicsMagick image manipulation libraries
ii libgrpc-1.56.0_1 High performance, open source, general RPC framework - libraries
ii libgs-10.01.2_1 Interpreter for the PostScript language - runtime shared library
ii libgsm-1.0.22_2 GSM 06.10 lossy speech compression
ii libgtop-2.40.0_2 Library to retrieve system information, used in GNOME
ii libgudev-237_1 Library providing GObject bindings for libudev
ii libgusb-0.4.6_1 GLib wrapper around libusb1
ii libgxps-0.3.2_2 GObject base library for XPS documents
ii libhandy1-1.8.2_1 GTK+3 building blocks for modern adaptive applications
ii libharfbuzz-8.0.1_1 OpenType text shaping engine - runtime library
ii libheif-1.16.2_2 ISO/IEC 23008-12:2017 HEIF file format decoder and encoder
ii libheif-tools-1.16.2_2 ISO/IEC 23008-12:2017 HEIF file format decoder and encoder - tools
ii libhunspell1.7-1.7.2_1 Spell checker and morphological analyzer - runtime library
ii libical-3.0.16_3 Reference implementation of the iCalendar data type and format
ii libid3tag-0.15.1b_8 ID3 tag library, part of MAD (MPEG Audio Decoder)
ii libidn-1.41_1 Internationalized string handling library
ii libidn2-2.3.4_1 Internationalized string handling library
ii libijs-10.01.2_1 Interpreter for the PostScript language - IJS runtime shared library
ii libimagequant-2.18.0_1 Palette quantization library
ii libimobiledevice-1.3.0_4 Library to communicate with Apple devices
ii libinput-1.23.0_1 Provides handling input devices in Wayland compositors and X
ii libiscsi-1.19.0_1 ISCSI client library
ii libjack-1.9.22_1 JACK Audio Connection Kit low-latency sound server (pro audio) - runtime library
ii libjasper-2.0.25_1 Software-based reference implementation of the JPEG-2000 codec - shared library
ii libjbig2dec-0.19_2 Decoder implementation of the JBIG2 image compression format - runtime library
ii libjpeg-turbo-2.1.5.1_1 Derivative of libjpeg which uses SIMD instructions
ii libjpeg-turbo-tools-2.1.5.1_1 Derivative of libjpeg which uses SIMD instructions - bundled tools
ii libjxl-0.8.2_1 JPEG XL image format reference implementation
ii libkeyutils-1.6.3_1 Linux Key Management Utilities - runtime library
ii libkmod-30_1 Linux kernel module handling - runtime shared library
ii libksba-1.6.4_1 CMS and X.509 access library
ii libldap-2.4.58_1 OpenLDAP (Lightweight Directory Access Protocol) library
ii libldns-1.8.3_1 Modern DNS/DNSSEC library
ii liblightdm-gobject-1.32.0_3 Light Display Manager - GObject support library
ii liblilv-0.24.12_3 Simple yet powerful C API for using LV2 plugins - Runtime library
ii libllvm15-15.0.7_1 Low Level Virtual Machine - runtime library
ii liblo-0.31_1 Lightweight OSC implementation
ii liblrdf-0.6.1_2 Lightweight RDF library with special support for LADSPA plugins
ii libltdl-2.4.7_4 Runtime libraries for GNU Libtool Dynamic Module Loader
ii libluv-1.44.2.1_1 Bare libuv bindings for LuaJIT
ii liblxqt-1.3.0_1 Core utility library for all LXQt components
ii liblz4-1.9.4_1 LZ4 compression library
ii liblzma-5.4.3_1 XZ-format compression library
ii libmaa-1.4.7_1 Provides many low-level data structures useful for writing compilers
ii libmad-0.15.1b_10 High-quality MPEG audio decoder
ii libmagic-5.44_1 File type identification library
ii libmanette-0.2.6_1 Simple GObject game controller library
ii libmaxminddb-1.3.2_1 A library for working with MaxMind DB files
ii libmcpp-2.7.2_8 Portable C preprocessor - Runtime library
ii libmd-1.1.0_1 Message Digest functions from BSD systems
ii libmm-glib-1.18.12_1 Mobile broadband modem management service - GLib library
ii libmng-2.0.3_2 Multiple-image Network Graphics (MNG) reference library
ii libmnl-1.0.5_1 Minimalistic user-space library oriented to Netlink developers
ii libmodplug-0.8.9.0_1 A MOD playing library
ii libmount-2.38.1_4 Library for mount(8)
ii libmp4v2-2.0.0_4 MPEG-4 library from mpeg4ip
ii libmpdclient-2.20_1 Asynchronous API library for interfacing MPD
ii libmpeg2-0.5.1_10 Library for decoding MPEG-2 and MPEG-1 video streams
ii libmpg123-1.31.2_1 Fast console MPEG audio decoder/player - Runtime library
ii libmspack-0.10.1alpha_1 Library for Microsoft compression formats
ii libmtp-1.1.21_1 Library for Microsoft's Media Transfer Protocol (MTP)
ii libmysofa-1.3.1_1 Reader for AES SOFA files to get better HRTFs
ii libndctl-70.1_1 Utility library for managing libnvdimm - ndctl library
ii libndp-1.7_1 Library for Neighbor Discovery Protocol
ii libnetfilter_conntrack-1.0.9_1 Library providing an API to the in-kernel connection tracking table
ii libnfnetlink-1.0.2_1 Low-level library for netfilter kernel/userspace communication
ii libnfs-5.0.2_1 Client library for accessing NFS shares
ii libnftnl-1.2.6_1 Low-level netlink interface to nf_tables
ii libnice-0.1.21_1 Implementation of the IETF's draft ICE (for P2P UDP data streams)
ii libnl3-3.5.0_1 Netlink Protocol Library Suite
ii libnm-1.42.8_1 Network Management daemon - shared libraries
ii libnma-1.10.6_1 NetworkManager panel applet for GNOME - runtime library
ii libnotify-0.8.2_1 Desktop notification library
ii libnuma-2.0.14_1 Simple NUMA policy support - runtime library
ii libnuspell-5.1.2_3 C++ spell checking library
ii libogg-1.3.5_1 Ogg bitstream file format library
ii libopenal-1.22.2_1 Cross-platform 3D audio library
ii libopenjpeg2-2.5.0_2 Open-source JPEG 2000 codec written in C language (Version 2) - library files
ii liboping-1.10.0_11 C library to generate ICMP echo requests
ii libosinfo-1.10.0_2 GObject based library API for managing info about operating systems
ii libpaper-1.1.29_1 Library for handling paper characteristics
ii libparted-3.6_1 GNU Parted disk partition resizing program - shared library
ii libpcap-1.10.3_1 System-independent interface for user-level packet capture
ii libpciaccess-0.16_1 X11 PCI Access library
ii libpcre-8.45_3 Perl Compatible Regular Expressions - shared libraries
ii libpcre2-10.42_1 Perl Compatible Regular Expressions (2nd version) - shared libraries
ii libpcsclite-2.0.0_1 Middleware to access a smart card using SCard API (PC/SC) - library files
ii libpipewire-0.3.75_1 Server and user space API to deal with multimedia pipelines - pipewire library
ii libplacebo-4.208.0_1 Reusable library for GPU-accelerated video/image rendering
ii libplist-2.2.0_3 Apple Property List library
ii libpng-1.6.40_1 Library for manipulating PNG images
ii libpng-progs-1.6.40_1 Library for manipulating PNG images - utilities
ii libpodofo-0.9.7_3 Library to work with the PDF file format - shared library
ii libpoppler-23.05.0_1 PDF rendering library - poppler runtime library
ii libpostproc-4.4.4_2 FFmpeg video postprocessing library
ii libprotobuf-23.4_1 Protocol buffers C++ library
ii libprotobuf-lite-23.4_1 Protocol buffers C++ library (lite version)
ii libprotoc-23.4_1 Protocol buffers compiler library
ii libproxy-0.4.18_2 Library handling all the details of proxy configuration
ii libpsl-0.21.2_2 Public Suffix List library functions
ii libpulseaudio-15.0_4 Featureful, general-purpose sound server - shared libraries
ii libpwquality-1.4.5_1 Library for password quality checking and generating random passwords
ii libqtxdg-3.11.0_1 Qt implementation of freedesktop.org XDG specifications
ii libraptor-2.0.16_1 Raptor RDF Syntax Library - Runtime libraries
ii libraw-0.21.1_1 Raw image decoder library
ii libreadline8-8.2.001_1 GNU Readline Library
ii librist-0.2.7_1 Reliable Internet Stream Transport (RIST)
ii librsvg-2.56.1_1 SVG library for GNOME
ii librsync-2.3.2_1 Library that implements the rsync remote-delta algorithm (rdiff)
ii librtmp-2.4.20161210_10 Toolkit for RTMP streams - shared library
ii libsamplerate-0.2.2_1 Sample Rate Converter for audio
ii libsasl-2.1.28_1 Cyrus SASL - runtime shared libraries
ii libscrypt-1.22_2 Library that implements scrypt() functionality
ii libseccomp-2.5.4_1 High level interface to the Linux Kernel's seccomp filter
ii libsecret-0.20.5_2 GObject based library for accessing the Secret Service API
ii libsensors-3.6.0_1 Library to read temperature/voltage/fan sensors
ii libserd-0.30.10_1 Lightweight C library for RDF syntax - Runtime library
ii libsharpyuv-1.3.1_1 Library to expose libwebp's sharpyuv functionality
ii libsigc++-2.12.0_1 Type-safe callback system for C++ programs
ii libsigc++3-3.0.7_1 Type-safe callback system for C++ programs
ii libslirp-4.7.0_1 User-mode networking library used by VMs and containers
ii libsmartcols-2.38.1_4 Table or Tree library from util-linux
ii libsndfile-1.2.0_1 C library for reading and writing files containing sampled sound
ii libsndio-1.9.0_1 Small audio and MIDI framework part of the OpenBSD project -- library
ii libsodium-1.0.18_1 Modern and easy-to-use crypto library
ii libsonic-0.2.0_1 Simple library to speed up or slow down speech - shared libraries
ii libsord-0.16.6_1 Lightweight C library for storing RDF data in memory - Runtime library
ii libsoup-2.74.0_1 HTTP library implementation in C
ii libsoup3-3.4.2_1 HTTP library implementation in C
ii libsoxr-0.1.3_2 SoX resampler library
ii libspectre-0.2.11_2 Small library for rendering Postscript documents
ii libspeex-1.2.1_1 Free codec for free speech - shared libraries
ii libsrt-1.5.2_1 Secure, Reliable, Transport - development files
ii libsrtp-2.5.0_1 Library implementing SRTP, the Secure Real-time Transport Protocol
ii libssh-0.10.5_1 Multiplatform C library implementing the SSH v2 protocol
ii libssh2-1.11.0_1 Library implementing the SSH2 protocol
ii libssl1.1-1.1.1t_1 Toolkit for Secure Sockets Layer and Transport Layer Security - SSL/TLS library
ii libstdc++-12.2.0_2 GNU Compiler Collection - Standard C++ Library
ii libstdc++-devel-12.2.0_2 GNU Compiler Collection - Standard C++ Library - development files
ii libstemmer-2.2.0_1 Stemming algorithm library
ii libsvt-av1-1.6.0_1 AV1-compliant encoder/decoder library core - library files
ii libswresample-4.4.4_2 FFmpeg video resampling library
ii libswscale-4.4.4_2 FFmpeg video scaling library
ii libsynctex-20210325_6 TeX Live - libsynctex
ii libsysfs-2.1.0_7 Library to query system device information exposed through sysfs
ii libtasn1-4.19.0_1 ASN.1 structure parser library
ii libtdb-1.4.8_1 Trivial Database, similar to GDBM but allows simultaneous commits - shared libraries
ii libtermkey-0.22_1 Library for processing keyboard entry from terminal-based programs
ii libthai-0.1.29_1 Thai language support routines
ii libtheora-1.1.1_8 Theora Video Compression Codec
ii libtidy5-5.8.0_1 Tool to tidy down your HTML/HTML5 code to a clean style - library files
ii libtirpc-1.3.2_1 Transport Independent RPC library (SunRPC replacement)
ii libtool-2.4.7_4 Generic library support script
ii libtracker-3.5.0_3 Personal search tool and storage system - shared libraries
ii libu2f-host-1.1.10_5 C library and tool that implements the host-side of the U2F protocol
ii libunbound-1.17.1_1 Validating, recursive, and caching DNS resolver - shared library
ii libunistring-1.0_1 Library for manipulating Unicode strings and C strings
ii libunwind-1.5.0_3 Library to determine the call-chain of a program
ii libupower-glib3-1.90.1_1 Abstraction for enumerating power devices - runtime library
ii liburcu-0.14.0_1 Userspace RCU (read-copy-update) library
ii libusb-1.0.26_1 Library which allows userspace access to USB devices
ii libusb-compat-0.1.8_1 libusb-0.1 compatibility library
ii libusbmuxd-2.0.2_1 USB Multiplex Daemon library
ii libutempter-1.2.1_2 Library interface to record user sessions in utmp/wtmp files
ii libuuid-2.38.1_4 UUID library
ii libuv-1.45.0_1 Multi-platform support library with a focus on asynchronous I/O
ii libva-2.19.0_1 Video Acceleration (VA) API
ii libva-intel-driver-2.4.1_1 Video Acceleration (VA) API - Intel Graphics backend
ii libva-utils-2.19.0_1 Video Acceleration (VA) API - Utilities
ii libva-vdpau-driver-0.7.4_4 VDPAU-based backend for VA-API
ii libvde2-2.3.2_24 Virtual Distributed Ethernet - runtime libraries
ii libvdpau-1.5_1 Video Decode and Presentation API for UNIX
ii libvdpau-va-gl-0.4.2_2 VDPAU driver with VA-API/OpenGL backend
ii libvidstab-1.1.0_2 Video stabilization library
ii libvirt-9.5.0_1 Virtualization API for controlling virtualization engines
ii libvirt-glib-4.0.0_1 Glib integration with libvirt
ii libvirt-python3-9.5.0_1 Libvirt virtualization API Python3 binding
ii libvisual-0.4.1_1 Abstraction library for audio visualisation plugins
ii libvoikko-4.3.1_2 Free linguistic software and data for Finnish
ii libvorbis-1.3.7_1 The Vorbis General Audio Compression Codec
ii libvpx7-1.11.0_1 VP8 and VP9 video codec
ii libvterm-0.3.2_1 Abstract VT220/xterm/ECMA-48 emulation library
ii libwacom-2.7.0_1 Library to identify wacom tablets
ii libwavpack-5.6.0_1 Hybrid lossless audio compression - shared library
ii libwebp-1.3.1_1 WebP image format
ii libwireshark-4.0.6_1 Network protocol analyzer - library
ii libwmf-0.2.8.4_18 Library for reading and converting WMF (Windows Meta Files)
ii libwoff2common1.0.2-1.0.2_1 Web Open Font Format 2 reference implementaton - common library
ii libwoff2dec1.0.2-1.0.2_1 Web Open Font Format 2 reference implementaton - decoder library
ii libwpe-1.14.1_1 General-purpose library for WPE WebKit
ii libxbps-0.59.1_8 XBPS package system utilities - runtime library
ii libxcb-1.15_1 X protocol C-language Binding
ii libxcvt-0.1.2_1 VESA CVT standard timing modelines generator
ii libxfce4panel-4.18.4_1 Next generation panel for the XFCE desktop environment - runtime library
ii libxfce4ui-4.18.4_1 Replacement of the old libxfcegui4 library
ii libxfce4util-4.18.0_1 Utility library for the Xfce4 desktop environment
ii libxkbcommon-1.5.0_1 Library to handle keyboard descriptions
ii libxkbcommon-x11-1.5.0_1 Library to handle keyboard descriptions - X11 support
ii libxkbfile-1.1.2_1 Xkbfile Library from X.org
ii libxklavier-5.4_3 Library providing high-level API for X Keyboard Extension
ii libxml2-2.11.4_3 Library providing XML and HTML support
ii libxml2-python3-2.11.4_3 Library providing XML and HTML support - Python bindings
ii libxmlb-0.3.8_1 Library to help create and query binary XML blobs
ii libxreader-3.6.3_2 Document viewer capable of displaying formats like PDF and Postscript - shared library
ii libxshmfence-1.3_2 X Shared memory 'SyncFence' synchronization primitive
ii libxslt-1.1.38_1 XSLT parser library from the GNOME project
ii libxxHash-0.8.2_1 Fast non-cryptographic hashing algorithm - library
ii libyaml-0.2.5_1 Fast YAML 1.1 parser and emitter library
ii libzbar-0.23.1_6 Barcode reading library and application - library files
ii libzstd-1.5.5_1 Fast real-time compression algorithm
ii lightdm-1.32.0_3 Light Display Manager
ii lightdm-gtk3-greeter-2.0.8_1 Light Display Manager GTK+ Greeter (GTK+ 3.x)
ii linux-6.3_1 Linux kernel meta package
ii linux-base-2021.07.21_1 Linux kernel base dependencies
ii linux-firmware-amd-20230515_1 Binary firmware blobs for the Linux kernel - AMD CPU/GPU microcode
ii linux-firmware-broadcom-20230515_1 Binary firmware blobs for the Linux kernel - Broadcom network blobs
ii linux-firmware-intel-20230515_1 Binary firmware blobs for the Linux kernel - Intel CPU/GPU microcode
ii linux-firmware-network-20230515_1 Binary firmware blobs for the Linux kernel - network
ii linux-firmware-nvidia-20230515_1 Binary firmware blobs for the Linux kernel NVIDIA GPU microcode
ii linux-headers-6.3_1 Linux kernel headers meta package
ii linux6.3-6.3.13_1 Linux kernel and modules (6.3 series)
ii linux6.3-headers-6.3.13_1 Linux kernel and modules (6.3 series) - source headers for 3rd party modules
ii lldb-15.0.7_1 Low Level Virtual Machine - LLDB debugger
ii lm_sensors-3.6.0_1 Utilities to read temperature/voltage/fan sensors
ii lmdb-0.9.29_1 Lightning Memory-Mapped Database Manager
ii lshw-B.02.19.2_2 Hardware lister application
ii lsof-4.98.0_1 LiSt Open Files
ii lua-devel-5.3.6_1 Powerful, fast, lightweight, embeddable scripting language (5.3.x) - development files (transitional dummy package)
ii lua52-5.2.4_12 Powerful, fast, lightweight, embeddable scripting language (5.2.x)
ii lua53-5.3.6_1 Powerful, fast, lightweight, embeddable scripting language (5.3.x)
ii lua53-devel-5.3.6_1 Powerful, fast, lightweight, embeddable scripting language (5.3.x) - development files
ii luarocks-3.9.1_1 Package management for Lua modules (5.3.x) (transitional dummy package)
ii luarocks-lua53-3.9.1_1 Package management for Lua modules (5.3.x)
ii lxqt-policykit-1.3.0_1 LXQt PolicyKit agent
ii lzo-2.10_2 Portable lossless data compression library
ii m4-1.4.19_1 GNU version of UNIX m4 macro language processor
ii make-4.4.1_1 GNU Make build tool
ii man-pages-6.04_1 Linux Documentation Project (LDP) manual pages
ii man-pages-devel-6.04_1 Linux Documentation Project (LDP) manual pages - development pages
ii mathjax-3.2.2_2 JavaScript display engine for LaTeX, MathML and AsciiMath
ii mathjax2-2.7.9_1 JavaScript display engine for LaTeX, MathML and AsciiMath
ii mbedtls-2.16.12_1 Portable cryptographic TLS library
ii mcpp-2.7.2_8 Portable C preprocessor
ii mdocml-1.14.6_7 UNIX manpage compiler toolset (mandoc)
ii mesa-23.1.3_1 Open source implementation of OpenGL and Vulkan
ii mesa-dri-23.1.3_1 Mesa DRI drivers
ii mesa-vaapi-23.1.3_1 Mesa VA-API drivers
ii mesa-vdpau-23.1.3_1 Mesa VDPAU drivers
ii miniupnpc-2.2.3_1 Small UPnP client library/tool to access Internet Gateway Devices
ii minizip-1.2.13_1 Zip file manipulation library
ii mirage-0.11.1_2 Simple GTK image viewer
ii mit-krb5-libs-1.20.1_1 MIT Kerberos 5 implementation - runtime libraries
ii mkfontscale-1.2.2_1 X11 Scalable Font Index Generator
ii mlocate-0.26_7 Implementation of locate/updatedb that reuses the database
ii mobile-broadband-provider-info-20220511_1 Database of mobile broadband service providers
ii moby-24.0.4_1 Container engine for the Docker ecosystem
ii mons-0.8.2_2 Quickly manage 2-monitors display using xrandr
ii mpfr-4.2.0_1 Library for multiple-precision floating-point computations
ii mplayer-1.5_1 Multimedia player
ii mpv-0.35.1_3 Video player based on MPlayer/mplayer2
ii msgpack-4.0.0_1 Binary-based efficient object serialization library for C
ii mtdev-1.1.6_1 Multitouch Protocol Translation Library
ii mtpaint-3.50.09_2 Simple GTK painting program
ii mtr-0.95_2 Combines the functionality of traceroute and ping into one tool
ii mupdf-1.20.3_1 Lightweight PDF and XPS viewer
ii ncurses-6.4_1 System V Release 4.0 curses emulation library
ii ncurses-base-6.4_1 System V Release 4.0 curses emulation library - base terminfo files
ii ncurses-libs-6.4_1 System V Release 4.0 curses emulation library -- shared libraries
ii neovim-0.9.1_1 Fork of Vim aiming to improve user experience, plugins and GUIs
ii nerd-fonts-otf-3.0.2_1 Iconic font aggregator, collection and patcher - otf fonts
ii netcat-0.7.1_7 The GNU netcat utility
ii nettle-3.8.1_1 Low-level cryptographic library
ii network-manager-applet-1.32.0_1 NetworkManager panel applet for GNOME
ii newt-0.52.21_6 Library for color text mode, widget based user interfaces
ii nghttp2-1.54.0_1 HTTP/2 C Library
ii ninja-1.11.1_3 Small build system with a focus on speed
ii nload-0.7.4_2 Command line tool to visualize network traffic
ii nmap-7.94_1 Utility for network discovery and security auditing
ii nnn-4.8_1 Missing terminal file browser for X
ii nodejs-18.16.0_2 Evented I/O for V8 javascript
ii noto-fonts-emoji-2.038_1 Google Noto Emoji Fonts
ii noto-fonts-ttf-23.7.1_1 Google Noto TTF Fonts
ii npth-1.6_1 New portable threads library
ii nspr-4.35_1 NetScape Portable Runtime
ii nss-3.91_2 Mozilla Network Security Services
ii ntfs-3g-2022.10.3_1 Stable Read/Write NTFS Driver in userspace
ii nvi-1.81.6_19 Berkeley Vi Editor
ii ocl-icd-2.3.2_1 Generic OpenCL ICD loader/demultiplexer
ii oniguruma-6.9.8_1 Multi-charset regular expressions library
ii openconnect-9.01_1 Free client for Cisco AnyConnect SSL VPN software
ii opendoas-6.8.2_1 Portable OpenBSD doas to execute commands as another user
ii openjdk11-11.0.20+8_1 OpenJDK Java Development Kit (version 11)
ii openjdk11-jre-11.0.20+8_1 OpenJDK Java Development Kit (version 11) - runtime components
ii openresolv-3.13.2_1 Management framework for resolv.conf
ii openssh-9.3p2_1 OpenSSH free Secure Shell (SSH) client and server implementation
ii openssl-1.1.1t_1 Toolkit for Secure Sockets Layer and Transport Layer Security
ii openssl-devel-1.1.1t_1 Toolkit for Secure Sockets Layer and Transport Layer Security - development files
ii openvpn-2.6.4_1 Easy-to-use, robust, and highly configurable VPN
ii optipng-0.7.7_1 Advanced PNG Optimizer
ii opus-1.4_1 Totally open, royalty-free, highly versatile audio codec
ii orc-0.4.33_1 Oild Runtime Compiler
ii os-prober-1.81_1 Utility to detect other OSes on a set of drives
ii osinfo-db-20230518_1 Osinfo database about operating systems
ii ostree-2023.5_1 Operating system and container binary deployment and upgrades
ii p11-kit-0.25.0_1 Provides a way to load and enumerate PKCS#11 modules
ii pa-applet-0.0.0.20140304_2 PulseAudio system tray applet with volume bar
ii pam-1.5.2_2 Flexible mechanism for authenticating users
ii pam-base-0.4_2 PAM base configuration files
ii pam-libs-1.5.2_2 Flexible mechanism for authenticating users - runtime libraries
ii pango-1.50.14_1 Library for layout and rendering of text
ii pangomm-2.46.2_1 C++ bindings for the pango library
ii pangomm2.48-2.50.0_1 C++ bindings for the pango library
ii paprefs-1.2_1 Editor for pulseaudio settings
ii parted-3.6_1 GNU Parted disk partition resizing program
ii patch-2.7.6_4 Patch files using diff output
ii pavucontrol-5.0_2 PulseAudio Volume Control
ii pcaudiolib-1.2_1 Portable C Audio Library
ii pciutils-3.10.0_1 PCI bus related utilities
ii perl-5.36.1_1 Practical Extraction and Report Language
ii perl-Authen-SASL-2.16_5 Authen::SASL -- SASL authentication framework
ii perl-CGI-4.57_1 Handle Common Gateway Interface requests and responses
ii perl-Capture-Tiny-0.48_2 Capture STDOUT and STDERR from Perl, XS or external programs
ii perl-Convert-BinHex-1.125_3 Perl module to extract data from Macintosh BinHex files
ii perl-Digest-HMAC-1.04_1 Perl interface to HMAC message-digest algorithms
ii perl-Encode-Locale-1.05_3 Encode::Locale - Determine the locale encoding
ii perl-File-Listing-6.14_1 File::Listing - parse directory listing
ii perl-HTML-Form-6.09_1 HTML::Form - Class that represents an HTML form element
ii perl-HTML-Parser-3.76_2 HTML::Parser - HTML parser class
ii perl-HTML-Tagset-3.20_8 HTML::Tagset - data tables useful in parsing HTML
ii perl-HTML-Tree-5.07_4 Functions that construct a HTML syntax tree
ii perl-HTTP-CookieJar-0.014_1 HTTP-CookieJar - A minimalist HTTP user agent cookie jar
ii perl-HTTP-Cookies-6.10_1 HTTP::Cookies - HTTP cookie jars
ii perl-HTTP-Daemon-6.16_1 HTTP::Daemon - a simple HTTP server class
ii perl-HTTP-Date-6.05_2 HTTP::Date - date conversion routines
ii perl-HTTP-Message-6.44_1 HTTP::Message - HTTP style message (base class)
ii perl-HTTP-Negotiate-6.01_6 HTTP::Negotiate - choose a variant to serve
ii perl-HTTP-Response-Encoding-0.06_4 HTTP::Response::Encoding - Adds encoding() to HTTP::Response
ii perl-HTTP-Server-Simple-0.52_3 HTTP::Server::Simple - Lightweight HTTP server
ii perl-IO-HTML-1.004_1 Open an HTML file with automatic charset detection
ii perl-IO-Socket-SSL-2.083_1 IO::Socket::SSL -- SSL sockets with IO::Socket interface
ii perl-IO-stringy-2.113_2 IO::stringy -- I/O on in-core objects like strings/arrays
ii perl-LWP-6.71_1 LWP - The World-Wide Web library for Perl (libwww-perl)
ii perl-LWP-MediaTypes-6.04_2 LWP::MediaTypes - guess media type for a file or a URL
ii perl-LWP-Protocol-https-6.11_1 LWP::Protocol::https - Provide https support for LWP::UserAgent
ii perl-MIME-tools-5.510_1 MIME-tools -- Parses streams to create MIME entities
ii perl-MailTools-2.21_3 MailTools -- Various e-mail related modules
ii perl-Module-Build-0.4234_1 Module::Build - Build and install Perl modules
ii perl-Net-HTTP-6.21_1 Net::HTTP - Low-level HTTP connection (client)
ii perl-Net-SMTP-SSL-1.04_3 Net::SMTP::SSL -- SSL support for Net::SMTP
ii perl-Net-SSLeay-1.92_2 Net::SSLeay - Perl extension for using OpenSSL
ii perl-Path-Tiny-0.144_1 Path::Tiny - File path utility
ii perl-Sub-Uplevel-0.2800_3 Sub::Uplevel - apparently run a function in a higher stack frame
ii perl-Test-Output-1.031_4 Test::Output - Utilities to test STDOUT and STDERR messages
ii perl-Test-Warn-0.36_2 Test::Warn - Perl extension to test methods for warnings
ii perl-TimeDate-2.33_2 TimeDate -- Date formating subroutines
ii perl-Tk-804.036_2 Tk graphical interface for Perl
ii perl-Try-Tiny-0.31_1 Try::Tiny - Minimal try/catch with proper preservation of $@
ii perl-URI-5.19_1 Perl Uniform Resource Identifiers class (URI, RFC 2396)
ii perl-WWW-Mechanize-2.17_1 WWW::Mechanize - Handy web browsing in a Perl object
ii perl-WWW-RobotRules-6.02_6 WWW::RobotRules - database of robots.txt-derived permissions
ii phodav-3.0_2 GNOME Web Dav implementation
ii picom-10.2_1 Lightweight compositor for X11 (previously a compton fork)
ii pinentry-1.2.1_1 PIN or passphrase entry dialogs for GnuPG
ii pinentry-gtk-1.2.1_1 PIN or passphrase entry dialogs for GnuPG based on GTK+
ii pixman-0.42.2_1 Library of low-level pixel manipulation routines
ii pkcs11-helper-1.29.0_1 Library to help simplify interacting with PKCS#11 providers
ii pkg-config-0.29.2_3 System for managing library compile/link flags
ii pnpm-8.6.9_1 Fast, disk space efficient package manager
ii polkit-121_1 Authorization Toolkit
ii polkit-qt5-0.114.0_1 Qt-style PolicyKit API (Qt5)
ii polybar-3.6.3_1 Fast and easy-to-use status bar
ii poppler-23.05.0_1 PDF rendering library
ii poppler-data-0.4.12_1 Encoding data for the poppler PDF rendering library
ii poppler-glib-23.05.0_1 PDF rendering library - GLib bindings
ii popt-1.19_1 Command line option parsing library
ii portaudio-190600.20161030_6 Portable cross-platform audio I/O library
ii powerstat-0.03.03_1 Measures the power consumption using the ACPI battery information
ii powertop-2.15_2 Tool to diagnose issues with power consumption and power management
ii pqiv-2.12_1 Powerful quick image viewer
ii procps-ng-4.0.3_1 Utilities for monitoring your system and its processes
ii procs-0.14.0_1 Modern replacement for ps written in Rust
ii progress-0.16_1 Tool for showing the progress of cp, rm, dd and more
ii protobuf-devel-23.4_1 Protocol buffers C++ library - development files
ii pulseaudio-15.0_4 Featureful, general-purpose sound server
ii pulseaudio-utils-15.0_4 Featureful, general-purpose sound server - utilities
ii pulsemixer-1.5.1_2 CLI and curses mixer for Pulseaudio
ii pv-1.7.0_1 Monitor the progress of data through a pipeline
ii pygtk-2.24.0_14 Python bindings for the GTK+ toolkit
ii python-2.7.18.7_3 Interpreted, interactive, object-oriented programming language
ii python-cairo-1.18.2_2 Python2 bindings for the cairo graphics library
ii python-futures-3.2.0_1 Backport of the concurrent.futures package from Python 3.2
ii python-gobject2-2.28.7_2 Python2 bindings for GObject (GLib 2.x)
ii python-greenlet-0.4.15_3 Lightweight in-process concurrent programming (Python2)
ii python-msgpack-1.0.0_2 Python module for Msgpack serializer (Python2)
ii python-neovim-0.3.2_2 Python2 client for Neovim
ii python-six-1.16.0_3 Python 2 and 3 compatibility utilities (Python2)
ii python-trollius-2.2_1 Infrastructure for writing single-threaded concurrent code (Python2)
ii python3-3.11.4_1 Python programming language (3.11 series)
ii python3-BeautifulSoup4-4.12.2_1 Python3 HTML/XML parser
ii python3-Brotli-1.0.9_2 Python bindings for the Brotli compression library
ii python3-Markdown-3.4.3_1 Python3 implementation of John Gruber's Markdown
ii python3-Pillow-10.0.0_1 Python Imaging Library (PIL) for for Python3
ii python3-PyAudio-0.2.12_2 Python3 Bindings for PortAudio, a cross-platform audio IO library
ii python3-PyQt5-5.15.9_1 Python 3 bindings for the Qt5 toolkit
ii python3-PyQt5-webchannel-5.15.9_1 Python 3 bindings for the Qt5 toolkit - webchannel module
ii python3-PyQt5-webengine-5.15.6_2 Python 3 bindings for the Qt5 toolkit - webengine module
ii python3-Pygments-2.15.1_1 Generic syntax highlighter written in Python
ii python3-SQLAlchemy-1.3.18_5 SQL Toolkit and Object Relational Mapper for Python3
ii python3-SecretStorage-3.3.1_3 Python3 bindings to FreeDesktop.org Secret Service API
ii python3-alsa-1.1.6_6 Official Python bindings for ALSA
ii python3-apsw-3.39.3.0_2 Another Python SQLite Wrapper (Python3)
ii python3-argcomplete-3.1.1_1 Bash tab completion for argparse
ii python3-asttokens-2.2.1_1 Annotate Python AST with source text and token information
ii python3-async-timeout-3.0.1_5 Timeout context manager for asyncio programs
ii python3-attrs-23.1.0_1 Attributes without boilerplate (Python3)
ii python3-backcall-0.2.0_6 Python3 module to write backwards compatible callback APIs
ii python3-bcc-0.28.0_1 BPF-based Linux IO analysis, networking, monitoring, and more - Python 3 module
ii python3-cairo-1.23.0_1 Python3 bindings for the cairo graphics library
ii python3-cchardet-2.1.7_3 Universal encoding detector faster than chardet
ii python3-cffi-1.15.1_2 C foreign function interface for Python3
ii python3-chardet-5.1.0_1 Universal encoding detector
ii python3-charset-normalizer-3.1.0_1 Encoding and language detection
ii python3-colorama-0.4.6_1 Cross-platform colored terminal text (Python3)
ii python3-cryptography-41.0.2_1 Python3 library that provides cryptographic recipes and primitives
ii python3-css-parser-1.0.8_1 CSS related utilities (Python3)
ii python3-cssselect-1.1.0_7 CSS selectors for Python3
ii python3-dateutil-2.8.2_2 Extensions to the standard Python3 datetime module
ii python3-dbus-1.2.18_3 D-Bus Python3 bindings
ii python3-decorator-5.1.1_2 Python3 decorator module
ii python3-defusedxml-0.7.1_1 Defusing XML bombs and other exploits (Python3)
ii python3-dnspython-2.1.0_3 DNS toolkit for Python3
ii python3-executing-1.2.0_1 Get information about what a Python frame is currently doing
ii python3-feedparser-6.0.8_3 Parse Atom and RSS feeds in Python3
ii python3-gobject-3.44.0_1 Python3 bindings for GObject
ii python3-gpg-1.10.0_10 Python3 bindings for GPGME GnuPG cryptography library
ii python3-greenlet-2.0.2_1 Lightweight in-process concurrent programming
ii python3-html2text-2020.1.16_5 HTML to Markdown-formatted text converter
ii python3-html5-parser-0.4.10_2 Fast C-based HTML5 parsing (Python3)
ii python3-html5lib-1.1_3 Python3 HTML parser based on the WHATWG HTML5 specification
ii python3-idna-3.4_2 Internationalized Domain Names in Applications (IDNA) for Python3
ii python3-ifaddr-0.1.7_4 Enumerates all IP addresses on all network adapters of the system
ii python3-importlib_metadata-6.7.0_1 Read metadata from python3 packages
ii python3-inflate64-0.3.1_1 Deflate64 compression/decompression library
ii python3-ipython-8.14.0_1 Enhanced interactive Python3 shell
ii python3-jaraco.classes-3.2.1_2 Utility functions for Python class constructs (Python3)
ii python3-jedi-0.18.2_1 Autocompletion/static analysis library for Python 3
ii python3-jeepney-0.8.0_2 Low-level, pure Python DBus protocol wrapper
ii python3-jsonpointer-2.3_1 Resolve JSON Pointers according to RFC 6901 (Python3)
ii python3-jsonschema-4.17.3_2 Implementation of JSON Schema for Python3
ii python3-keyring-24.2.0_1 Python interface to the system keyring service
ii python3-libtmux-0.15.10_1 Python binding for tmux
ii python3-lxml-4.9.2_1 Python binding for the libxml2 and libxslt libraries
ii python3-markdown-it-3.0.0_1 Python port of the JavaScript mardown-it package
ii python3-markdown2-2.4.0_4 Fast and complete implementation of Markdown in Python3
ii python3-matplotlib-inline-0.1.6_2 Inline Matplotlib backend for Jupyter
ii python3-mdurl-0.1.2_1 Python port of the JavaScript mdurl package
ii python3-mechanize-0.4.7_2 Stateful programmatic web browsing (Python3)
ii python3-more-itertools-9.1.0_1 More Python3 routines for operating on itertables
ii python3-mpv-1.0.3_1 Python3 interface to the MPV media player
ii python3-msgpack-1.0.5_1 Python module for Msgpack serializer
ii python3-multidict-5.1.0_4 Multidict implementation from aiohttp
ii python3-multivolumefile-0.2.3_2 Multi volume file wrapper
ii python3-neovim-0.4.3_3 Python3 client for Neovim
ii python3-netifaces-0.11.0_4 Python3 library to retrieve information about network interfaces
ii python3-packaging-23.1_1 Core utilities for Python packages (Python3)
ii python3-parsing-3.1.0_1 Python parsing module
ii python3-parso-0.8.3_2 Python parser (Python 3)
ii python3-pexpect-4.8.0_3 Python3 module for spawning child applications and controlling them
ii python3-pickleshare-0.7.5_6 Small shelve-like datastore with concurrency support (Python3)
ii python3-pip-23.2_1 PyPA recommended tool for installing PyPI packages (Python3)
ii python3-ply-3.11_7 Lex and Yacc for Python3
ii python3-prompt_toolkit-3.0.39_1 Python3 library for building powerful interactive command lines
ii python3-psutil-5.9.5_1 Cross-platform process and system utilities module for Python3
ii python3-ptyprocess-0.7.0_3 Run a subprocess in a pseudo terminal (Python3)
ii python3-pure_eval-0.2.2_2 Safely evaluate Python AST nodes without side effects
ii python3-py7zr-0.20.5_1 7zip in python3 with various compressions, and AES encryption
ii python3-pybcj-1.0.1_2 BCJ(Branch-Call-Jump) filter for python
ii python3-pychm-0.8.6_4 Python3 bindings for CHMLIB
ii python3-pycparser-2.21_1 Complete C99 parser in pure Python (Python3)
ii python3-pycryptodome-3.17_1 Python3 package of low-level cryptographic primitives
ii python3-pycryptodomex-3.16.0_1 Pycryptodome equivalent that installs under the 'Cryptodome' name
ii python3-pyppmd-1.0.0_2 Python interface for PPM variation H and I.2
ii python3-pyqt6-6.5.0_1 Python 3 bindings for Qt6
ii python3-pyqt6-dbus-6.5.0_1 Python 3 bindings for Qt6 - DBus
ii python3-pyqt6-declarative-6.5.0_1 Python 3 bindings for Qt6 - Declarative
ii python3-pyqt6-gui-6.5.0_1 Python 3 bindings for Qt6 - GUI
ii python3-pyqt6-network-6.5.0_1 Python 3 bindings for Qt6 - Network
ii python3-pyqt6-opengl-widgets-6.5.0_1 Python 3 bindings for Qt6 - OpenGL Widgets
ii python3-pyqt6-printsupport-6.5.0_1 Python 3 bindings for Qt6 - Print Support
ii python3-pyqt6-sip-13.5.1_1 PyQt6 SIP bindings with C and C++ for Python 3
ii python3-pyqt6-svg-6.5.0_1 Python 3 bindings for Qt6 - svg
ii python3-pyqt6-webchannel-6.5.0_1 Python 3 bindings for Qt6 - WebChannel
ii python3-pyqt6-webengine-6.5.0_1 Python 3 bindings for Qt6 - WebEngine
ii python3-pyqt6-widgets-6.5.0_1 Python 3 bindings for Qt6 - Widgets
ii python3-pyrsistent-0.19.3_1 Python persistent immutable data structures
ii python3-pysocks-1.7.0_5 Python3 SOCKS client module
ii python3-pyzstd-0.15.7_1 Python bindings to zstd, API is similar to bz2/lzma/zlib module
ii python3-regex-2023.6.3_1 Alternative regular expression module (Python3)
ii python3-requests-2.28.2_1 Python3 HTTP library for human beings
ii python3-requests-toolbelt-1.0.0_1 Utilities for advanced use of python-requests (Python3)
ii python3-rfc3339-validator-0.1.4_1 Pure python RFC3339 validator
ii python3-rfc3986-validator-0.1.1_1 Pure python RFC3986 validator
ii python3-rich-13.4.2_1 Library for rich text and beautiful formatting in the terminal
ii python3-send2trash-1.8.0_2 Python3 library to natively send files to trash
ii python3-setuptools-68.0.0_1 Easily build and distribute Python3 packages
ii python3-sgmllib-1.0.0_3 Port of sgmllib for Python3
ii python3-sip-PyQt5-12.12.1_1 Python 3 PyQt5 SIP bindings with C and C++
ii python3-six-1.16.0_3 Python 2 and 3 compatibility utilities (Python3)
ii python3-soupsieve-2.4.1_1 CSS4 selector implementation for Python3 Beautiful Soup
ii python3-stack_data-0.6.2_1 Module to extract data from Python stack frames and tracebacks
ii python3-texttable-1.6.4_2 Python3 module for creating simple ASCII tables
ii python3-tmuxp-1.18.2_1 Session manager for tmux
ii python3-traitlets-5.9.0_2 Configuration system for Python applications
ii python3-urllib3-1.26.12_1 HTTP library with thread-safe connection pooling
ii python3-urwid-2.1.2_4 Console user interface library for Python3
ii python3-wcwidth-0.2.6_1 Measures no. of terminal column cells of wide-character codes
ii python3-webencodings-0.5.1_8 Python3 implementation of the WHATWG Encoding standard
ii python3-yaml-6.0_2 YAML parser and emitter for Python 3