forked from hroncok/mini-mass-rebuild
-
Notifications
You must be signed in to change notification settings - Fork 1
/
python310.pkgs
3540 lines (3540 loc) · 52.9 KB
/
python310.pkgs
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
2ping
389-ds-base
5minute
abiword
abrt
abrt-server-info-page
academic-admin
accerciser
adapt
adb-enhanced
afflib
aiodnsbrute
airnef
alacarte
alot
ampy
anaconda
andriller
androguard
androwarn
ansible
ansible-base
ansible-bender
ansible-inventory-grapher
ansible-lint
ansible-review
antlr4-project
apbs
APLpy
apostrophe
appliance-tools
apx
ara
arandr
arbor
argparse-manpage
artifacts
asciidoc
asciinema
assimp
astrometry
asv
atomic-reactor
ATpy
aubio
audit
authselect
autoarchive
autojump
autokey
autowrap
avogadro2-libs
awake
awscli
azote
b43-tools
babel
babeltrace
babeltrace2
bandit
barman
battray
bcc
beaker
beets
bind
binwalk
blender
blivet-gui
bluefish
blueman
bmap-tools
bodhi
boom-boot
boost
borgbackup
borgmatic
botan
botan2
bout++
bpython
brd
breezy
brial
brltty
brotli
bst-external
btest
btrfs-progs
btrfs-sxbackup
bubblemail
bugzilla2fedmsg
buildbot
buildstream
bumpversion
cairo-dock-plug-ins
calamares
calibre
calypso
cantoolz
cantor
capstone
caribou
catfish
ccnet
ccsm
cdist
cekit
ceph
certbot
chrome-gnome-shell
cinch
cjdns
clang
classification-banner
clingo
cloud-init
clufter
clustershell
cobbler
coccinelle
codespell
colin
collectd
commissaire-client
compizconfig-python
compose-utils
concordance
conda
condor
congruity
conu
COPASI
copr-backend
copr-cli
copr-keygen
copr-messaging
copr-rpmbuild
cozy
cranc
createrepo_c
credslayer
criu
cryptlib
cryptominisat
csdiff
csmock
csound
cura
cura-lulzbot
custodia
cvc4
cxxtest
Cython
datagrepper
datanommer
datanommer-commands
dblatex
dbus-python
ddiskit
ddupdate
debconf
dee
deltarpm
deluge
devscripts
d-feet
dib-utils
diceware
did
diffoscope
dionaea
distcc
distgen
distro-info
dlib
dlrn
dmlite
dnf
dnfdaemon
dnfdragora
dnf-plugin-cow
dnf-plugin-diff
dnf-plugin-ovl
dnf-plugins-core
dnf-plugins-extras
dnsgen
docker-compose
doge
dogtail
dolfin
domoticz
dot2tex
dput-ng
dtc
duplicity
dxf2gcode
dynaconf
ec2-hibinit-agent
electron-cash
electrum
elements
elements-alexandria
emacs-jedi
enjarify
enki
eralchemy
eric
espresso
esptool
etckeeper
evemu
expliot
fail2ban
fapolicyd
fbthrift
fedfind
fedmod
fedmsg
fedora-business-cards
fedora-gather-easyfix
fedora-messaging
fedora-review
fedpkg
fedscm-admin
file
firewalld
flann
flatbuffers
flatcam
flatpak-module-tools
flent
fmf
folly
fontdump
fontforge
fonts-tweak-tool
fonttools
freecad
freeipa
freeipa-desktop-profile
freeipa-fas
freeipa-healthcheck
frescobaldi
fros
fusion-icon
future
gajim
gammastep
gaupol
gcovr
gdal
gdb
gdcm
gdeploy
gdl
gedit
GeographicLib
gerrymander
getdp
gfal2-python
gfal2-util
ginga
git-archive-all
git-cola
git-fame
git-filter-repo
gitg
gitlint
git-pull-request
GitPython
git-review
git-up
gjots2
glade
glances
globus-net-manager
glom
glusterfs
gmsh
gnofract4d
gnome-abrt
gnome-builder
gnome-doc-utils
gnome-feeds
gnome-gmail
gnome-music
gnome-passwordsafe
gnome-tweaks
gns3-gui
gns3-net-converter
gns3-server
gnucash
gnuradio
go2rpm
gobject-introspection
gofer
gom
goobook
google-api-python-client
google-auth-httplib2
google-compute-engine-tools
gpaw
gpgme
gphotoframe
gplugin
gpodder
gpsd
gr-air-modes
grammalecte
gramps
graphviz
gr-fcdproplus
gr-hpsdr
grin
gr-iqbal
gr-osmosdr
grpc
gr-rds
gst
gst-editing-services
gtimelog
gtts
gtts-token
guake
gumbo-parser
gwe
gwebsockets
gyp
h5py
hamlib
hashid
hatch
hddfancontrol
heat-cfntools
HepMC3
hexchat
hgsvn
hgview
hivex
hokuyoaist
holland
home-assistant-cli
hplip
hpx
httpie
hugin
hydrapaper
i2c-tools
ibus
ibus-cangjie
ikiwiki
ilua
imagefactory
imagefactory-plugins
imgbased
impressive
initial-setup
inn
insight
intelhex
ioc-writer
Io-language
iotop
ipsilon
ipython
irclog2html
iscsi-initiator-utils
is-it-in-rhel
isomd5sum
jabberpy
jack-mixer
javapackages-tools
jc
jpype
jrnl
kdevelop-python
kea
kerberoast
kernel-tools
keycloak-httpd-client-install
keylime
kf5-kapidox
khal
khard
kicad
kig
kismon
kitty
kiwi
kiwi-boxed-plugin
koan
kobo
koji
koji-containerbuild
koji-osbuild
komikku
krita
krop
lammps
langtable
lasso
lazygal
lcm
ldapdomaindump
ldeep
ldns
lecm
lector
legendary
legofy
lensfun
lhapdf
libaccounts-glib
libarcus
libarcus-lulzbot
libbatch
libblockdev
libbytesize
libcaca
libcap-ng
libcec
libchewing
libCombine
libcomps
libdnet
libdnf
libesedb
libffado
libfreenect
libftdi
libgexiv2
libgit2-glib
libgpiod
libgpuarray
libguestfs
libiio
libiptcdata
libixion
libkdtree++
libkml
libkolabxml
libldb
liblinear
liblouis
libmodulemd
libnbd
libnl3
libnuml
libolm
liborcus
libpeas
libpfm
libplist
libpoly
libprelude
libpreludedb
libproxy
libpst
libpwquality
librealsense
libreoffice
librepo
libreport
libsavitar
libsbml
libsearpc
libsedml
libselinux
libsemanage
libsigrokdecode
libsmbios
libsoc
libsolv
libssh2-python
libstoragemgmt
libsvm
libtalloc
libtdb
libtevent
libunity
libuser
libvirt-python
libvirt-test-API
libvoikko
libxc
libxml2
libyang
libyui-bindings
lightdm-gtk-greeter-settings
lilv
limnoria
linkchecker
link-grammar
liquidctl
lirc
litecli
livecd-tools
lldb
lnst
lollypop
loook
lorax
lttng-tools
lttng-ust
lutris
luxcorerender
lvm2
m2crypto
maildirproc
mailman3
mailman3-fedmsg-plugin
mailnag
mapserver
marisa
marshalparser
mate-menu
mathgl
matrix-synapse
Mayavi
mcomix3
med
meld
menulibre
mercurial
meson
metrics2mqtt
mgarepo
micropipenv
mingw-python3
minigalaxy
miniupnpc
mir
mirage
mirrormanager2
mkdocs
mkdocs-alabaster
mkdocs-bootstrap
mkdocs-bootswatch
mkdocs-cinder
mkdocs-material
mkosi
mlpack
mlt
mock
module-build-service
modulemd-tools
mod_wsgi
mom
moose
mopidy
mopidy-mpd
mozo
mpi4py
mpich
mpsolve
mqtt-randompub
mraa
msoffcrypto-tool
mu
MUSIC
mycli
mysql-connector-python
nanovna-saver
nautilus-python
nbdkit
needrestart
nemo-extensions
nest
netbox
netcdf4-python
netgen-mesher
net-snmp
netstat-monitor
neuron
newt
nextpnr
nfoview
nfs-ganesha
nfsometer
nftables
nicotine+
nik4
ninja-build
nispor
NLopt
nml
nmstate
nodepool
nordugrid-arc
nordugrid-arc-nagios-plugins
notcurses
notmuch
nototools
nova-agent
ntpsec
numpy
nut
nvmetcli
nwchem
nyx
ocrmypdf
oct2spec
odcs
odfpy
ogr2osm
omniORB
omniORBpy
onboard
onionshare
openbabel
opencv
openexr
OpenImageIO
OpenIPMI
OpenLP
openmeeg
openmpi
openscap
openscap-daemon
openshadinglanguage
opentrep
openvdb
openvswitch
openwsman
oraculum
orca
orocos-kdl
osbs-client
osbuild
osc
otf2
oval-graph
oz
pacemaker
packit
pag
pagure
pagure-dist-git
pam_wrapper
paperwork
paraview
parsero
partio
past-time
patool
pcapy
pcp
pcp2pdf
pcs
pdc-client
pdfarranger
pdfposter
pdf-stapler
percol
perl-Inline-Python
persepolis
petsc
pew
pg_activity
pgcli
pgzero
photocollage
picard
pipenv
piper
pipx
pitivi
pkgwat
pki-core
player
playitagainsam
plplot
pocketsphinx
podman-compose
poetry
poezio
policycoreutils
porcupine
portmidi
postfix-mta-sts-resolver
postgresql
powerline
pre-commit
prelude-correlator
preprocess
prewikka
prewikka-updatedb
printrun
ProDy
proselint
protobuf
protontricks
protonvpn-cli
prunerepo
pss
pssh
ptpython
puddletag
pulsecaster
pungi
pwncat
py3status
py4j
pyatspi
pyaudio
py-bcrypt
pybind11
pybluez
pybox2d
pybugz
pycairo
pycanberra
pychess
pychromecast
pycmd
pycolumnize
pydeps
pydot
PyDrive
pyee
pyelftools
pyflakes
pyflowtools
pygame
pygobject3
PyGreSQL
pygrib
pygsl
pyhoca-cli
pyhoca-gui
pyhunspell
pyicu
pyjokes
pyke
pykickstart
pykka
pylast
pylibacl
pylibgamerzilla
pyliblo
pylint
PyMca
pymilia
pymodbus
pymol
pynac
pynag
pyodbc
pyOpenSSL
pyosmium
pyotherside
pyowm
pyp2rpm
PyPAM
pyparsing
pyparted
pypolicyd-spf
pyppd
pyproj
pypykatz
PyQt4
PyQt-builder
pyqtwebengine
py-radix
pyscard
pyserial
pyserial-asyncio
pyshp
pysnmp
PySolFC
py-spidev
pystatgrab
pysubnettree
pysvn
pysysbot
pytest
pythia8
python3.9
python3-cangjie
python3-exiv2
python3-iep
python3-lxc
python3-mallard-ducktype
python3-mypy
python3-openid
python3-poppler-qt5
python3-postgresql
python3-py3dns
python3-pyPEG2
python3-pytest-asyncio
python3-saml
python3-script
python3-simplepam
python3-simpletal
python3-typed_ast
python3-zope-fixers
python-aaargh
python-abimap
python-absl-py
python-accuweather
python-acme
python-acora
python-acoustid
python-actdiag
python-adafruit-platformdetect
python-adafruit-pureio
python-adal
python-adb
python-adb-shell
python-adext
python-admesh
python-advisory-parser
python-aenum
python-affine
python-afsapi
python-agate
python-agate-dbf
python-agate-excel
python-agate-sql
python-ailment
python-aioasuswrt
python-aiocmd
python-aiocurrencylayer
python-aiodns
python-aioeafm
python-aioesphomeapi
python-aiofiles
python-aioflo
python-aioftp
python-aiogqlc
python-aioguardian
python-aiohomekit
python-aiohttp
python-aiohttp-cors
python-aiohttp-negotiate
python-aiohttp-socks
python-aiohttp-sse-client
python-aiohue
python-aioiotprov
python-aioitertools
python-aiolifx
python-aiomodbus
python-aiomqtt
python-aiomultiprocess
python-aiomysql
python-aionotion
python-aioodbc
python-aioopenssl
python-aiopg
python-aioresponses
python-aiorestapi
python-aiorpcx
python-aiosasl
python-aiosecretsdump
python-aiosmb
python-aiosmtpd
python-aiosnmp
python-aiosqlite
python-aiostream
python-aiounifi
python-aiounittest
python-aiowinreg
python-aiozeroconf
python-aiozmq
python-airspeed
python-airthings
python-ajpy
python-alarmdecoder
python-alembic
python-alsa
python-alsaaudio
python-altgraph
python-amico
python-amqp
python-ana
python-angr
python-animatplot
python-aniso8601
python-ansi
python-ansi2html
python-ansible-runner
python-ansicolor
python-ansicolors
python-ansiwrap
python-anyconfig
python-anyio
python-anyjson
python-anykeystore
python-anymarkup
python-anymarkup-core
python-anytree
python-aodhclient
python-apipkg
python-appdirs
python-apply-defaults
python-apprise
python-AppTools
python-APScheduler
python-apsw
python-apypie
python-archinfo
python-aresponses
python-argcomplete
python-argh
python-argon2-cffi
python-argopt
python-arpeggio
python-arpy
python-arrow
python-arviz
python-asciitree
python-ase
python-asgiref
python-asn1crypto
python-aspy.yaml
python-asteval
python-astral
python-astroid
python-astroML
python-astroplan
python-astropy
python-astropy-healpix
python-astropy-helpers
python-astroquery
python-astroscrappy
python-asttokens
python-astunparse
python-async-generator
python-asyncio-dgram
python-asyncssh
python-async-timeout
python-async-upnp-client
python-asysocks
python-atomicwrites
python-atpublic
python-attrs
python-audioread
python-augeas
python-august
python-auth-credential
python-authheaders
python-authlib
python-authres
python-autobahn
python-Automat
python-automaton
python-autopep8
python-awesomeversion
python-AWSIoTPythonSDK
python-azure-sdk
python-b2sdk
python-babelfish
python-backcall
python-backlash
python-backoff
python-baluhn
python-barbicanclient
python-basemap
python-bashate
python-batalgorithm
python-batinfo
python-bcrypt
python-beaker
python-beanbag
python-beautifulsoup4
python-beautifultable
python-behave
python-beniget
python-betamax
python-betamax-matchers
python-betamax-serializers
python-bibtexparser
python-bidict
python-bids-validator
python-bigsuds
python-billiard
python-binaryornot
python-binstruct
python-bintrees
python-biopython
python-biscuits
python-bitarray
python-bitcoinlib
python-bitmath
python-bitstring
python-bitstruct
python-black
python-blackbird
python-bleach
python-blessed
python-blessings
python-blinker
python-blivet
python-blockdiag
python-bloom
python-blosc
python-blowfish
python-bluepy
python-blurb