forked from deepin-community/Repository-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repos.yml
7983 lines (6018 loc) · 230 KB
/
repos.yml
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
repos:
- repo: .guide.deepin.org
group: sig-deepin-doc-doc-go
info: deepin 系统的用户手册 https://guide.deepin.org
- repo: 3270font
group: deepin-sysdev-team
info: A 3270 font in a modern format
- repo: 7zip
group: deepin-sysdev-team
info: 7-Zip is a file archiver with a high compression ratio.
- repo: RyzenAdj
group: deepin-sysdev-team
info: Adjust power management settings for Ryzen Mobile Processors.
- repo: ack
group: deepin-sysdev-team
info: ack is a tool like grep, optimized for programmers
- repo: acpi
group: deepin-sysdev-team
info: This package shows the information of the ACPI device.
- repo: aha
group: deepin-sysdev-team
info: ANSI color to HTML converter
- repo: aiodns #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: aiofiles #main
group: deepin-sysdev-team
info: Python asyncio file operations
- repo: aioredis #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: aiosignal #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: alsa-ucm-conf #main
group: deepin-sysdev-team
info: ALSA Use Case Manager configuration files
- repo: amdgcn-tools-18 #main
group: deepin-sysdev-team
info: linker tools for the amdgcn architecture
- repo: aml
group: deepin-sysdev-team
info: An event loop library that aims at portability, utility and simplicity
- repo: analog
group: deepin-sysdev-team
info: Analog is a fast log file processor that generates usage statistic reports
for web servers.
- repo: android-platform-external-boringssl
group: deepin-pkg
info: Google's internal fork of OpenSSL for the Android SDK
- repo: android-platform-external-libselinux
group: deepin-pkg
info: Security-Enhanced Linux for Android
- repo: android-platform-external-libunwind
group: deepin-pkg
info: libunwind for Android
- repo: android-platform-frameworks-base
group: spark-store-deepin
info: The Android source repositories are quite chaotic. They often include a
mix of things under arbitrary umbrellas. For example, there are parts of this
particular repository that will only ever be built when building the complete
Android OS (aka "target"), other parts that are only built as part of the SDK
to support building Android apps (aka "host"), and other parts that are used
both in the SDK and the Android OS. Most of the source code in this particular
repostory will never be built or included on Debian because it is only used
in the Android OS.
- repo: android-platform-libnativehelper
group: deepin-pkg
info: Support functions for Android's class libraries
- repo: android-platform-system-core
group: deepin-pkg
info: Android tools and basic libraries
- repo: android-platform-system-extras
group: deepin-pkg
info: Android extra libraries
- repo: android-platform-tools
group: deepin-sysdev-team
info: Android utils library for C
- repo: android-sdk-meta
group: deepin-pkg
info: Android SDK meta packages
- repo: apt-file
group: deepin-sysdev-team
info: search for files in Debian packages
- repo: apt-rdepends
group: deepin-sysdev-team
info: This utility can recursively list package dependencies, either forwards
or in reverse.
- repo: aptly
group: deepin-sysdev-team
info: Swiss army knife for Debian repository management
- repo: arch-install-scripts
group: deepin-sysdev-team
info: Scripts for installing Arch Linux
- repo: arch-test
group: deepin-sysdev-team
info: detect architectures supported by your machine/kernel
- repo: architecture-properties
group: deepin-sysdev-team
info: Declarative architecture constraints
- repo: argparse-manpage #main
group: deepin-sysdev-team
info: Automatically build a manpage from argparse
- repo: argtable2
group: deepin-sysdev-team
info: Library for parsing GNU style command line arguments (development headers)
- repo: argyll
group: deepin-sysdev-team
info: Color Management System, calibrator and profiler
- repo: arm-trusted-firmware
group: deepin-sysdev-team
info: software for ARM SoCs - firmware
- repo: arp-scan
group: deepin-sysdev-team
info: arp scanning and fingerprinting tool
- repo: arping
group: deepin-sysdev-team
info: sends IP and/or ARP pings (to the MAC address)
- repo: asmtools #main
group: deepin-sysdev-team
info: OpenJDK AsmTools
- repo: assimp
group: deepin-sysdev-team
info: assimp 3D model import library (testdata)
- repo: astyle
group: deepin-sysdev-team
info: Library header files for Artistic Style
- repo: atop
group: deepin-sysdev-team
info: Monitor for system resources and process activity
- repo: audiofile
group: deepin-sysdev-team
info: Open-source version of SGI's audiofile library
- repo: autodep8
group: deepin-sysdev-team
info: DEP-8 test control file generator
- repo: autojump
group: deepin-sysdev-team
info: shell extension to jump to frequently used directories
- repo: autopep8 #main
group: deepin-sysdev-team
info: tool that automatically formats Python code to conform to PEP 8
- repo: babel-minify #main
group: deepin-sysdev-team
info: ES6+ aware minifier based on the Babel toolchain
- repo: babeld
group: deepin-sysdev-team
info: loop-free distance-vector routing protocol
- repo: base16384
group: deepin-sysdev-team
info: Encode binary files to printable utf16be
- repo: bashdb
group: deepin-sysdev-team
info: A debgger for bash (the Bourne again shell)
- repo: bb
group: deepin-sysdev-team
info: ASCII-art demo based on AAlib
- repo: bear
group: deepin-sysdev-team
info: Generate compilation database for clang tooling
- repo: betamax #main
group: deepin-sysdev-team
info: VCR imitation designed only for python-requests
- repo: bignumber.js #main
group: deepin-sysdev-team
info: Arbitrary-precision decimal and non-decimal arithmetic
- repo: binaryornot
group: deepin-sysdev-team
info: Python module to determine if a file is binary or text
- repo: binutils-arm-none-eabi #main
group: deepin-sysdev-team
info: GNU assembler, linker and binary utilities for ARM Cortex-R/M processors
- repo: binutils-or1k-elf
group: deepin-sysdev-team
info: GNU binary utilities for the Open RISC 1000 processors
- repo: bird
group: deepin-sysdev-team
info: Internet routing daemon with full support for all the major routing protocols
- repo: bird2
group: deepin-sysdev-team
info: Internet routing daemon with full support for all the major routing protocols
- repo: blockdiag
group: deepin-sysdev-team
info: generate block-diagram image file from spec-text file
- repo: blop
group: deepin-sysdev-team
info: Bandlimited wavetable-based oscillator plugins for LADSPA hosts
- repo: bnd
group: deepin-sysdev-team
info: The bnd tool helps you create and diagnose OSGi bundles
- repo: bolt #main
group: deepin-sysdev-team
info: system daemon to manage thunderbolt 3 devices
- repo: boolstuff
group: deepin-sysdev-team
info: It is a C++ library that supports a few operations on boolean expression
binary trees.
- repo: boost1.81
group: deepin-sysdev-team
info: Boost provides free peer-reviewed portable C++ source libraries.
- repo: boost1.83 #main
group: deepin-sysdev-team
info: Boost provides free peer-reviewed portable C++ source libraries.
- repo: box64 #main
group: deepin-sysdev-team
info: run amd64 binaries on arm64 without emulating library calls
- repo: bpfcc
group: deepin-sysdev-team
info: shared library for BPF Compiler Collection (BCC)
- repo: bpftrace
group: deepin-sysdev-team
info: high-level tracing language for Linux eBPF
- repo: bpython
group: deepin-sysdev-team
info: fancy interface to the Python 3 interpreter
- repo: braa
group: deepin-sysdev-team
info: Braa is a mass snmp scanner.
- repo: brise
group: deepin-sysdev-team
info: Rime Input Method Engine, the schema data RIME is the acronym of Rime Input
Method Engine.
- repo: brltty
group: deepin-sysdev-team
info: Access software for a blind person using a braille display
- repo: broadcom-sta
group: deepin-sysdev-team
info: dkms source for the Broadcom STA Wireless driver
- repo: bsdmainutils #main
group: deepin-sysdev-team
info: Transitional package for more utilities from FreeBSD.
- repo: bsfilter
group: deepin-sysdev-team
info: Bayesian spam filter
- repo: btop
group: deepin-sysdev-team
info: Modern and colorful command line resource monitor that shows usage and stats
- repo: butt
group: deepin-sysdev-team
info: an easy to use, multi OS streaming tool.
- repo: byacc
group: deepin-sysdev-team
info: Berkeley Yacc, a parser generator
- repo: c-blosc2 #main
group: deepin-sysdev-team
info: Fast, compressed, persistent binary data store library for C
- repo: c2050
group: deepin-sysdev-team
info: printer driver for Lexmark 2050 Color Jetprinter
- repo: cabal-debian
group: deepin-sysdev-team
info: Create a Debianization by examining a .cabal file.
- repo: cabextract
group: deepin-sysdev-team
info: Microsoft Cabinet file unpacker
- repo: cachy #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: camlp-streams
group: deepin-sysdev-team
info: OCaml library for programming with data streams
- repo: cataclysm-dda
group: deepin-sysdev-team
info: post-apocalyptic roguelike game
- repo: catch
group: deepin-sysdev-team
info: C++ Automated Test Cases in Headers
- repo: catcodec
group: deepin-sysdev-team
info: tool to decode/encode the sample catalogue for OpenTTD
- repo: chafa #main
group: deepin-sysdev-team
info: ASCII art image generator
- repo: cherrytree
group: deepin-sysdev-team
info: hierarchical note taking application
- repo: chromium
group: deepin-sysdev-team
info: chromium
- repo: civetweb
group: deepin-sysdev-team
info: embeddable web server with optional CGI, SSL and Lua support
- repo: clamav
group: deepin-sysdev-team
info: anti-virus utility for Unix
- repo: clamtk
group: deepin-sysdev-team
info: graphical front-end for ClamAV
- repo: claws-mail
group: deepin-sysdev-team
info: Fast, lightweight and user-friendly GTK based email client
- repo: cli11 #main
group: deepin-sysdev-team
info: Command line parser for C++11 and beyond
- repo: click #main
group: deepin-sysdev-team
info: tool for handling (and building) Click packages
- repo: clikit #main
group: deepin-sysdev-team
info: utilities to build beautiful command lines interfaces
- repo: cloc
group: deepin-sysdev-team
info: statistics utility to count lines of code
- repo: clonezilla
group: deepin-sysdev-team
info: bare metal backup and recovery of disk drives
- repo: cloud-sptheme #main
group: deepin-sysdev-team
info: Cloud Sphinx theme and related extensions
- repo: clutter-1.0 #main
group: deepin-sysdev-team
info: Open GL based interactive canvas library
- repo: cmake-fedora
group: deepin-sysdev-team
info: CMake helper modules for fedora developers
- repo: cmatrix
group: deepin-sysdev-team
info: Screen saver for the terminal based in the movie "The Matrix".
- repo: cockpit
group: deepin-sysdev-team
info: Web Console for Linux servers
- repo: codeblocks
group: deepin-sysdev-team
info: Code::Blocks integrated development environment (IDE)
- repo: coffeescript #main
group: deepin-sysdev-team
info: interpreter and compiler for the CoffeeScript language
- repo: cohomcalg
group: deepin-sysdev-team
info: It is a software package for computing sheaf cohomologies of line bundles
on toric varieties.
- repo: coin3
group: deepin-sysdev-team
info: High-level 3D graphics devkit with Open Inventor and VRML97 support
- repo: coinor-bonmin
group: deepin-sysdev-team
info: It can solve general MINLP (Mixed Integer NonLinear Programming) problems.
- repo: coinor-csdp
group: deepin-sysdev-team
info: It is a software package for solving semidefinite programming problems.
- repo: coinor-dylp
group: deepin-sysdev-team
info: It is a software package for solving constrained linear mathematical optimization
problems.
- repo: collada-dom
group: deepin-sysdev-team
info: COLLADA using double precision
- repo: colored #main
group: deepin-sysdev-team
info: simple library for coloring and formatting in terminal
- repo: colortest
group: deepin-sysdev-team
info: utilities to test color capabilities of terminal
- repo: commons-text #main
group: deepin-sysdev-team
info: Apache Commons Text
- repo: conky
group: deepin-sysdev-team
info: highly configurable system monitor
- repo: containerd #main
group: deepin-sysdev-team
info: open and reliable container runtime (development files)
- repo: continuity #main
group: deepin-sysdev-team
info: Externally reusable Go packages included with Continuity
- repo: contourpy #main
group: deepin-sysdev-team
info: Python library for calculating contours of 2D quadrilateral grids
- repo: cool-retro-term
group: deepin-sysdev-team
info: A good looking terminal emulator which mimics the old cathode display.
- repo: corkscrew
group: deepin-sysdev-team
info: corkscrew is a simple tool for tunneling SSH through HTTP proxies
- repo: coverxygen
group: deepin-sysdev-team
info: Generate doxygen's documentation coverage report
- repo: cowsay
group: deepin-sysdev-team
info: configurable talking cow
- repo: cpp-httplib
group: deepin-sysdev-team
info: A C++ header-only HTTP/HTTPS server and client library
- repo: cpp-jwt
group: deepin-sysdev-team
info: JSON Web Token library for C++
- repo: cppcheck
group: deepin-sysdev-team
info: tool for static C/C++ code analysis (CLI)
- repo: cppdap #main
group: deepin-sysdev-team
info: C++11 implementation of the Debug Adapter Protocol
- repo: cppgir
group: deepin-sysdev-team
info: C++ binding wrapper generator for GObject introspection
- repo: cpputest #main
group: deepin-sysdev-team
info: C/C++ Unit Testing Framework
- repo: cpufrequtils
group: deepin-sysdev-team
info: This package contains two utilities for inspecting and setting the CPU frequency
through both the sysfs and procfs CPUFreq kernel interfaces.
- repo: crash #main
group: deepin-sysdev-team
info: kernel debugging utility, allowing gdb like syntax
- repo: crashtest #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: crun #main
group: deepin-sysdev-team
info: lightweight OCI runtime for running containers
- repo: crust-firmware
group: deepin-sysdev-team
info: SCP firmware for Allwinner sunxi boards
- repo: cubeb
group: deepin-sysdev-team
info: Cubeb is a cross-platform audio library.
- repo: cups-bjnp #main
group: deepin-sysdev-team
info: printer backend for Canon BJNP protocol
- repo: cups-pdf #main
group: deepin-sysdev-team
info: printer driver for PDF writing via CUPS
- repo: curl #main
group: deepin-sysdev-team
info: development files and documentation for libcurl (OpenSSL flavour)
- repo: cutter
group: deepin-sysdev-team
info: open-source reverse engineering platform
- repo: cython-legacy #main
group: deepin-sysdev-team
info: C-Extensions for Python 3 (legacy version 0.29)
- repo: d-spy
group: deepin-sysdev-team
info: D-Bus explorer and test app for GNOME
- repo: d3-tip.js #main
group: deepin-sysdev-team
info: Tooltips for d3.js visualizations
- repo: dacite #main
group: deepin-sysdev-team
info: Simple creation of data classes from dictionaries
- repo: dask #main
group: deepin-sysdev-team
info: Minimal task scheduling abstraction
- repo: dask.distributed #main
group: deepin-sysdev-team
info: Dask Distributed computing
- repo: db-defaults
group: deepin-sysdev-team
info: Berkeley Database Utilities
- repo: ddate
group: deepin-sysdev-team
info: convert Gregorian dates to Discordian dates
- repo: debconf-kde #main
group: deepin-sysdev-team
info: Debconf KDE data files
- repo: debiandoc-sgml
group: deepin-sysdev-team
info: DebianDoc SGML DTD and formatting tools
- repo: debmake
group: deepin-sysdev-team
info: helper script to make the Debian source package
- repo: debootstrap
group: deepin-sysdev-team
info: 自举建立一个基本 Debian 系统
- repo: debputy #main
group: deepin-sysdev-team
info: Package builder that provides a declarative manifest for building debian packages.
- repo: debtree
group: deepin-sysdev-team
info: A tool to visualize the dependency tree of a Debian package
- repo: debugpy #main
group: deepin-sysdev-team
info: Implementation of the Debug Adapter Protocol for Python 3
- repo: deepdiff #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: deepin-cef-helper
group: deepin-qt-team
info: CEF Development environment one-click installation of the meta-software package
- repo: deepin-desktop-environment
group: deepin-sysdev-team
info: Deepin New Desktop Environment - Next
- repo: deepin-dtk5-helper
group: deepin-qt-team
info: Dtk 5 Development environment one-click installation of the meta-software package
- repo: deepin-electron-helper
group: deepin-qt-team
info: Electron development environment one-click installation of meta software packages
- repo: deepin-gbp-dch-plugins
group: deepin-cicd
info: gbp dch plugin used for generating changelog
- repo: deepin-lkrg
group: Avenger-285714
info: deepin Linux Kernel Runtime Guard
- repo: deepin-qt5-helper
group: deepin-qt-team
info: Qt 5 development environment one-click installation of meta software packages
- repo: deepin-unstable-source
group: deepin-sysdev-team
info: v23 内测源
- repo: delve #main
group: deepin-sysdev-team
info: debugger for the Go programming language
- repo: denemo
group: deepin-sysdev-team
info: Free and Open Music Notation Editor
- repo: dh-builtusing #main
group: deepin-sysdev-team
info: debhelper tool generating the Built-Using field for Debian packages
- repo: dh-cmake #main
group: deepin-sysdev-team
info: Debhelper programs for CMake projects
- repo: dh-nss
group: deepin-sysdev-team
info: debhelper addon to inject NSS services into /etc/nsswitch.conf
- repo: dh-vim-addon
group: deepin-sysdev-team
info: debhelper addon to handle vim addons
- repo: dictconv
group: deepin-sysdev-team
info: convert a dictionary file type to another dictionary file type
- repo: dill #main
group: deepin-sysdev-team
info: Serialize all of Python 3
- repo: dillo
group: deepin-sysdev-team
info: Small and fast web browse
- repo: direnv
group: deepin-sysdev-team
info: Utility to set directory specific environment variables
- repo: dirty-equals #main
group: deepin-sysdev-team
info: Make equality checks in Python unit tests more declarative
- repo: discus
group: deepin-sysdev-team
info: Discus aims to make df prettier, with features such as color, graphs, and
smart formatting of numbers.
- repo: distance
group: deepin-sysdev-team
info: A Python library for comparing sequences
- repo: distcc
group: deepin-sysdev-team
info: simple distributed compiler client and server
- repo: distrobox
group: deepin-sysdev-team
info: Another tool for containerized command line environments on Linux
- repo: docker-compose
group: deepin-sysdev-team
info: define and run multi-container Docker applications with YAML
- repo: docker-libkv #main
group: deepin-sysdev-team
info: Key/Value store abstraction library
- repo: docker-registry #main
group: deepin-sysdev-team
info: Docker toolset to pack, ship, store, and deliver content (source)
- repo: docker.io #main
group: deepin-sysdev-team
info: Linux container runtime
- repo: dockerpty
group: deepin-sysdev-team
info: Pseudo-tty handler for docker Python client (Python 3.x)
- repo: docopt.cpp #main
group: deepin-sysdev-team
info: development files for docopt.cpp
- repo: doctest
group: deepin-sysdev-team
info: Light and feature-rich C++ testing framework
- repo: dofi
group: deepin-sysdev-team
info: A smail launchpad
- repo: doit #main
group: deepin-sysdev-team
info: Automation tool to execute any kind of task in a build-tools fashion
- repo: domdf-python-tools #main
group: deepin-sysdev-team
info: Helpful functions for Python
- repo: dot2tex #main
group: deepin-sysdev-team
info: Graphviz to LaTeX converter
- repo: doxygen-awesome-css
group: deepin-sysdev-team
info: A CSS theme for Doxygen
- repo: dpatch
group: deepin-sysdev-team
info: patch maintenance system for Debian source packages
- repo: dpkg-awk #main
group: deepin-sysdev-team
info: Gawk script to parse /var/lib/dpkg/{status,available} and Packages
- repo: dpkg-source-gitarchive
group: deepin-sysdev-team
info: dpkg source format for git repositories
- repo: draco
group: deepin-sysdev-team
info: Encoder and decoder for 3D geometric meshes and point clouds
- repo: drbl
group: deepin-sysdev-team
info: diskless remote boot, and a disk cloning utility
- repo: duktape #amin
group: deepin-sysdev-team
info: embeddable Javascript engine, development files
- repo: dvdisaster
group: deepin-sysdev-team
info: data loss/scratch/aging protection for CD/DVD media
- repo: dwarves #main
group: deepin-sysdev-team
info: set of DWARF-based debugging tools
- repo: dxvk #community
group: deepin-sysdev-team
info: Vulkan-based translation layer for Direct3D 9/10/11
- repo: dynarmic
group: deepin-sysdev-team
info: Dynarmic is a dynamic recompiler for emulating ARMv7-A and ARMv8-A (AArch64)
binaries.
- repo: easyeffects
group: deepin-sysdev-team
info: Audio effects for PipeWire applications
- repo: eb
group: deepin-sysdev-team
info: C library for accessing EB, EBG, EBXA, and EPWING CD-ROM dictionaries
- repo: eckit #main
group: deepin-sysdev-team
info: C++ toolkit for ECMWF tools and applications
- repo: edb-debugger
group: deepin-sysdev-team
info: cross platform disassemble debugger
- repo: edk2
group: deepin-sysdev-team
info: EDK II is a modern, feature-rich, cross-platform firmware development environment
for the UEFI and UEFI Platform Initialization
- repo: eigen3 #main
group: deepin-sysdev-team
info: lightweight C++ template library for linear algebra
- repo: el-api
group: deepin-sysdev-team
info: EL is a simple language designed to meet the needs of the presentation layer
in Java web applications.
- repo: empire
group: deepin-sysdev-team
info: war game of the century
- repo: enchant-2
group: deepin-sysdev-team
info: Wrapper library for various spell checker engines (development)
- repo: enet
group: deepin-sysdev-team
info: thin network communication layer on top of UDP
- repo: equivs
group: deepin-sysdev-team
info: Circumvent Debian package dependencies
- repo: erfs
group: deepin-sysdev-team
info: An easy-to-use, easy-to-setup, hassle-free secure file system with the encrypted
data being stored on a remote cloud server without having to trust the server.
- repo: erofs-utils #main
group: deepin-sysdev-team
info: Utilities for EROFS File System
- repo: error-prone-java #main
group: deepin-sysdev-team
info: Catch common Java mistakes as compile-time errors
- repo: etcd #main
group: deepin-sysdev-team
info: highly-available key value store -- source
- repo: evilwm
group: deepin-sysdev-team
info: evilwm is based on aewm by Decklin Foster.
- repo: exfatprogs
group: deepin-sysdev-team
info: Tools to manage extended file allocation table filesystem. This package
provides tools to create, check, dump and label the filesystem.
- repo: exif
group: deepin-sysdev-team
info: command-line utility to show EXIF information in JPEG files
- repo: exim4
group: deepin-sysdev-team
info: metapackage to ease Exim MTA (v4) installation
- repo: extractpdfmark
group: deepin-sysdev-team
info: Extract page mode and named destinations as PDFmark from PDF
- repo: fail2ban
group: deepin-sysdev-team
info: ban hosts that cause multiple authentication errors
- repo: fakechroot
group: deepin-sysdev-team
info: gives a fake chroot environment - utilities
- repo: faker #main
group: deepin-sysdev-team
info: Python program that generates fake data
- repo: fastfetch
group: deepin-sysdev-team
info: Fastfetch is a neofetch-like tool for fetching system information and displaying
them in a pretty way.
- repo: fcft
group: deepin-sysdev-team
info: Simple library for font loading and glyph rasterization
- repo: fcitx5-table-extra #main
group: deepin-sysdev-team
info: Additional table based input method for Fcitx 5
- repo: fdk-aac
group: deepin-sysdev-team
info: Fraunhofer FDK AAC Codec Library - frontend binary
- repo: feedparser #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: filezilla
group: deepin-sysdev-team
info: Full-featured graphical FTP/FTPS/SFTP client
- repo: findlibs #main
group: deepin-sysdev-team
info: Python 3 module to discover libraries
- repo: fio
group: deepin-sysdev-team
info: flexible I/O tester
- repo: firmware-update #main
group: deepin-kernel
info: Deepin linux firmware update tools develop with kunluntech
- repo: flake
group: deepin-sysdev-team
info: Alternative encoder for the Free Lossless Audio Codec
- repo: flake8-docstrings #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: flake8-polyfill #main
group: deepin-sysdev-team
info: python3-defaults 3.11
- repo: flameshot
group: deepin-sysdev-team
info: Powerful yet simple-to-use screenshot software
- repo: flatbuffers
group: deepin-sysdev-team
info: Memory Efficient Serialization Library
- repo: flit
group: deepin-sysdev-team
info: simple way to put Python packages and modules on PyPI (PEP 517)
- repo: flit-scm
group: deepin-sysdev-team
info: PEP 518 build backend that uses setuptools_scm and flit
- repo: fonts-agave
group: deepin-sysdev-team
info: agave is a fixed-width outline typeface, designed and produced by type agaric.
- repo: fonts-alee
group: deepin-sysdev-team
info: free Hangul TrueType fonts
- repo: fonts-android
group: deepin-sysdev-team
info: Android OS fonts
- repo: fonts-arphic-ukai
group: deepin-sysdev-team
info: AR PL UKai Chinese Unicode TrueType font collection Kaiti style
- repo: fonts-arundina
group: deepin-sysdev-team
info: Thai DejaVu-compatible fonts
- repo: fonts-atarismall
group: deepin-sysdev-team
info: Very small 4 x 8 font
- repo: fonts-beteckna