-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathrepos.yml
More file actions
2014 lines (1531 loc) · 59.1 KB
/
Copy pathrepos.yml
File metadata and controls
2014 lines (1531 loc) · 59.1 KB
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: 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: aiofiles
group: deepin-sysdev-team
info: support for Python asyncio file operations
- 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-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: arch-install-scripts
group: deepin-sysdev-team
info: Scripts for installing Arch Linux
- repo: argyll
group: deepin-sysdev-team
info: Color Management System, calibrator and profiler
- 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: assimp
group: deepin-sysdev-team
info: assimp 3D model import library (testdata)
- repo: atop
group: deepin-sysdev-team
info: Monitor for system resources and process activity
- repo: autodep8
group: deepin-sysdev-team
info: DEP-8 test control file generator
- 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: bb
group: deepin-sysdev-team
info: ASCII-art demo based on AAlib
- 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: boolstuff
group: deepin-sysdev-team
info: It is a C++ library that supports a few operations on boolean expression binary
trees.
- 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: brise
group: deepin-sysdev-team
info: Rime Input Method Engine, the schema data RIME is the acronym of Rime Input
Method Engine.
- repo: bsdmainutils
group: deepin-sysdev-team
info: Transitional package for more utilities from FreeBSD.
- 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: catch
group: deepin-sysdev-team
info: C++ Automated Test Cases in Headers
- repo: chromium
group: deepin-sysdev-team
info: chromium 网页浏览器
- repo: cohomcalg
group: deepin-sysdev-team
info: It is a software package for computing sheaf cohomologies of line bundles on toric varieties.
- 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: colortest
group: deepin-sysdev-team
info: utilities to test color capabilities of terminal
- repo: corkscrew
group: deepin-sysdev-team
info: corkscrew is a simple tool for tunneling SSH through HTTP proxies
- repo: cppcheck
group: deepin-sysdev-team
info: tool for static C/C++ code analysis (CLI)
- 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: debiandoc-sgml
group: deepin-sysdev-team
info: DebianDoc SGML DTD and formatting tools
- repo: debootstrap
group: deepin-sysdev-team
info: 自举建立一个基本 Debian 系统
- repo: debtree
group: deepin-sysdev-team
info: A tool to visualize the dependency tree of a Debian package
- repo: deepin-desktop-environment
group: deepin-sysdev-team
info: Deepin New Desktop Environment - Next
- repo: deepin-gbp-dch-plugins
group: deepin-cicd
info: gbp dch plugin used for generating changelog
- repo: deepin-unstable-source
group: deepin-sysdev-team
info: v23 内测源
- repo: denemo
group: deepin-sysdev-team
info: Free and Open Music Notation Editor
- repo: dictconv
group: deepin-sysdev-team
info: convert a dictionary file type to another dictionary file type
- 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: distrobox
group: deepin-sysdev-team
info: Another tool for containerized command line environments on Linux
- repo: draco
group: deepin-sysdev-team
info: Encoder and decoder for 3D geometric meshes and point clouds
- repo: dvdisaster
group: deepin-sysdev-team
info: data loss/scratch/aging protection for CD/DVD media
- 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: 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: 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: 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: fail2ban
group: deepin-sysdev-team
info: ban hosts that cause multiple authentication errors
- repo: fdk-aac
group: deepin-sysdev-team
info: Fraunhofer FDK AAC Codec Library - frontend binary
- repo: flake
group: deepin-sysdev-team
info: Alternative encoder for the Free Lossless Audio Codec
- repo: flit
group: deepin-sysdev-team
info: simple way to put Python packages and modules on PyPI (PEP 517)
- 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-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-beteckna
group: deepin-sysdev-team
info: geometric Futura-like sans-serif TrueType font
- repo: fonts-bpg-georgian
group: deepin-sysdev-team
info: BPG Georgian fonts
- repo: fonts-cabinsketch
group: deepin-sysdev-team
info: Fonts-cabinsketch is a playful sister of the Cabin font family.
- repo: fonts-cascadia-code
group: deepin-sysdev-team
info: Cascadia is a fun new coding font that comes bundled with Windows Terminal
- repo: fonts-dzongkha
group: deepin-sysdev-team
info: TrueType fonts for Dzongkha language
- repo: fonts-ecolier-court
group: deepin-sysdev-team
info: Fonts-ecolier-court provides a cursive font covering the basic latin range
with a ink and dip pen style.
- repo: fonts-femkeklaver
group: deepin-sysdev-team
info: Fonts-femkeklaver is a simple handwriting font with strong repeated tracing.
- repo: fonts-firacode
group: deepin-sysdev-team
info: Firacode is a free monospaced font with programming ligatures.
- repo: fonts-gfs-bodoni-classic
group: deepin-sysdev-team
info: Giambattista Bodoni was the most prolific Italian typecutter of the 18th century.
- repo: fonts-gfs-theokritos
group: deepin-sysdev-team
info: In the late 50's Yannis Kefallinos (1894-1958) designed and published an exquisite
book with engraved illustrations of the ancient white funerary pottery in Attica
in collaboration with Varlamos, Montesanto, Damianakis.
- repo: fonts-hack
group: deepin-sysdev-team
info: Hack is designed to be a workhorse typeface for source code.
- repo: fonts-intel-one-mono
group: deepin-sysdev-team
info: an expressive monospaced font family that’s built with clarity, legibility,
and the needs of developers in mind.
- repo: fonts-inter
group: deepin-sysdev-team
info: This is a typeface specially designed for user interfaces with focus on high
legibility of small-to-medium sized text on computer screens.
- repo: fonts-jura
group: deepin-sysdev-team
info: Jura Font Project by Daniel Johnson.
- repo: fonts-lemonada
group: deepin-sysdev-team
info: Lemonada is a modern Arabic and Latin typeface family.
- repo: fonts-linex
group: deepin-sysdev-team
info: Fonts-linex provides fonts suitable for education and institutional use.
- repo: fonts-lxgw-wenkai
group: deepin-sysdev-team
info: lxgw-wenkai is a font drives from Fontworks Klee One , which is a free open
source font
- repo: fonts-material-design-icons-iconfont
group: deepin-sysdev-team
info: Material Design Icons DX
- repo: fonts-mlym
group: deepin-sysdev-team
info: Meta package to install all Malayalam fonts
- repo: fonts-mplus
group: deepin-sysdev-team
info: Fonts-mplus is a collection of sans serif fonts with different weights, including
Japanese glyphs.
- repo: fonts-raleway
group: deepin-sysdev-team
info: Raleway is an elegant sans-serif typeface family.
- repo: fonts-rocknroll
group: deepin-sysdev-team
info: a pop-style font
- repo: fonts-sil-andika
group: deepin-sysdev-team
info: Andika is a sans serif, Unicode-compliant font designed especially for literacy
use, taking into account the needs of beginning readers.
- repo: fonts-sil-annapurna
group: deepin-sysdev-team
info: smart font for languages using Devanagari script
- repo: fonts-smiley-sans
group: deepin-sysdev-team
info: Smiley Sans is a Chinese sans serif font that seeks a balance between humanistic
and geometric features
- repo: fonts-tuffy
group: deepin-sysdev-team
info: the Tuffy Truetype Font Family
- repo: fonts-uralic
group: deepin-sysdev-team
info: Truetype fonts for Cyrillic-based Uralic languages
- repo: fonts-wqy-microhei
group: deepin-sysdev-team
info: WenQuanYi Micro Hei font family is a sans-serif style (also known as Hei,
Gothic or Dotum among the Chinese/Japanese/Korean users) high quality CJK outline
font.
- repo: fort-validator
group: deepin-sysdev-team
info: FORT validator performs the validation of the RPKI repository and serves the
ROAs to the routers.
- repo: fping
group: deepin-sysdev-team
info: sends ICMP ECHO_REQUEST packets to network hosts
- repo: friso
group: deepin-sysdev-team
info: Friso is an open source high performance Chinese word splitter.
- repo: fstrcmp
group: deepin-sysdev-team
info: A library which may be used to make a variety fuzzy comparisons, on strings
and arrays of bytes, including wide character strings and multi-byte character
strings.
- repo: gamgi
group: deepin-sysdev-team
info: GAMGI is a graphical interface tool used to establish, view, and analyze atomic
structures.
- repo: gammaray
group: deepin-sysdev-team
info: Tool for examining the internals of Qt application
- repo: gdk-pixbuf
group: deepin-sysdev-team
info: Image loading and manipulation library
- repo: generate-ninja
group: deepin-sysdev-team
info: meta-build system for ninja
- repo: geographiclib
group: deepin-sysdev-team
info: Geographiclib is a C++ library to solve some geodesic problems
- repo: gifshuffle
group: deepin-sysdev-team
info: Steganography program to gif images
- repo: git-buildpackage
group: deepin-sysdev-team
info: Suite to help with Debian packages in Git repositories
- repo: gla11y
group: deepin-sysdev-team
info: Automatic check of accessibility of .ui files
- repo: gliese
group: deepin-sysdev-team
info: stellar data set from the Third Catalogue of Nearby Stars.
- repo: gnome-common
group: deepin-sysdev-team
info: common scripts and macros to develop with GNOME
- repo: gnome-pkg-tools
group: deepin-sysdev-team
info: GNOME package tools
- repo: gnustep-base
group: deepin-sysdev-team
info: GNUstep Base library - common files
- repo: gnutls28
group: deepin-sysdev-team
info: GNU TLS library - main runtime library
- repo: golang-1.15
group: deepin-sysdev-team
info: Go programming language compiler - metapackage
- repo: golang-1.20
group: deepin-sysdev-team
info: Go programming language compiler - metapackage
- repo: golang-github-akamensky-argparse
group: deepin-sysdev-team
info: Argparse for golang.
- repo: golang-github-fatih-color
group: deepin-sysdev-team
info: Color package for Go (golang)
- repo: golang-github-go-macaron-inject
group: deepin-sysdev-team
info: utilities for mapping and injecting dependencies
- repo: golang-github-go-macaron-toolbox
group: deepin-sysdev-team
info: Rhealth check, pprof, profile and statistic services for Macaro
- repo: golang-github-google-gopacket
group: deepin-sysdev-team
info: This library provides packet processing capabilities for Go
- repo: golang-github-gorilla-websocket
group: deepin-sysdev-team
info: A fast, well-tested and widely used WebSocket implementation for Go.
- repo: golang-github-josharian-native
group: deepin-sysdev-team
info: native byte order for Go
- repo: golang-github-mdlayher-netlink-dev
group: deepin-sysdev-team
info: This package provides low-level access to Linux netlink sockets (AF_NETLINK)
- repo: golang-github-mdlayher-socket
group: deepin-sysdev-team
info: low-level network socket for Go
- repo: golang-github-openprinting-goipp
group: deepin-sysdev-team
info: golang-github-openprinting-goipp is an IPP core protocol in pure Go Library
(RFC 8010).
- repo: golang-github-oschwald-maxminddb-golang
group: deepin-sysdev-team
info: This library provides a reader for the MaxMind DB file format.
- repo: golang-github-pelletier-go-buffruneio
group: deepin-sysdev-team
info: This library provides rune-based buffered input.
- repo: golang-github-rodaine-table
group: deepin-sysdev-team
info: Go CLI Table Generator
- repo: golang-github-spf13-viper
group: deepin-sysdev-team
info: Go configuration with fangs
- repo: golang-github-tidwall-gjson
group: deepin-sysdev-team
info: JSON parser for Go
- repo: golang-github-unknwon-com
group: deepin-sysdev-team
info: commonly used functions for Golang
- repo: golang-golang-x-arch
group: deepin-sysdev-team
info: Library with machine architecture information
- repo: golang-golang-x-exp
group: deepin-sysdev-team
info: Go experimental and deprecated packages
- repo: golang-golang-x-vuln
group: deepin-sysdev-team
info: Go Vulnerability Management
- repo: golang-gopkg-macaron-macaron
group: deepin-sysdev-team
info: modular web framework in Go
- repo: gprename
group: deepin-sysdev-team
info: complete batch renamer for Linux
- repo: grub-efi-arm64-signed
group: deepin-sysdev-team
info: GRand Unified Bootloader, version 2 (arm64 UEFI signed by deepin)
- repo: gsettings-desktop-schemas #main
group: deepin-sysdev-team
info: GSettings desktop-wide schemas
- repo: gtk-layer-shell
group: deepin-sysdev-team
info: GTK library for layer-shell protocol
- repo: gtkmm4.0
group: deepin-sysdev-team
info: C++ wrappers for GTK4
- repo: gyp
group: deepin-pkg
info: Cross-platform build script generator.
- repo: haskell-unicode-collation
group: deepin-sysdev-team
info: Haskell implementation of the Unicode Collation Algorithm
- repo: haskell-unicode-data
group: deepin-sysdev-team
info: Access Unicode character database
- repo: hatop
group: deepin-sysdev-team
info: interactive ncurses client for haproxy
- repo: hexchat
group: deepin-sysdev-team
info: IRC client for X based on X-Chat 2.
- repo: hicolor-icon-theme
group: deepin-sysdev-team
info: default fallback theme for FreeDesktop.org icon themes
- repo: hotspot
group: dde
info: GUI tool for performance analysis
- repo: html2ps
group: deepin-sysdev-team
info: HTML to PostScript converter
- repo: htop
group: deepin-pkg
info: Htop 是一个基于 ncurse 的进程查看器,类似于 top
- repo: hyfetch
group: deepin-sysdev-team
info: Neofetch with LGBTQ+ pride flags!
- repo: hypercorn
group: deepin-sysdev-team
info: ASGI Server based on Hyper (Python3 version)
- repo: icu
group: deepin-sysdev-team
info: ICU is a C++ and C library that provides robust and full-featured Unicode and locale support.
- repo: iftop
group: deepin-sysdev-team
info: displays bandwidth usage information on an network interface
- repo: imagemagick
group: deepin-sysdev-team
info: image manipulation programs
- repo: imath
group: deepin-sysdev-team
info: C++ representation of 2D and 3D vectors and matrices and other objects
- repo: imwheel
group: deepin-sysdev-team
info: A program to configure the mouse wheel to send keypresses
- repo: intltool-debian
group: deepin-sysdev-team
info: Help i18n of RFC822 compliant config files
- repo: iotop
group: deepin-sysdev-team
info: simple top-like I/O monitor
- repo: ipp-usb
group: deepin-sysdev-team
info: ipp-usb is a userland driver for USB devices supporting the IPP over USB protocol.
- repo: iptsd
group: deepin-surface
info: Userspace daemon for Intel Precise Touch & Stylus
- repo: isochron
group: deepin-sysdev-team
info: A real-time application for testing Time Sensitive Networking equipment.
- repo: jam
group: deepin-sysdev-team
info: Software-build tool, replacement for make
- repo: java-sip-api
group: deepin-sysdev-team
info: SIP API for Java
- repo: jpeginfo
group: deepin-sysdev-team
info: jpeginfo can be used to generate informative listings of jpeg files.
- repo: jtreg6
group: deepin-sysdev-team
info: Regression Test Harness for the OpenJDK platform
- repo: kconfiglib
group: deepin-sysdev-team
info: Kconfiglib is a Kconfig implementation in Python.
- repo: kde-dev-utils
group: deepin-sysdev-team
info: This package builds kpartloader and kuiviewer.
- repo: kdeedu-data
group: deepin-sysdev-team
info: KVTML files for KDE-Edu programs
- repo: kpat
group: deepin-pkg
info: solitaire card games
- repo: kpcli
group: deepin-sysdev-team
info: command line interface to KeePassX password manager databases
- repo: ktx
group: deepin-sysdev-team
info: A popular QuakeWorld server modification, adding numerous features to the
core features of the server.
- repo: kwayland
group: deepin-sysdev-team
info: KWayland provides a Qt-style Server library wrapper for the Wayland libraries
- repo: kwrited
group: deepin-sysdev-team
info: Kwrited captures console output (e.g. broadcast messages) and prints it in
a X window.
- repo: larch
group: deepin-sysdev-team
info: Larch is a tool to copy messages from one IMAP server to another quickly and
safely.
- repo: libabigail
group: deepin-sysdev-team
info: This is an interface to the GNU Compiler Collection for the collection and
analysis of compiler-generated binaries.
- repo: libapache-logformat-compiler-perl
group: deepin-sysdev-team
info: Perl module to pre-compile a LogFormat string
- repo: libasa-perl
group: deepin-sysdev-team
info: Perl module for expanding a class or object's list of base classes
- repo: libauthen-simple-passwd-perl
group: deepin-sysdev-team
info: Simple Passwd authentication
- repo: libauthen-simple-perl
group: deepin-sysdev-team
info: simple and consistent perl framework for authentication
- repo: libcgi-compile-perl
group: deepin-sysdev-team
info: module for compiling .cgi scripts to a code reference
- repo: libcgi-emulate-psgi-perl
group: deepin-sysdev-team
info: PSGI adapter for CGI
- repo: libcompress-raw-lzma-perl
group: deepin-sysdev-team
info: low-level interface to lzma compression library
- repo: libcookie-baker-perl
group: deepin-sysdev-team
info: simple cookie string generator and parser
- repo: libcrypt-passwdmd5-perl
group: deepin-sysdev-team
info: interoperable MD5-based crypt() for Perl
- repo: libdebian-copyright-perl
group: deepin-sysdev-team
info: Perl module to parse Debian copyright files
- repo: libdevel-stacktrace-ashtml-perl
group: deepin-sysdev-team
info: module to display a stack trace in HTML
- repo: libfcgi-procmanager-perl
group: deepin-sysdev-team
info: Perl module to help manage FastCGI applications
- repo: libfile-keepass-perl
group: deepin-sysdev-team
info: interface to KeePass V1 and V2 database files
- repo: libfilesys-notify-simple-perl
group: deepin-sysdev-team
info: simple file system monitor
- repo: libgcrypt20
group: deepin-sysdev-team
info: 遵循 LGPL 的加密库 - 运行库
- repo: libgnomekbd
group: deepin-sysdev-team
info: GNOME library to manage keyboard configuration
- repo: libgssglue
group: deepin-sysdev-team
info: libgssglue provides a gssapi interface, but does not implement any gssapi mechanisms itself.
- repo: libhash-multivalue-perl
group: deepin-sysdev-team
info: module for storing multiple values per key in a hash
- repo: libhttp-entity-parser-perl
group: deepin-sysdev-team
info: PSGI compliant HTTP Entity Parser
- repo: libhttp-headers-fast-perl
group: deepin-sysdev-team
info: faster implementation of HTTP::Headers
- repo: libhttp-multipartparser-perl
group: deepin-sysdev-team
info: HTTP multipart MIME parser
- repo: libhttp-request-ascgi-perl
group: deepin-sysdev-team
info: module to setup a CGI environment from a HTTP::Request
- repo: libinsane
group: deepin-sysdev-team
info: Library to access scanner
- repo: libio-compress-brotli-perl
group: deepin-sysdev-team
info: modules to read/write Brotli buffers/streams
- repo: libio-handle-util-perl
group: deepin-sysdev-team
info: module providing helper functions for IO::Handle
- repo: libite
group: deepin-sysdev-team
info: libite holds useful functions and macros developed by both Finit and the OpenBSD
project.
- repo: libkdegames
group: deepin-sysdev-team
info: Development files for the KDE games library.
- repo: libkkc-data
group: deepin-sysdev-team
info: language model data for libkkc
- repo: liblog-dispatch-array-perl
group: deepin-sysdev-team
info: module to log events to an array (reference)
- repo: libmodule-implementation-perl
group: deepin-sysdev-team
info: module for loading one of several alternate implementations of a module
- repo: libmodule-install-authortests-perl
group: deepin-sysdev-team
info: designate tests only run by module authors
- repo: libmodule-install-extratests-perl
group: deepin-sysdev-team
info: contextual tests that the harness can ignore
- repo: libmodule-install-perl
group: deepin-sysdev-team
info: framework for installing Perl modules
- repo: libmodule-pluggable-perl
group: deepin-sysdev-team
info: module for giving modules the ability to have plugins
- repo: libmodule-refresh-perl
group: deepin-sysdev-team
info: tool to refresh %INC files when updated on disk
- repo: libmodule-runtime-conflicts-perl
group: deepin-sysdev-team
info: module to provide information on conflicts for Module::Runtime
- repo: libmodule-runtime-perl
group: deepin-sysdev-team
info: Perl module for runtime module handling
- repo: libmoo-perl
group: deepin-sysdev-team
info: Minimalist Object Orientation library (with Moose compatibility)
- repo: libmoose-perl
group: deepin-sysdev-team
info: It provides a modern, object-oriented methodology for object construction
and class writing
- repo: libmpack
group: deepin-sysdev-team
info: MessagePack for C
- repo: libmpack-lua
group: deepin-sysdev-team
info: MessagePack for Lua
- repo: libmro-compat-perl
group: deepin-sysdev-team
info: method resolution order and method caching in general
- repo: libnamespace-autoclean-perl
group: deepin-sysdev-team
info: module to remove imported symbols after compilation
- repo: libnetfilter-acct
group: deepin-sysdev-team
info: libnetfilter_acct is a userspace library providing an interface to the extended
netfilter accounting infrastructure.
- repo: libnetfilter-acct
group: deepin-sysdev-team
info: a userspace library providing an interface to the extended netfilter accounting
infrastructure.
- repo: libpillowfight
group: deepin-sysdev-team
info: Python 3 bindings for libpillowfight
- repo: libplack-perl
group: deepin-sysdev-team
info: interface between web servers and Perl web applications
- repo: libposix-strftime-compiler-perl
group: deepin-sysdev-team
info: GNU C library compatible strftime for loggers and servers
- repo: librist
group: deepin-sysdev-team
info: RIST is a protocol for low-latency, high-quality, and secure streaming of
audio and video
- repo: librsvg
group: deepin-sysdev-team
info: SAX-based renderer library for SVG files
- repo: libsis-base-java
group: deepin-sysdev-team
info: Base libraries used by software from the SIS division at ETH Zurich
- repo: libsis-jhdf5-java
group: deepin-sysdev-team
info: easy-to-use HDF library for Java
- repo: libsort-naturally-perl
group: deepin-sysdev-team
info: Sort naturally - sort lexically except for numerical parts
- repo: libspnav
group: deepin-sysdev-team
info: provides alternative to the proprietary 3Dconnexion SDK for their 3D input
devices
- repo: libstream-buffered-perl
group: deepin-sysdev-team
info: temporary buffer to store strings in a seekable filehandle
- repo: libterm-readline-gnu-perl