-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpkglist.txt
executable file
·1542 lines (1542 loc) · 19 KB
/
pkglist.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
a2ps
a52dec
aalib
accountsservice
acl
adobe-source-code-pro-fonts
adwaita-icon-theme
alacritty
alsa-card-profiles
alsa-firmware
alsa-lib
alsa-plugins
alsa-topology-conf
alsa-ucm-conf
alsa-utils
aom
archlinux-keyring
archlinux-nix
argon2
asciidoc
asoundconf
aspell
assimp
at-spi2-atk
at-spi2-core
atk
atkmm
atool
attr
audit
autoconf
automake
autotiling-git
avahi
bash
bc
bemenu
bemenu-wayland
biber
binutils
bison
blas
bluez
bluez-libs
bmake
bolt
boost-libs
brightnessctl
brother-mfc-l8900cdw
brotli
btrfs-progs
bubblewrap
bzip2
c-ares
ca-certificates
ca-certificates-mozilla
ca-certificates-utils
cabal-install
cadence
cairo
cairomm
cantarell-fonts
cblas
cdparanoia
celt
chafa
check
chromaprint
chrome-gnome-shell-git
chrono-date
cifs-utils
clang
clang13
clementine
clutter
clutter-gst
clutter-gtk
cmake
cmark-gfm
cogl
colord
colord-gtk
colord-gtk-common
colord-gtk4
compiler-rt
confuse
coreutils
cracklib
crypto++
cryptsetup
ctags
cups
cups-filters
cups-pk-helper
curl
dav1d
db
dbus
dbus-glib
dbus-python
dconf
dconf-editor
desktop-file-utils
device-mapper
dhclient
dhcpcd
dialog
diffutils
djvulibre
dmenu
dmidecode
dmraid
dnssec-anchors
docbook-xml
docbook-xsl
doctest
dosfstools
dotnet-host
dotnet-runtime
dotnet-sdk
dotnet-targeting-pack
double-conversion
drivesync-git
duktape
e2fsprogs
efibootmgr
efivar
elfutils
ell
enchant
exempi
exiv2
expat
faac
faad2
fakeroot
fasd
fcft
fd
feh
ffcall
fff
ffmpeg
ffmpeg4.4
ffmpegthumbnailer
fftw
file
filesystem
findutils
fish
flac
flashfocus-git
flashrom
flex
fmt
fontconfig
foomatic-db-gutenprint-ppds
foot
freeglut
freerdp
freetype2
fribidi
ftgl
fuse-common
fuse2
fuse3
fwupd
fwupd-efi
fzf
gawk
gc
gcab
gcc
gcc-libs
gcr
gd
gdbm
gdk-pixbuf2
gdm
geoclue
geocode-glib
gettext
ghc-libs
ghostscript
giflib
girara
git
gitui
gjs
glew
glib-networking
glib2
glibc
glibmm
glm
glslang
glu
gmp
gnome-autoar
gnome-bluetooth
gnome-bluetooth-3.0
gnome-color-manager
gnome-control-center
gnome-desktop
gnome-desktop-4
gnome-desktop-common
gnome-disk-utility
gnome-epub-thumbnailer
gnome-keyring
gnome-online-accounts
gnome-session
gnome-settings-daemon
gnome-shell
gnome-shell-extension-material-shell-git
gnome-terminal
gnome-themes-extra
gnome-tweaks
gnupg
gnutls
go
gobject-introspection-runtime
goocanvas
google-chrome-dev
gparted
gperf
gpgme
gpm
gptfdisk
graphene
graphicsmagick
graphite
grep
grilo
grim
groff
grub
gsettings-desktop-schemas
gsettings-qt
gsl
gsm
gsound
gspell
gst-plugin-pipewire
gst-plugins-bad-libs
gst-plugins-base
gst-plugins-base-libs
gst-plugins-good
gstreamer
gtest
gtk-layer-shell
gtk-update-icon-cache
gtk2
gtk3
gtk4
gtkmm3
guile
gumbo-parser
gupnp-dlna
gutenprint
gvfs
gvfs-goa
gvfs-google
gzip
harfbuzz
harfbuzz-icu
haskell-adjunctions
haskell-aeson
haskell-aeson-pretty
haskell-alsa-core
haskell-alsa-mixer
haskell-ansi-terminal
haskell-appar
haskell-asn1-encoding
haskell-asn1-parse
haskell-asn1-types
haskell-assoc
haskell-async
haskell-attoparsec
haskell-base-compat
haskell-base-compat-batteries
haskell-base-orphans
haskell-base16-bytestring
haskell-base64-bytestring
haskell-basement
haskell-bifunctors
haskell-bitarray
haskell-blaze-builder
haskell-blaze-html
haskell-blaze-markup
haskell-byteable
haskell-byteorder
haskell-call-stack
haskell-case-insensitive
haskell-cereal
haskell-citeproc
haskell-cmark-gfm
haskell-cmdargs
haskell-colour
haskell-commonmark
haskell-commonmark-extensions
haskell-commonmark-pandoc
haskell-comonad
haskell-conduit
haskell-conduit-extra
haskell-connection
haskell-contravariant
haskell-cookie
haskell-cryptohash-sha256
haskell-cryptonite
haskell-data-default
haskell-data-default-class
haskell-data-default-instances-containers
haskell-data-default-instances-dlist
haskell-data-default-instances-old-locale
haskell-data-fix
haskell-dbus
haskell-digest
haskell-distributive
haskell-dlist
haskell-doclayout
haskell-doctemplates
haskell-echo
haskell-ed25519
haskell-edit-distance
haskell-emojis
haskell-erf
haskell-errors
haskell-extensible-exceptions
haskell-file-embed
haskell-free
haskell-ghc-bignum-orphans
haskell-glob
haskell-hackage-security
haskell-haddock-library
haskell-hashable
haskell-hinotify
haskell-hourglass
haskell-hslua
haskell-hslua-aeson
haskell-hslua-classes
haskell-hslua-core
haskell-hslua-marshalling
haskell-hslua-module-doclayout
haskell-hslua-module-path
haskell-hslua-module-system
haskell-hslua-module-text
haskell-hslua-module-version
haskell-hslua-objectorientation
haskell-hslua-packaging
haskell-hsyaml
haskell-http
haskell-http-client
haskell-http-client-tls
haskell-http-conduit
haskell-http-types
haskell-hxt
haskell-hxt-charproperties
haskell-hxt-regex-xmlschema
haskell-hxt-unicode
haskell-indexed-traversable
haskell-indexed-traversable-instances
haskell-integer-logarithms
haskell-invariant
haskell-iproute
haskell-ipynb
haskell-iwlib
haskell-jira-wiki-markup
haskell-juicypixels
haskell-kan-extensions
haskell-lens
haskell-lexer
haskell-libmpd
haskell-libyaml
haskell-lpeg
haskell-lua
haskell-lukko
haskell-memory
haskell-mime-types
haskell-monad-loops
haskell-mono-traversable
haskell-netlink
haskell-network
haskell-network-uri
haskell-old-locale
haskell-old-time
haskell-onetuple
haskell-pandoc-lua-marshal
haskell-pandoc-types
haskell-parallel
haskell-parsec-numbers
haskell-pem
haskell-pretty-hex
haskell-pretty-show
haskell-primitive
haskell-profunctors
haskell-quickcheck
haskell-random
haskell-reflection
haskell-regex-base
haskell-regex-compat
haskell-regex-pcre
haskell-regex-posix
haskell-resolv
haskell-resourcet
haskell-safe
haskell-safe-exceptions
haskell-scientific
haskell-semigroupoids
haskell-sha
haskell-skylighting
haskell-skylighting-core
haskell-socks
haskell-split
haskell-splitmix
haskell-statevar
haskell-streaming-commons
haskell-strict
haskell-syb
haskell-tagged
haskell-tagsoup
haskell-tar
haskell-temporary
haskell-texmath
haskell-text-conversions
haskell-text-icu
haskell-th-abstraction
haskell-th-compat
haskell-th-lift
haskell-th-lift-instances
haskell-these
haskell-time-compat
haskell-time-locale-compat
haskell-timezone-olson
haskell-timezone-series
haskell-tls
haskell-transformers-base
haskell-transformers-compat
haskell-typed-process
haskell-unicode-collation
haskell-unicode-data
haskell-unicode-transforms
haskell-uniplate
haskell-unliftio-core
haskell-unordered-containers
haskell-utf8-string
haskell-uuid-types
haskell-vector
haskell-vector-algorithms
haskell-void
haskell-x11
haskell-x11-xft
haskell-x509
haskell-x509-store
haskell-x509-system
haskell-x509-validation
haskell-xml
haskell-xml-conduit
haskell-xml-types
haskell-yaml
haskell-zip-archive
haskell-zlib
hicolor-icon-theme
hidapi
hspell
htop
http-parser
hunspell
hwdata
hwloc
hyphen
i3status
i3status-rust-git
iana-etc
icu
iio-sensor-proxy
ijs
imagemagick
imlib2
inetutils
iniparser
inkscape
inotify-tools
intel-gmmlib
intel-media-driver
intltool
iotop
iproute2
iptables
iputils
iso-codes
iwd
jack2
jack2-dbus
jansson
jasper
java-environment-common
java-runtime-common
jbig2dec
jdk-openjdk
jemalloc
jfsutils
jq
jre-openjdk
jre-openjdk-headless
js60
js78
js91
json-c
json-glib
jsoncpp
kbd
keyutils
kitty
kitty-shell-integration
kitty-terminfo
kmod
krb5
kwayland
kwindowsystem
l-smash
lame
lapack
lcms2
ldb
ldns
less
lf-git
lib2geom
lib32-alsa-lib
lib32-alsa-plugins
lib32-brotli
lib32-bzip2
lib32-curl
lib32-e2fsprogs
lib32-expat
lib32-gcc-libs
lib32-glibc
lib32-icu
lib32-keyutils
lib32-krb5
lib32-libcap
lib32-libdrm
lib32-libelf
lib32-libffi
lib32-libgcrypt
lib32-libglvnd
lib32-libgpg-error
lib32-libidn2
lib32-libldap
lib32-libpciaccess
lib32-libpsl
lib32-libssh2
lib32-libtasn1
lib32-libtirpc
lib32-libunistring
lib32-libunwind
lib32-libva
lib32-libvdpau
lib32-libx11
lib32-libxau
lib32-libxcb
lib32-libxcrypt
lib32-libxdamage
lib32-libxdmcp
lib32-libxext
lib32-libxfixes
lib32-libxml2
lib32-libxrandr
lib32-libxrender
lib32-libxshmfence
lib32-libxss
lib32-libxxf86vm
lib32-llvm
lib32-llvm-libs
lib32-lm_sensors
lib32-mesa
lib32-ncurses
lib32-nspr
lib32-nss
lib32-openssl
lib32-p11-kit
lib32-pam
lib32-readline
lib32-sqlite
lib32-systemd
lib32-vulkan-icd-loader
lib32-vulkan-intel
lib32-wayland
lib32-xz
lib32-zlib
lib32-zstd
libadwaita
libaio
libappindicator-gtk3
libarchive
libart-lgpl
libass
libassuan
libasyncns
libatasmart
libatomic_ops
libavc1394
libavif
libb2
libblockdev
libbluray
libbpf
libbsd
libbytesize
libcaca
libcanberra
libcap
libcap-ng
libcbor
libcddb
libcdio
libcdio-paranoia
libcdr
libcheese
libclc
libcloudproviders
libcolord
libcroco
libcue
libcups
libdaemon
libdatrie
libdbusmenu-glib
libdbusmenu-gtk3
libdca
libde265
libdrm
libdv
libdvbpsi
libdvdnav
libdvdread
libebml
libedit
libelf
libepoxy
libevdev
libevent
libexif
libfdk-aac
libffi
libfontenc
libfreeaptx
libftdi
libgcrypt
libgdata
libgdm
libgexiv2
libgit2
libglade
libglvnd
libgnomecanvas
libgnomekbd
libgpg-error
libgpod
libgrss
libgsf
libgssglue
libgtop
libgudev
libgusb
libgweather
libgweather-4
libgxps
libhandy
libheif
libibus
libical
libice
libid3tag
libidn
libidn2
libiec61883
libimagequant
libimobiledevice
libindicator-gtk3
libinih
libinput
libiptcdata
libisl
libjcat
libjpeg-turbo
libksba
liblastfm-qt5
libldac
libldap
liblouis
liblqr
libluv
libmad
libmalcontent
libmanette
libmatroska
libmbim
libmd
libmfx
libmm-glib
libmng
libmnl
libmodplug
libmp4v2
libmpc
libmpcdec
libmpdclient
libmpeg2
libmtp
libmygpo-qt5
libnautilus-extension
libndp
libnet
libnetfilter_conntrack
libnewt
libnfnetlink
libnftnl
libnghttp2
libnl
libnm
libnma
libnma-common
libnma-gtk4
libnotify
libnsl
liboauth
libogg
libomxil-bellagio
libopenaptx
libosinfo
libp11-kit
libpaper
libpcap
libpciaccess
libpeas
libpgm
libpipeline
libplacebo
libplist
libpng
libportal
libportal-gtk3
libproxy
libpsl
libptytty
libpulse
libpwquality
libqmi
libqrtr-glib
libqtxdg
libraqm
libraw1394
librevenge
librsvg
librsync
libsamplerate
libsasl
libseccomp
libsecret
libshout
libsigc++
libsigsegv
libsm
libsmbios
libsndfile
libsodium
libsoup
libsoup3
libsoxr
libspectre
libssh
libssh2
libstemmer
libsynctex
libsysprof-capture
libtar
libtasn1
libteam
libtermkey
libthai
libtheora
libtiff
libtirpc
libtool
libucl-git
libunistring
libunwind
libupnp
liburcu
libusb
libusb-compat
libusbmuxd
libutempter
libutf8proc
libuv
libva
libvdpau
libverto
libvisio
libvisual
libvoikko
libvorbis
libvpx
libvterm
libvterm01
libwacom
libwebp
libwpd
libwpe
libwpg
libx11
libxau
libxaw
libxcb
libxcomp
libxcomposite
libxcrypt
libxcursor
libxcvt
libxdamage
libxdg-basedir
libxdmcp
libxext
libxfce4util
libxfixes
libxfont2
libxft
libxi
libxinerama
libxkbcommon
libxkbcommon-x11
libxkbfile
libxklavier
libxml2
libxmlb
libxmu
libxpm
libxrandr
libxrender
libxshmfence
libxslt
libxss
libxt
libxtst
libxv
libxxf86vm
libyaml
libyuv
libzip
licenses
lilv
linux
linux-api-headers
linux-firmware
linux-firmware-whence
lld
llvm
llvm-libs
llvm13-libs
lm_sensors
lmdb
logrotate
lsb-release
lsof
lttng-ust
lua
lua-lpeg
lua52
lua53
lua53-lpeg
luajit
lv2
lvm2
lz4
lzo
m4
mailcap
make
man-db
man-pages
maven
mbedtls
md4c
mdadm
media-player-info
mesa
mesa-demos
meson
minizip
mkinitcpio
mkinitcpio-busybox
mlocate
mobile-broadband-provider-info
mosh
mozilla-common
mpfr
mpg123
mpv
msgpack-c
mtdev
mtools
mtr
mujs
mupdf
mutter
nano
nautilus
ncurses
ndctl
neovide
neovim
net-tools
netctl
netstandard-targeting-pack
nettle
networkmanager
ninja
njconnect
nm-connection-editor
node-gyp
nodejs
nodejs-nopt
npm
npth
nspr
nss
numactl
nx-x11
nxagent
ocl-icd
oh-my-posh-bin
oniguruma
openal
opencore-amr
openjpeg2
openmpi
openpmix
openresolv
openssh
openssl
openssl-1.0
opus
orc
os-prober
osinfo-db
otf-fira-code-onum-patch
p11-kit
packup
pacman
pacman-mirrorlist
pam
pambase
pamixer
pandoc
pango
pangomm
paper
parted
paru
patch
pavucontrol
pciutils
pcre
pcre2
pcsclite
perl
perl-alien-build
perl-alien-libxml2
perl-autovivification
perl-b-hooks-endofscope
perl-business-isbn
perl-business-isbn-data
perl-business-ismn
perl-business-issn
perl-capture-tiny
perl-class-accessor
perl-class-data-inheritable
perl-class-factory-util
perl-class-inspector
perl-class-load
perl-class-singleton
perl-clone
perl-config-simple
perl-data-compare
perl-data-dump
perl-data-optlist
perl-data-uniqid
perl-datetime
perl-datetime-calendar-julian
perl-datetime-format-builder
perl-datetime-format-strptime
perl-datetime-locale
perl-datetime-timezone
perl-dbd-sqlite
perl-dbi
perl-devel-stacktrace
perl-dist-checkconflicts
perl-encode-locale
perl-error