-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmight_use_make.txt
3182 lines (3182 loc) · 42.6 KB
/
might_use_make.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
4diac-forte
abc
abseil-cpp
aces_container
AcetoneISO
acme-tiny
acpica-tools
adf-accanthis-fonts
adf-tribun-fonts
adobe-afdko
adobe-source-han-code-jp-fonts
adobe-source-han-sans-jp-fonts
adobe-source-han-sans-kr-fonts
adobe-source-han-serif-jp-fonts
adobe-source-han-serif-kr-fonts
adwaita-qt
aftertheflood-sparks-fonts
Agda-stdlib
airinv
airrac
airspyone_host
airtsp
akmods
akonadi
alembic
alexandria
alfont
alglib
allegro
allegro5
AllegroOGG
alsa-sof-firmware
alure
amiri-fonts
ampache_browser
analitza
android-file-transfer
android-tools
anope
antimicrox
antimicroX
antlr4-project
antlrworks
aom
apache-commons-beanutils
apache-commons-codec
apache-commons-modeler
apache-commons-pool
apanov-heuristica-fonts
apbs
apfs-fuse
api-sanity-checker
appstream
apr-api-docs
apt
apvlv
aqemu
aqsis
ara
arduino-builder
argbash
args4j
ark
artifacts
artikulate
artwiz-aleczapka-fonts
asdcplib
assimp
astromenace
atk
atkmm
atlas
at-spi2-atk
at-spi2-core
attica
AusweisApp2
autokey
awesome
b43-fwcutter
babl
bacula-docs
badvpn
baekmuk-ttf-fonts
ballerburg
baloo-widgets
bam
baobab
BareBonesBrowserLaunch
bcc
bcd
bcel
bcg729
bcm43xx-fwcutter
bear-factory
beneath-a-steel-sky
beust-jcommander
bfa-firmware
biboumi
bijiben
binaryen
bitstream-vera-fonts
black-hole-solver
blender
blinken
bloaty
blosc
bluedevil
bmake
bomber
boo
boomaga
boost
bovo
bpftrace
breeze-gtk
breeze-icon-theme
brewtarget
brotli
bsh
bugzilla
buildnumber-maven-plugin
bullet
byte-buddy
byteman
cabal-rpm
ca-certificates
cagibi
cairo-dock
calibre
calligra
calls
cantata
cantor
capnproto
cascadia-code-fonts
castxml
catch
catch1
catharsis-cormorant-fonts
catimg
cAudio
ccache
ccls
cctz
cdogs-sdl
cdrkit
cegui
cereal
ceres-solver
certbot
cervisia
cgnslib
cgreen
CharLS
chck
checksec
cheese
CheMPS2
choqok
chromaprint
chrome-gnome-shell
chromium
chunkfs
cinnamon-control-center
cinnamon-screensaver
cinnamon-session
cjson
ckb-next
clang
clang10
clang9.0
cl-asdf
clazy
clblast
cld2
cldr-emoji-annotation
clementine
clevis
cli11
cliquer
clojure-maven-plugin
cloud-init
cloud-utils
clpeak
clufter
cmake-fedora
cmark
cminpack
cmocka
cmpfit
co2mon
cockatrice
codec2
Coin4
coin-or-lemon
collada-dom
colobot
colord
colord-kde
colorized-logs
colossus
compiler-rt
composer
conda
congruity
conky
console-bridge
container-selinux
conu
converseen
coolreader
copr-cli
copr-dist-git
copr-frontend
copr-rpmbuild
copr-selinux
copyq
coq
corectrl
corsix-th
cowsay
cpanspec
cppcodec
cpphs
cppmyth
cpprest
cppzmq
cpu-x
creds
crontabs
cross-gcc
cryptominisat
cscppc
csmock
csound
cswrap
ctan-cm-lgc-fonts
CTL
cubeb
CubicSDR
cura
CuraEngine
CuraEngine-lulzbot
cura-fdm-materials
cura-lulzbot
curlpp
cutecom
cutter-re
cxxopts
daggy
danmaq
darcs
darkgarden-fonts
datagrepper
date
davix
dblatex
dbus-broker
dcm2niix
dcmtk
ddate
ddclient
ddnet
ddupdate
decentxml
deepin-calculator
deepin-calendar
deepin-editor
deepin-kwin
deepin-screenshot
deepin-system-monitor
deepin-terminal
deepin-topbar
deja-dup
deluge
desktop-file-utils
devhelp
d-feet
dgae
dh-autoreconf
dh-make
diaser
dicomanonymizer
did
digikam
direnv
direwolf
dislocker
dist-git
dl-fedora
dlib
dmlite
dmz-cursor-themes
dnf
dnfdragora
dnf-plugins-extras
dnscrypt-proxy-gui
docbook5-style-xsl
docbook-dtds
docbook-simple
docbook-slides
docker-compose
doctest
dokuwiki
dolphin-emu
dolphin-plugins
domoticz
dotnet3.1
double-conversion
doxygen
dput-ng
dragon
drat2er
drat-trim
dreamchess
dreamweb
drpm
drumstick
drumstick0
drupal7-backup_migrate
drupal7-chosen
drupal7-ctools
drupal7-eva
drupal7-features
drupal7-l10n_pconfig
drupal7-login_destination
drupal7-strongarm
drupal7-title
drupal7-votingapi
drupal8
dumb-init
dvblinkremote
dwarves
dxf2gcode
easymock
easyrpg-player
eccodes
ecdsautils
ecj
eclipse
eclipse-cdt
eclipse-egit
eclipse-findbugs
eclipse-gef
eclipse-jgit
eclipse-mpc
eclipse-pydev
ecolier-court-fonts
editorconfig
efl
eg
eigen3
eiskaltdcpp
elementary-wallpapers
elements
ell
emacs-flycheck
emacs-goodies
emacs-python-environment
emacs-rinari
embree
engrid
ensmallen
envytools
eog
epiphany
epstool
eric
erlang-cl
erlang-clique
erlang-eimp
erlang-epam
erlang-erlsom
erlang-gen_leader
erlang-gproc
erlang-gtknode
erlang-proper
erlang-rebar3
erlang-sd_notify
espresso
et
etcd
evince
evolution
evolution-data-server
evolution-ews
evolution-mapi
exim-doc
exiv2
exodusii
expatpp
expected
fakeroot
Falcon
falkon-pdfreader
fast-cdr
fastd
fasttext
FAudio
fb303
fbthrift
fbzmq
fcitx
fcitx5
fcitx5-chewing
fcitx5-chinese-addons
fcitx5-configtool
fcitx5-gtk
fcitx5-kkc
fcitx5-lua
fcitx5-qt
fcitx5-rime
fcitx5-skk
fcitx-anthy
fcitx-chewing
fcitx-cloudpinyin
fcitx-configtool
fcitx-fbterm
fcitx-hangul
fcitx-kkc
fcitx-libpinyin
fcitx-m17n
fcitx-qt5
fcitx-skk
fcitx-sunpinyin
fcitx-table-extra
fcitx-table-other
fcitx-ui-light
fcitx-unikey
fcl
featherpad
fedfind
fedmod
fedora-chromium-config
fedora-gnat-project-common
fedora-logos
fedora-messaging
fedora-obsolete-packages
fedora-release
fedora-review
fedora-workstation-repositories
fedpkg
feedreader
fftw2
fgrun
Field3D
filedrop
filelight
file-roller
filesystem
fips
fish
five-or-more
fizz
flameshot
flamethrower
flang
flann
flannel
flare
flare-engine
flatpak-rpm-macros
flatpak-runtime-config
flawfinder
flexiport
FlightCrew
FlightGear
flocq
floppy-support
fluid
flute
fmt
fntsample
folks
fontaine
fonttools
fortune-mod
four-in-a-row
fpc-srpm-macros
fragments
freecad
freecell-solver
freecol
freeDiameter
freedv
freeipa-healthcheck
freeopcua
freerdp
frei0r-plugins
frogr
frozen-bubble
fuse-encfs
fusesource-pom
fwupd
gamehub
gammu
GAPDoc
gappa
gap-pkg-aclib
gap-pkg-alnuth
gap-pkg-atlasrep
gap-pkg-autodoc
gap-pkg-automata
gap-pkg-autpgrp
gap-pkg-caratinterface
gap-pkg-congruence
gap-pkg-corelg
gap-pkg-crime
gap-pkg-crisp
gap-pkg-cryst
gap-pkg-crystcat
gap-pkg-ctbllib
gap-pkg-design
gap-pkg-factint
gap-pkg-fga
gap-pkg-fining
gap-pkg-format
gap-pkg-forms
gap-pkg-fr
gap-pkg-francy
gap-pkg-genss
gap-pkg-grape
gap-pkg-groupoids
gap-pkg-grpconst
gap-pkg-hap
gap-pkg-hapcryst
gap-pkg-happrime
gap-pkg-hecke
gap-pkg-images
gap-pkg-irredsol
gap-pkg-jupyterkernel
gap-pkg-jupyterviz
gap-pkg-laguna
gap-pkg-liealgdb
gap-pkg-liepring
gap-pkg-liering
gap-pkg-loops
gap-pkg-lpres
gap-pkg-mapclass
gap-pkg-openmath
gap-pkg-polenta
gap-pkg-polycyclic
gap-pkg-polymaking
gap-pkg-primgrp
gap-pkg-quagroup
gap-pkg-radiroot
gap-pkg-recog
gap-pkg-repsn
gap-pkg-resclasses
gap-pkg-scscp
gap-pkg-singular
gap-pkg-sla
gap-pkg-smallgrp
gap-pkg-smallsemi
gap-pkg-sonata
gap-pkg-sophus
gap-pkg-spinsym
gap-pkg-tomlib
gap-pkg-toric
gap-pkg-utils
gap-pkg-uuid
gap-pkg-xmod
gau2grid
gauche
gazebo
gcab
gcompris-qt
gcr
gdk-pixbuf2
gdm
gearbox
gearhead1
geary
gedit
gedit-plugins
gegl04
generic-logos
geoclue2
GeographicLib
getdns
getdp
gfal2
gfal2-python
gfalFS
gflags
gfs-ambrosia-fonts
gfs-artemisia-fonts
gfs-baskerville-fonts
gfs-bodoni-classic-fonts
gfs-bodoni-fonts
gfs-complutum-fonts
gfs-decker-fonts
gfs-didot-classic-fonts
gfs-didot-display-fonts
gfs-didot-fonts
gfs-eustace-fonts
gfs-fleischman-fonts
gfs-galatea-fonts
gfs-garaldus-fonts
gfs-gazis-fonts
gfs-goschen-fonts
gfs-ignacio-fonts
gfs-jackson-fonts
gfs-neohellenic-fonts
gfs-neohellenic-math-fonts
gfs-nicefore-fonts
gfs-olga-fonts
gfs-orpheus-classic-fonts
gfs-orpheus-fonts
gfs-orpheus-sans-fonts
gfs-philostratos-fonts
gfs-porson-fonts
gfs-pyrsos-fonts
gfs-solomos-fonts
gfs-theokritos-fonts
ghc-async
ghc-atomic-write
ghc-attoparsec-binary
ghc-base-compat-batteries
ghc-basic-prelude
ghc-cipher-aes
ghc-ConfigFile
ghc-config-ini
ghc-cprng-aes
ghc-criterion
ghc-data-accessor
ghc-echo
ghc-either
ghc-extra
ghc-free
ghc-http-client
ghc-http-client-openssl
ghc-hxt
ghc-rfc5051
ghc-rio
ghc-rpm-macros
ghc-tabular
ghc-tar
ghc-text-manipulate
ghc-xmonad-contrib
ghc-zlib
ghex
gifticlib
gimagereader
ginac
gio-qt
girara
git-annex
gitg
gitit
git-lfs
gitolite3
git-publish
gjs
gl2ps
glade
glfw
glib2
glibc32
glibmm24
glib-networking
gl-manpages
glmark2
glob2
glslang
glues
GMT
gnatcoll-bindings
gnatcoll-db
gnofract4d
gnome-abrt
gnome-backgrounds
gnome-bluetooth
gnome-boxes
gnome-builder
gnome-calculator
gnome-chess
gnome-clocks
gnome-color-manager
gnome-contacts
gnome-desktop3
gnome-dictionary
gnome-disk-utility
gnome-font-viewer
gnome-gmail
gnome-initial-setup
gnome-klotski
gnome-logs
gnome-mines
gnome-music
gnome-nibbles
gnome-packagekit
gnome-passwordsafe
gnome-photos
gnome-power-manager
gnome-robots
gnome-screenshot
gnome-session
gnome-settings-daemon
gnome-shell
gnome-shell-extension-background-logo
gnome-shell-extensions
gnome-shell-extension-unite
gnome-software
gnome-sound-recorder
gnome-sudoku
gnome-system-monitor
gnome-tetravex
gnome-user-share
gnome-weather
gnucash
gnu-free-fonts
gnuradio
gnurobbo
gnustep-base
gobject-introspection
go-compilers
godot
gofer
golang
golang-bitbucket-bertimus9-systemstat
golang-github-10gen-escaper
golang-github-ajstarks-deck
golang-github-alecthomas-assert
golang-github-anacrolix-stm
golang-github-anmitsu-shlex
golang-github-bgentry-netrc
golang-github-burntsushi-toml-test
golang-github-burntsushi-xgbutil
golang-github-checkpoint-restore-criu
golang-github-cmd
golang-github-cockroachdb-cockroach
golang-github-coreos-gexpect
golang-github-cyberdelia-metrics-graphite
golang-github-d4l3k-messagediff
golang-github-dpotapov-spnego
golang-github-elithrar-simple-scrypt
golang-github-facebook-ent
golang-github-facebookgo-httpdown
golang-github-geertjohan-rice
golang-github-git-lfs-netrc
golang-github-gliderlabs-ssh
golang-github-gobuffalo-envy
golang-github-gobuffalo-packd
golang-github-googleapis-gnostic
golang-github-googleapis-gnostic-0.4
golang-github-google-gofuzz
golang-github-grpc-ecosystem-middleware
golang-github-hashicorp-consul-api
golang-github-hashicorp-consul-sdk
golang-github-hashicorp-errwrap
golang-github-hashicorp-hcl
golang-github-hashicorp-hil
golang-github-hashicorp-memdb
golang-github-hashicorp-retryablehttp
golang-github-hashicorp-sockaddr
golang-github-henvic-httpretty
golang-github-jellevandenhooff-dkim
golang-github-jmoiron-sqlx
golang-github-jung-kurt-gofpdf
golang-github-klauspost-cpuid
golang-github-liamg-tml
golang-github-mattn-isatty
golang-github-mesos
golang-github-mholt-archiver
golang-github-milochristiansen-axis2
golang-github-mohae-deepcopy
golang-github-mvo5-goconfigparser
golang-github-nsf-termbox
golang-github-opentracing-contrib-grpc
golang-github-peterbourgon-g2s
golang-github-pquerna-cachecontrol
golang-github-prometheus
golang-github-rs-xid
golang-github-ryanuber-columnize
golang-github-shopify-toxiproxy
golang-github-skynetservices-skydns
golang-github-spf13-afero
golang-github-spf13-cast
golang-github-theupdateframework-notary
golang-github-vmware-govcloudair
golang-gonum-1
golang-gopkg-warnings-0
golang-k8s-csi-api
golang-k8s-legacy-cloud-providers
golang-k8s-metrics
golang-sigs-k8s-kustomize
golang-uber-zap
golang-x-exp
golang-x-image
gom
google-benchmark
google-droid-fonts
google-guice
google-roboto-slab-fonts
go-rpm-macros
gpaw
gpaw-setups
gpick
gplugin
gpsd
gpsman
grafana
gr-air-modes
grammalecte
gramps
granatier
graphite2
gravity-beams-and-evaporating-stars
gr-fcdproplus
gr-hpsdr
gridsite
grilo
grilo-plugins
grin
gr-iqbal
grive2
gromacs
gron
gr-osmosdr
group-service
growlight
gr-rds
grub2
grub-customizer
gsettings-desktop-schemas
gsignond
gssdp
gst-editing-services
gstreamer1
gstreamer1-plugins-bad-free
gstreamer1-plugins-base
gstreamer1-plugins-good
gstreamer1-plugins-ugly-free
gstreamer1-rtsp-server
gstreamer1-vaapi
gt5
gtest
gthumb
gtk4
gtk-doc
gtk-layer-shell
gtkmm30
guayadeque
gubbi-fonts
gucharmap
guidelines-support-library
guitarix
gupnp
gupnp-igd
gvfs
gwenview
gyazo
gyp
hackrf
hamcrest
hanamin-fonts
hanazono-fonts
haskell-platform
hatari
hatch
hawtjni
haxe
HdrHistogram_c
heaptrack
hedgewars
heimdall
HepMC3
herbstluftwm
hgview
hidviz
hitori
hokuyoaist
hotspot
hsakmt
ht-alegreya-sans-fonts
html2ps
httpcomponents-core
httpie
http-parser
hugin
hunspell-de
hunspell-ga
hunspell-nl
hunspell-uz
hydrogen
hyperscan
hyphen-hu
i3status-rs
iagno
ibm-plex-fonts
ibus-bogo
ibus-chewing
ibus-qt
ibus-rime
ibus-unikey
icedtea-web
idris
ignition-cmake
ignition-math
ignition-msgs
ignition-transport
igt-gpu-tools
imake
impallari-dancing-script-fonts
impallari-raleway-fonts
impressive
indi-aagcloudwatcher
indi-apogee
indi-eqmod
indi-gphoto
indi-sx
inksmoto
InsightToolkit
intel-clear-sans-fonts
intel-gmmlib
intel-mediasdk
intel-mpi-benchmarks
ipmctl
iputils
ipython
irclog2html
isoimagewriter
isomd5sum
ispc
iv
jack-audio-connection-kit
jack-keyboard
jackson-dataformats-binary
jackson-dataformats-text
jackson-modules-base
jakarta-json
jakarta-oro
java-1.8.0-openjdk
javacc
javadocofflinesearch
java-mersenne-twister
javapackages-tools
java-packaging-howto
jcip-annotations
jcommon
jcommon-serializer
jdns
jetbrains-mono-fonts
jetty
jffi
jflex
jfreechart
jgoodies-forms
jgoodies-looks
jlems
jline
jmdns
jmock
jna
jnr-ffi
jol
jpanoramamaker
jpype
js8call
js-jquery
json
json11
json-c
jsoncpp
json-glib
js-responsive-elements
jtidy
juk
jxrlib
jython
k3b
k4dirstat
kaccounts-integration
kaccounts-providers
kactivitymanagerd
kajongg
kalapi-fonts
kalgebra
kalzium
kamera
kanagram
kapman
kapptemplate
kata-ksm-throttler
kata-osbuilder
kata-proxy
kata-shim
katomic
kbackup
kbibtex
kblackbox
kblocks
kbounce
kbrickbuster
kbruch
kBuild
kcachegrind
kcalc
kcharselect