-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackages.txt
1607 lines (1607 loc) · 19.2 KB
/
packages.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
a52dec
aalib
accounts-qml-module
accountsservice
ack
acl
acpid
adapta-gtk-theme
adobe-source-code-pro-fonts
adwaita-icon-theme
aic94xx-firmware
alsa-firmware
alsa-lib
alsa-plugins
alsa-topology-conf
alsa-ucm-conf
alsa-utils
ant
aom
apm
apr
apr-util
aqemu
arandr
archlinux-keyring
argon2
aria2
aribb24
arm-none-eabi-binutils
arm-none-eabi-gcc
arm-none-eabi-gdb
arm-none-eabi-newlib
arpack
asar
aspell
at-spi2-atk
at-spi2-core
atk
atkmm
atom
attica
attr
audiofile
audit
autoconf
autoconf-archive
automake
avahi
axel
bash
bbswitch
bc
bdf-unifont
binutils
bison
blas
bluedevil
blueman
bluez
bluez-hcitool
bluez-hid2hci
bluez-libs
bluez-plugins
bluez-qt
bluez-tools
bluez-utils
boost
boost-libs
breeze-icons
brltty
brotli
btrfs-progs
bubblewrap
busybox
byzanz
bzip2
c-ares
ca-certificates
ca-certificates-mozilla
ca-certificates-utils
cairo
cairomm
cantarell-fonts
cblas
cdparanoia
celt0.5.1
cifs-utils
cln
clucene
clutter
clutter-gtk
cmake
cmark-gfm
code
codimd-bin
cogl
colord
compiler-rt
confuse
convertlit
coreutils
cracklib
create_ap
cryptsetup
ctags
cups
cups-filters
cups-pdf
cups-pk-helper
curl
cvc4
cython
d-feet
dav1d
db
dbus
dbus-glib
dconf
deepin-menu
deepin-qt-dbus-factory
deepin-qt5dxcb-plugin
deepin-qt5integration
deepin-screenshot
deepin-shortcut-viewer
deepin-turbo
dep
desktop-file-utils
device-mapper
dhcpcd
diffutils
discount
djvulibre
dkms
dmidecode
dmraid
dnsmasq
dnssec-anchors
docbook-xml
docbook-xsl
dosfstools
dotconf
double-conversion
doxygen
drawio-batch
drawio-desktop
dtkcore
dtkwidget
dtkwm
e2fsprogs
ebook-tools
ed
efibootmgr
efivar
egl-wayland
eglexternalplatform
electron
electron4
electron6
electron7
elfutils
enca
enchant
entr
eog
eog-plugins
ethtool
evince
exempi
exiv2
expac
expat
expect
faac
faad2
fakeroot
ffmpeg
ffmpegthumbnailer
fftw
file
filesystem
findutils
firefox
flac
flex
fluidsynth
fontconfig
freeglut
freetype2
frei0r-plugins
fribidi
fuse-common
fuse2
fuse3
fzf
gamin
gavl
gawk
gc
gcc
gcc-gcj-ecj
gcc-libs
gcc6
gcc6-fortran
gcc6-gcj
gcc6-libs
gconf
gcr
gd
gdb
gdb-common
gdbm
gdk-pixbuf2
geckodriver
gendesk
geoclue
geocode-glib
gettext
ghc-libs
ghostscript
giblib
giflib
git
git-lfs
gjs
gl2ps
glew
glib-networking
glib2
glib2-docs
glibc
glibmm
glpk
glslang
glu
gmp
gnome-autoar
gnome-bluetooth
gnome-common
gnome-desktop
gnome-online-accounts
gnome-session
gnome-settings-daemon
gnome-shell
gnome-sudoku
gnome-themes-extra
gns3-converter
gnuarmeclipse-openocd-bin
gnupg
gnutls
go
go-ethereum
gobject-introspection
gobject-introspection-runtime
google-chrome
gparted
gpgme
gpm
gptfdisk
graphene
graphicsmagick
graphite
graphviz
grep
grilo
groff
grub
gsettings-desktop-schemas
gsettings-qt
gsfonts
gsimplecal
gsl
gsm
gspell
gst-plugins-base
gst-plugins-base-libs
gst-plugins-good
gst-plugins-ugly
gst-python
gst-python2
gstreamer
gstreamer0.10
gstreamer0.10-base
gstreamer0.10-base-plugins
gtest
gtk-doc
gtk-engine-murrine
gtk-update-icon-cache
gtk2
gtk3
gtkmm
gtkmm3
gts
guest-account
guile
guile2.0
gupnp-dlna
gvfs
gvfs-mtp
gvim
gzip
harfbuzz
harfbuzz-icu
haskell-aeson
haskell-aeson-pretty
haskell-ansi-terminal
haskell-asn1-encoding
haskell-asn1-parse
haskell-asn1-types
haskell-async
haskell-attoparsec
haskell-base-compat
haskell-base-compat-batteries
haskell-base-noprelude
haskell-base-orphans
haskell-base16-bytestring
haskell-base64-bytestring
haskell-basement
haskell-bitarray
haskell-blaze-builder
haskell-blaze-html
haskell-blaze-markup
haskell-byteable
haskell-case-insensitive
haskell-cereal
haskell-cmark-gfm
haskell-cmdargs
haskell-colour
haskell-connection
haskell-cookie
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-digest
haskell-dlist
haskell-doclayout
haskell-doctemplates
haskell-emojis
haskell-erf
haskell-errors
haskell-exceptions
haskell-glob
haskell-haddock-library
haskell-hashable
haskell-hourglass
haskell-hslua
haskell-hslua-module-system
haskell-hslua-module-text
haskell-hsyaml
haskell-http
haskell-http-client
haskell-http-client-tls
haskell-http-types
haskell-hxt
haskell-hxt-charproperties
haskell-hxt-regex-xmlschema
haskell-hxt-unicode
haskell-integer-logarithms
haskell-ipynb
haskell-jira-wiki-markup
haskell-juicypixels
haskell-lexer
haskell-memory
haskell-mime-types
haskell-network
haskell-network-uri
haskell-old-locale
haskell-old-time
haskell-pandoc-types
haskell-pem
haskell-pretty-show
haskell-primitive
haskell-quickcheck
haskell-random
haskell-regex-base
haskell-regex-pcre
haskell-safe
haskell-scientific
haskell-sha
haskell-skylighting
haskell-skylighting-core
haskell-socks
haskell-split
haskell-splitmix
haskell-streaming-commons
haskell-syb
haskell-tagged
haskell-tagsoup
haskell-temporary
haskell-texmath
haskell-text-conversions
haskell-tf-random
haskell-th-abstraction
haskell-time-compat
haskell-time-locale-compat
haskell-tls
haskell-transformers-compat
haskell-unicode-transforms
haskell-unordered-containers
haskell-utf8-string
haskell-uuid-types
haskell-vector
haskell-x509
haskell-x509-store
haskell-x509-system
haskell-x509-validation
haskell-xml
haskell-zip-archive
haskell-zlib
hdf5
hdparm
help2man
hfsprogs
hicolor-icon-theme
hidapi
hostapd
hspell
http-parser
hunspell
hwids
hwloc
hyphen
i3-gaps
i3blocks
i3lock
i3lock-fancy-git
i3status
iana-etc
icu
ifuse
ijs
imagemagick
imlib2
inetutils
iniparser
intel-tbb
intel-ucode
intellij-idea-community-edition
intltool
iproute2
iptables
iputils
ipython
iso-codes
itstool
iw
jack
jannal-git
jansson
jasper
java-environment-common
java-hamcrest
java-runtime-common
jbig2dec
jdk11-openjdk
jdk8-openjdk
jemalloc
jfsutils
jq
jre11-openjdk
jre11-openjdk-headless
jre8-openjdk
jre8-openjdk-headless
js52
js60
js68
json-c
json-glib
jsoncpp
junit
jupyter
jupyter-nbconvert
jupyter-nbformat
jupyter-notebook
jupyter-widgetsnbextension
jupyter_console
kaccounts-integration
kactivities
karchive
kauth
kbd
kbookmarks
kcmutils
kcodecs
kcompletion
kconfig
kconfigwidgets
kcontacts
kcoreaddons
kcrash
kdbusaddons
kdeclarative
kdeconnect
kdenlive
keyutils
kfilemetadata
kglobalaccel
kguiaddons
ki18n
kiconthemes
kidletime
kinit
kio
kirigami2
kitemviews
kjobwidgets
kjs
kmod
knewstuff
knotifications
knotifyconfig
konsole
kpackage
kparts
kpeople
kpeoplevcard
kpty
krb5
kservice
ktextwidgets
kwallet
kwayland
kwidgetsaddons
kwindowsystem
kxmlgui
l-smash
lame
lapack
lcms2
ldb
ldns
less
lhasa
libabw
libaccounts-glib
libaccounts-qt
libaec
libaio
libantlr3c
libao
libappindicator-gtk2
libappindicator-gtk3
libarchive
libart-lgpl
libass
libassuan
libasyncns
libatasmart
libatomic_ops
libavc1394
libblockdev
libbluray
libbs2b
libbsd
libbytesize
libcaca
libcacard
libcanberra
libcanberra-pulse
libcap
libcap-ng
libcddb
libcdio
libcdio-paranoia
libcdr
libchamplain
libcmis
libconfig
libcroco
libcue
libcups
libcurl-gnutls
libdaemon
libdatrie
libdbusmenu-glib
libdbusmenu-gtk2
libdbusmenu-gtk3
libdbusmenu-qt5
libdca
libde265
libdmx
libdrm
libdv
libdvbpsi
libdvdnav
libdvdread
libe-book
libebml
libebur128
libedit
libelf
libepoxy
libepubgen
libetonyek
libev
libevdev
libevent
libexif
libexttextcat
libfakekey
libfbclient
libfdk-aac
libffi
libfm
libfm-extra
libfm-qt
libfontenc
libfreehand
libftdi
libftdi-compat
libgcrypt
libgdata
libgdm
libgee
libgexiv2
libglade
libglvnd
libgme
libgpg-error
libgrss
libgsf
libgudev
libgusb
libgweather
libgxps
libheif
libibus
libical
libice
libid3tag
libidn
libidn11
libidn2
libiec61883
libimobiledevice
libindicator-gtk2
libindicator-gtk3
libinput
libinput-gestures
libinput_gestures_qt
libinstpatch
libiptcdata
libixion
libjpeg-turbo
libjpeg6-turbo
libkexiv2
libkeybinder3
libksba
libkscreen
liblangtag
libldac
libldap
liblouis
liblqr
libluv
liblxqt
libmad
libmatroska
libmfx
libmicrohttpd
libmikmod
libmm-glib
libmms
libmng
libmnl
libmodplug
libmp4v2
libmpc
libmpcdec
libmpdclient
libmpeg2
libmspub
libmtp
libmwaw
libnautilus-extension
libndp
libnet
libnetfilter_conntrack
libnewt
libnfnetlink
libnfs
libnftnl
libnghttp2
libnl
libnm
libnm-glib
libnm-gtk
libnma
libnotify
libnsl
libnumbertext
liboauth
libodfgen
libogg
libomxil-bellagio
libopencm3-git
liborcus
libosinfo
libp11-kit
libpagemaker
libpaper
libpcap
libpciaccess
libpeas
libpgm
libpipeline
libplacebo
libplist
libpng
libpng12
libproxy
libpsl
libpulse
libqtxdg
libquvi
libquvi-scripts
libqxp
libraqm
libraw1394
libreoffice-fresh
librevenge
librsvg
libsamplerate
libsasl
libseccomp
libsecp256k1
libsecret
libselinux
libsepol
libshout
libsidplay
libsigc++
libsigsegv
libslirp
libsm
libsndfile
libsodium
libsoup
libsoxr
libspectre
libspeechd
libspotify
libssh
libssh2
libstaroffice
libstemmer
libsynctex
libtar
libtasn1
libteam
libtermkey
libthai
libtheora
libtiff
libtirpc
libtommath
libtool
libunistring
libunwind
libupnp
libusb
libusb-compat
libusbmuxd
libutempter
libutf8proc
libutil-linux
libuv
libva
libva-mesa-driver
libva-utils
libvdpau
libvdpau-va-gl
libvisio
libvisual
libvncserver
libvoikko
libvorbis
libvpx
libvterm
libwacom
libwbclient
libwebp
libwnck3
libwpd
libwpe
libwpg
libwps
libx11
libxau
libxaw
libxcb
libxcomposite
libxcursor
libxdamage
libxdg-basedir
libxdmcp
libxext
libxfixes
libxfont2
libxft
libxi
libxinerama
libxkbcommon
libxkbcommon-x11
libxkbfile
libxklavier
libxml2
libxmu
libxnvctrl
libxp
libxpm
libxrandr
libxrender
libxres
libxshmfence
libxslt
libxss
libxt
libxtst
libxv
libxvmc
libxxf86dga
libxxf86vm
libyaml
libzip
libzmf
licenses
light
lightdm
lightdm-gtk-greeter
lightdm-gtk-greeter-settings
linux
linux-api-headers
linux-firmware
linux-headers
lirc
llvm-libs
lm_sensors
lmdb
logrotate
lpsolve
lua
lua52
lua52-bitop
lua52-expat
lua52-lpeg
lua52-luajson
lua52-socket
luajit
lvm2
lxappearance
lxmenu-data
lz4
lzo
m4
mailcap
make
mallard-ducktype
man-db
man-pages
mariadb-libs
mathjax
mathjax2
md4c
mdadm
media-player-info
mendeleydesktop-bundled
menu-cache
mercurial
mesa
mesa-demos
mesa-vdpau
meson
metis
minizip
mkinitcpio
mkinitcpio-busybox
mlt
mobile-broadband-provider-info
mopidy
mopidy-iris
mopidy-local-images
mopidy-moped
mopidy-mpris
mopidy-soundcloud
mopidy-spotify
mopidy-spotify-tunigo
mopidy-spotify-web
mozilla-common
mpd
mpfr
mpg123
mpir
mplayer
mpv
mpv-mpris
msgpack-c
mtdev
mtools
mujs
muparser
mutter
nano
nasm
nautilus
nautilus-sendto
ncmpcpp
ncurses
ndctl
neon
neovim
neovim-qt
nerd-fonts-complete
nerd-fonts-hack
net-tools
netctl
netpbm
nettle
networkmanager
ninja
nitrogen
nm-connection-editor
node-gyp
nodejs
nodejs-reveal-md
noto-fonts
noto-fonts-extra
npm
npth
nspr
nss
nss-mdns
ntfs-3g
ntp
numactl
nvidia
nvidia-settings
nvidia-utils
ocl-icd
octave
oh-my-zsh-git
oh-my-zsh-powerline-theme-git
okular
oniguruma
openal
opencl-nvidia
opencore-amr
opendetex
openjpeg2
openmpi
openocd
openresolv
openssh
openssl
openssl-1.0
opus
orc
os-prober
osinfo-db
otf-font-awesome-4
otf-hasklig
p11-kit
p7zip
package-query
pacman
pacman-mirrorlist
pam
pambase
pandoc
pango
pangomm
parallel
parted
patch
pavucontrol
pbc
pciutils
pcre
pcre2
pdfjs
peek
perl
perl-anyevent
perl-anyevent-i3
perl-common-sense
perl-encode-locale
perl-error
perl-file-listing
perl-file-next
perl-file-which
perl-html-parser
perl-html-tagset
perl-http-cookies
perl-http-daemon
perl-http-date
perl-http-message
perl-http-negotiate
perl-io-html