forked from linglongdev/org.deepin.runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinglong.yaml
More file actions
1100 lines (1096 loc) · 75.2 KB
/
linglong.yaml
File metadata and controls
1100 lines (1096 loc) · 75.2 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
version: "1"
package:
id: org.deepin.runtime.webengine
name: deepin runtime
kind: runtime
version: 25.2.2.4
description: Deepin Tool Kit Widget
base: org.deepin.base/25.2.2
build: |
bash -e build.bash
sources:
# linglong:gen_deb_source sources amd64 http://10.20.64.92:8080/crimson_runtime/stable_20260415 stable main
# source package qt6-base
# linglong:gen_deb_source install libqt6concurrent6
# linglong:gen_deb_source install libqt6core6
# linglong:gen_deb_source install libqt6dbus6
# linglong:gen_deb_source install libqt6gui6
# linglong:gen_deb_source install libqt6network6
# linglong:gen_deb_source install libqt6opengl6
# linglong:gen_deb_source install libqt6openglwidgets6
# linglong:gen_deb_source install libqt6printsupport6
# linglong:gen_deb_source install libqt6sql6
# linglong:gen_deb_source install libqt6sql6-ibase
# linglong:gen_deb_source install libqt6sql6-mysql
# linglong:gen_deb_source install libqt6sql6-odbc
# linglong:gen_deb_source install libqt6sql6-psql
# linglong:gen_deb_source install libqt6sql6-sqlite
# linglong:gen_deb_source install libqt6test6
# linglong:gen_deb_source install libqt6widgets6
# linglong:gen_deb_source install libqt6xml6
# linglong:gen_deb_source install qmake6
# linglong:gen_deb_source install qmake6-bin
# linglong:gen_deb_source install qt6-base-dev
# linglong:gen_deb_source install qt6-base-dev-tools
# linglong:gen_deb_source install qt6-base-private-dev
# linglong:gen_deb_source install qt6-gtk-platformtheme
# linglong:gen_deb_source install qt6-qpa-plugins
# linglong:gen_deb_source install qt6-xcb-private-headers-dev
# linglong:gen_deb_source install qt6-xdgdesktopportal-platformtheme
# source package qt6-svg
# linglong:gen_deb_source install libqt6svg6
# linglong:gen_deb_source install libqt6svgwidgets6
# linglong:gen_deb_source install qt6-svg-dev
# linglong:gen_deb_source install qt6-svg-private-dev
# source package qt6-declarative
# linglong:gen_deb_source install libqt6qml6
# linglong:gen_deb_source install libqt6qmlcompiler6
# linglong:gen_deb_source install libqt6qmlmeta6
# linglong:gen_deb_source install libqt6qmlmodels6
# linglong:gen_deb_source install libqt6qmlnetwork6
# linglong:gen_deb_source install libqt6qmlworkerscript6
# linglong:gen_deb_source install libqt6quick6
# linglong:gen_deb_source install libqt6quickcontrols2-6
# linglong:gen_deb_source install libqt6quickshapes6
# linglong:gen_deb_source install libqt6quicktemplates2-6
# linglong:gen_deb_source install libqt6quicktest6
# linglong:gen_deb_source install libqt6quickvectorimage6
# linglong:gen_deb_source install libqt6quickvectorimagegenerator6
# linglong:gen_deb_source install libqt6quickwidgets6
# linglong:gen_deb_source install qml-qt6
# linglong:gen_deb_source install qml6-module-qmltime
# linglong:gen_deb_source install qml6-module-qt-labs-animation
# linglong:gen_deb_source install qml6-module-qt-labs-folderlistmodel
# linglong:gen_deb_source install qml6-module-qt-labs-platform
# linglong:gen_deb_source install qml6-module-qt-labs-qmlmodels
# linglong:gen_deb_source install qml6-module-qt-labs-settings
# linglong:gen_deb_source install qml6-module-qt-labs-sharedimage
# linglong:gen_deb_source install qml6-module-qt-labs-wavefrontmesh
# linglong:gen_deb_source install qml6-module-qtcore
# linglong:gen_deb_source install qml6-module-qtnetwork
# linglong:gen_deb_source install qml6-module-qtqml
# linglong:gen_deb_source install qml6-module-qtqml-base
# linglong:gen_deb_source install qml6-module-qtqml-models
# linglong:gen_deb_source install qml6-module-qtqml-workerscript
# linglong:gen_deb_source install qml6-module-qtqml-xmllistmodel
# linglong:gen_deb_source install qml6-module-qtquick
# linglong:gen_deb_source install qml6-module-qtquick-controls
# linglong:gen_deb_source install qml6-module-qtquick-dialogs
# linglong:gen_deb_source install qml6-module-qtquick-effects
# linglong:gen_deb_source install qml6-module-qtquick-layouts
# linglong:gen_deb_source install qml6-module-qtquick-localstorage
# linglong:gen_deb_source install qml6-module-qtquick-nativestyle
# linglong:gen_deb_source install qml6-module-qtquick-particles
# linglong:gen_deb_source install qml6-module-qtquick-shapes
# linglong:gen_deb_source install qml6-module-qtquick-templates
# linglong:gen_deb_source install qml6-module-qtquick-tooling
# linglong:gen_deb_source install qml6-module-qtquick-vectorimage
# linglong:gen_deb_source install qml6-module-qtquick-window
# linglong:gen_deb_source install qml6-module-qttest
# linglong:gen_deb_source install qmlscene-qt6
# linglong:gen_deb_source install qt6-declarative-dev
# linglong:gen_deb_source install qt6-declarative-dev-tools
# linglong:gen_deb_source install qt6-declarative-private-dev
# linglong:gen_deb_source install qt6-qmllint-plugins
# linglong:gen_deb_source install qt6-qmltooling-plugins
# source package qt6-imageformats
# linglong:gen_deb_source install qt6-image-formats-plugins
# source package qt6-multimedia
# linglong:gen_deb_source install libqt6multimedia6
# linglong:gen_deb_source install libqt6multimediawidgets6
# linglong:gen_deb_source install libqt6spatialaudio6
# linglong:gen_deb_source install qml6-module-qtmultimedia
# linglong:gen_deb_source install qml6-module-qtquick3d-spatialaudio
# linglong:gen_deb_source install qt6-multimedia-dev
# source package qt6-speech
# linglong:gen_deb_source install libqt6texttospeech6
# linglong:gen_deb_source install qml6-module-qttexttospeech
# linglong:gen_deb_source install qt6-speech-dev
# linglong:gen_deb_source install qt6-speech-flite-plugin
# linglong:gen_deb_source install qt6-speech-speechd-plugin
# source package qt6-tools
# linglong:gen_deb_source install assistant-qt6
# linglong:gen_deb_source install designer-qt6
# linglong:gen_deb_source install libqt6designer6
# linglong:gen_deb_source install libqt6designercomponents6
# linglong:gen_deb_source install libqt6help6
# linglong:gen_deb_source install libqt6uitools6
# linglong:gen_deb_source install linguist-qt6
# linglong:gen_deb_source install qdbus-qt6
# linglong:gen_deb_source install qt6-documentation-tools
# linglong:gen_deb_source install qt6-l10n-tools
# linglong:gen_deb_source install qt6-tools-dev
# linglong:gen_deb_source install qt6-tools-dev-tools
# linglong:gen_deb_source install qt6-tools-private-dev
# source package qt6-wayland
# linglong:gen_deb_source install libqt6waylandclient6
# linglong:gen_deb_source install libqt6waylandcompositor6
# linglong:gen_deb_source install libqt6wlshellintegration6
# linglong:gen_deb_source install qml6-module-qtwayland-client-texturesharing
# linglong:gen_deb_source install qml6-module-qtwayland-compositor
# linglong:gen_deb_source install qt6-wayland
# linglong:gen_deb_source install qt6-wayland-dev
# linglong:gen_deb_source install qt6-wayland-dev-tools
# linglong:gen_deb_source install qt6-wayland-private-dev
# source package qt6-translations
# linglong:gen_deb_source install qt6-translations-l10n
# source package qt6-5compat
# linglong:gen_deb_source install libqt6core5compat6
# linglong:gen_deb_source install qml6-module-qt5compat-graphicaleffects
# linglong:gen_deb_source install qt6-5compat-dev
# source package qt6-webengine
# linglong:gen_deb_source install libqt6pdf6
# linglong:gen_deb_source install libqt6pdfquick6
# linglong:gen_deb_source install libqt6pdfwidgets6
# linglong:gen_deb_source install libqt6webengine6-data
# linglong:gen_deb_source install libqt6webenginecore6
# linglong:gen_deb_source install libqt6webenginecore6-bin
# linglong:gen_deb_source install libqt6webenginequick6
# linglong:gen_deb_source install libqt6webenginewidgets6
# linglong:gen_deb_source install qml6-module-qtquick-pdf
# linglong:gen_deb_source install qml6-module-qtwebengine
# linglong:gen_deb_source install qml6-module-qtwebengine-controlsdelegates
# linglong:gen_deb_source install qt6-image-formats-plugin-pdf
# linglong:gen_deb_source install qt6-pdf-dev
# linglong:gen_deb_source install qt6-webengine-dev
# linglong:gen_deb_source install qt6-webengine-dev-tools
# linglong:gen_deb_source install qt6-webengine-private-dev
# source package qt6-webchannel
# linglong:gen_deb_source install libqt6webchannel6
# linglong:gen_deb_source install libqt6webchannelquick6
# linglong:gen_deb_source install qml6-module-qtwebchannel
# linglong:gen_deb_source install qt6-webchannel-dev
# source package dtkcore
# linglong:gen_deb_source install libdtk6core
# linglong:gen_deb_source install libdtk6core-bin
# linglong:gen_deb_source install libdtk6core-dev
# source package dtkdeclarative
# linglong:gen_deb_source install dtk6-exhibition
# linglong:gen_deb_source install libdtk6declarative
# linglong:gen_deb_source install libdtk6declarative-dev
# linglong:gen_deb_source install qml6-module-qtquick-controls2-styles-chameleon
# source package dtkgui
# linglong:gen_deb_source install libdtk6gui
# linglong:gen_deb_source install libdtk6gui-bin
# linglong:gen_deb_source install libdtk6gui-dev
# source package dtkwidget
# linglong:gen_deb_source install libdtk6widget
# linglong:gen_deb_source install libdtk6widget-bin
# linglong:gen_deb_source install libdtk6widget-dev
# source package dtklog
# linglong:gen_deb_source install libdtk6log
# linglong:gen_deb_source install libdtk6log-dev
# source package dtkcommon
# linglong:gen_deb_source install libdtkcommon-dev
# linglong:gen_deb_source install libdtkdata
# source package qt5integration
# linglong:gen_deb_source install dde-qt6integration
# source package dde-qt5platform-plugins
# linglong:gen_deb_source install dde-qt6xcb-plugin
# source package fcitx5-qt
# linglong:gen_deb_source install fcitx5-frontend-qt6
# linglong:gen_deb_source install libfcitx5-qt-data
# linglong:gen_deb_source install libfcitx5-qt6-1
# linglong:gen_deb_source install libfcitx5-qt6-dev
# source package deepin-shortcut-viewer
# linglong:gen_deb_source install deepin-shortcut-viewer
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/assistant-qt6_6.8.0-0deepin3_amd64.deb
digest: 8b5df0b28f8a7cfc63a1ba4ac369f09a66e19d47a462c4bc8fa8bc552f18a714
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dbus-broker/dbus-broker_29-3_amd64.deb
digest: 68ff1baedb2f4ced1ff5d2f9c3e59bd21e741b7710931e0539c89ef5951df8ba
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt5integration/dde-qt6integration_6.7.34_amd64.deb
digest: ce82ae3d0ec94422657f48aadff798a9ac826643d696a95ff357569e9e4dccd9
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dde-qt5platform-plugins/dde-qt6xcb-plugin_6.7.37_amd64.deb
digest: 628e6f21b49352ea5e40bd8e35e1650a68a9ba13ebcddca65185891ffdbd21a1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/deepin-shortcut-viewer/deepin-shortcut-viewer_5.5.6_amd64.deb
digest: 8502f9dda05684b5114e9497d55e057aa3911f5b03e27db317a211f4bc3389fd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/designer-qt6_6.8.0-0deepin3_amd64.deb
digest: ec9d003e1996d9dd70c29c8b1d1ecbb0df0523cb64eb617e2e958fe59ef3110a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dpkg/dpkg-dev_1.22.6deepin7_all.deb
digest: 4c292d48c0900e0b3939322c8bc7aeba358873c73f608f5f680de8e120d387de
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkdeclarative/dtk6-exhibition_6.7.37_amd64.deb
digest: b86c96f6fd1511d6c40e82c9234e749917c627e4bd82c31e80e0c9f91358e184
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fcitx5-qt/fcitx5-frontend-qt6_5.1.8-2deepin3+rb1_amd64.deb
digest: afcdd83e4141aa0c50986d751011151ac171dd2272054703bba20fd5b8a5562a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/firebird4.0/firebird4.0-common-doc_4.0.5.3140.ds6-17_all.deb
digest: fafd08c872d1279aa0bde2e0bdf40a57721961934c0593352b6a2c551aa232a5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/firebird4.0/firebird4.0-common_4.0.5.3140.ds6-17_all.deb
digest: ef932bad267f9d4d49c0c376ae1d0fc1a9b595054f8450d42b2a0d6621bc7084
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fonts-noto/fonts-croscore_20201225-deepin_all.deb
digest: afbaf120869a08aa7dd14da9ad014de48a751aa4330534b531410bb86c411b55
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fonts-freefont/fonts-freefont-otf_20120503-10_all.deb
digest: c66666da94b9a0477351ee9d6d7a247a0a3c842e428da770991b45f03be2ee72
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-10_all.deb
digest: 79b23c3945d4628463672a804a0e81bc4c262ef87cb6316afb40167a50bc3145
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fonts-liberation/fonts-liberation_2.1.5-3_all.deb
digest: 9285213fd8d6515bc6c1be5b810bf39918a668a17024a9fd3541879ce7fb5344
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/t/tex-gyre/fonts-texgyre_20180621-3.1_all.deb
digest: f66d6f798c4b99d8490558cc8209c069b0fe5577c11378c0e01f9e87ddf10824
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libg/libgudev/gir1.2-gudev-1.0_238-2deepin1_amd64.deb
digest: 3cbcb69c6edaebc428fc9f7c19a4a4e7a057bb980ab6b6f754561e3aee3ea011
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/i/isa-support/isa-support_27_amd64.deb
digest: 764f515a4fe0c4fa5f52b1c2d381767dd637aa3fe7c58764b2856266f9096af0
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/ffmpeg/libavformat60_6.1.1-2deepin6_amd64.deb
digest: c04d5149ac01cd0ed79bc7e786594c069e2f00c9f7bae81c7ae393994669cfa4
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libb/libb2/libb2-1_0.98.1-1.1_amd64.deb
digest: ad82b2de93cc49cdf37c861b03275245318b1555255639e5e805cf612a40171e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/u/util-linux/libblkid-dev_2.40.4-3deepin4_amd64.deb
digest: a4d108ebdc3c5710be943be9fc8b480e7db0704da63fb2c041dc2865df4ce4f9
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libb/libbluray/libbluray2_1.3.4-1+rb2_amd64.deb
digest: 563f4d3b275996192a906b926390435bb3e444294f8766b8db5ba66f199db55d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/b/brotli/libbrotli-dev_1.1.0-2_amd64.deb
digest: 87226cff96c560b3ea8b15110f7f2b00047b0cc9dd29c9fdbc372b4d9154de80
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/b/bzip2/libbz2-dev_1.0.8-deepin1_amd64.deb
digest: 60e1d9cbac4fafa4f7823e6495212ec02805997e64dead0f40de1d86ff138d41
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/c/capstone/libcapstone5_5.0.3-1_amd64.deb
digest: 0e6b1c94b28127dbb067f7ded642625abd26fac8bce528aa9bad37e5b66836f8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/c/chromaprint/libchromaprint1_1.5.1-4deepin0_amd64.deb
digest: 1ee2dbafa2c331d58cf10cdf546c760d7a734c5d9fab1b16d2e04e51f6e38623
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/c/cjson/libcjson1_1.7.18-3.1deepin1_amd64.deb
digest: 0c0ac88efe846e4cccd84c896722e981be3a276b984541a4aeb67b1a97a86100
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/l/llvm-toolchain-17/libclang-cpp17_17.0.6-5deepin6_amd64.deb
digest: 53be885997030deba392d4a712ed8fb36978eccedc9c6afc09e923f358a8fc01
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/l/llvm-toolchain-17/libclang1-17_17.0.6-5deepin6_amd64.deb
digest: 5cdfdd92ac7febeb21e8a439a8d34f46b694e816e7b4a53a070cdd6b9325382e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/c/cups/libcups2-dev_2.4.2-5deepin4_amd64.deb
digest: 2b65597e27b2633a6fa4cde66b9f74cec4b426d96de04fb2cd9f1ba460b9367d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/c/cups/libcupsimage2-dev_2.4.2-5deepin4_amd64.deb
digest: d6100be9216b2636af141b875f294538d3850e2005d11baa51055023b7cf9a83
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libd/libdeflate/libdeflate-dev_1.18-1_amd64.deb
digest: 04a8d4c536a9f106a9f4b38fdc012fbe745b928e32ef3f05db4704d30c1023b5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/double-conversion/libdouble-conversion3_3.3.0-1_amd64.deb
digest: e6c6d028a74d0a752ae638ec19b8239f404c36d676c7569936f31000d25a75f4
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dpkg/libdpkg-perl_1.22.6deepin7_all.deb
digest: 04549bfa8689f8ebc2759529bd4c8acb8abca185cf68668033352ef9b546e57a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkcore/libdtk6core-bin_6.7.34_amd64.deb
digest: 31d3ae30642a1234d71899ccab023e24decf9cf4316b69b4017e614ca439e4da
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkcore/libdtk6core-dev_6.7.34_amd64.deb
digest: 84aa30a29a6b03a372fb3c7175f85381dd3282eb29e013415258393db43eb123
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkcore/libdtk6core_6.7.34_amd64.deb
digest: 15beee35fb83876d51cdb11e1a614126bff3d5244099b9355dc4ca7437d1752c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkdeclarative/libdtk6declarative-dev_6.7.37_amd64.deb
digest: c20c11e971113dae4f6778caf1cd8f9d0d422475e5bb289426e0c540c8fedbe7
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkdeclarative/libdtk6declarative_6.7.37_amd64.deb
digest: 6c15447108be8104cc9ed8bad9c39b8899d77cf8b6e96051e1490c328929cf5d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkgui/libdtk6gui-bin_6.7.34_amd64.deb
digest: d109847f1eee342a8fe7e3a5aa973fed3755f81c5670eed1e250702bcadd209e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkgui/libdtk6gui-dev_6.7.34_amd64.deb
digest: 43cf589d7a3c4c5fc11479b7f365a8f7b8c29cdb6f1dde60c4f92a6e4ebfbd91
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkgui/libdtk6gui_6.7.34_amd64.deb
digest: 7cffc3c72e69ed0bdabfacb98bf35e3c66cc5c747bdd700359d15ecc1ba9f99e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtklog/libdtk6log-dev_6.7.38_amd64.deb
digest: c4ce6c42c065f0a3ad6b6e9902832cfd45e03d9169b4fc8a58d199cd99a6214d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtklog/libdtk6log_6.7.38_amd64.deb
digest: ab15e5e3a5523ec9adc29d13db35a76ac795deb528e8a6f959f1e72d68064138
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkwidget/libdtk6widget-bin_6.7.37_amd64.deb
digest: e24d7c9135cfe2302dc4e45d3b46ec774c50632a829364f66b4f47fc512ecf54
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkwidget/libdtk6widget-dev_6.7.37_amd64.deb
digest: 4d207d27c9dd59344e3afc04a5c9ee368cb6921ecffeefa67f7633846c50bdde
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkwidget/libdtk6widget_6.7.37_amd64.deb
digest: 060e608b56e8baea65c4d9142147a7295d00d9ac1ab51019ec51604ad3be43bf
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkcommon/libdtkcommon-dev_6.7.38_amd64.deb
digest: 67a27bb81adfe7d99d6e589f2c0068d48581df6ca4292664501d7e026fff8de0
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkcommon/libdtkdata_6.7.38_amd64.deb
digest: 70935a7d2925c3978ce378eeba79b0b8ad6be5a89a11209c1d5d03dcd10885c3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libe/libevdev/libevdev-dev_1.12.0+dfsg-1_amd64.deb
digest: 7e338355abfb198b7fe4ff9d02f4b950f822965712d429e3a623e25509e41daf
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libe/libevdev/libevdev2_1.12.0+dfsg-1_amd64.deb
digest: 48c0a7c73d835054b291645fa21fd597271e28a6eb98d8b22f2283e364e83893
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/e/expat/libexpat1-dev_2.7.3-1_amd64.deb
digest: c6951644f74c3a2098fb19a42348caf6cb906598093d36661fcecda58e22a835
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/firebird4.0/libfbclient2_4.0.5.3140.ds6-17_amd64.deb
digest: 69c8f541c96059330b8b59f110fc1501594f72c291585c04997795f0b24ba105
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fcitx5-qt/libfcitx5-qt-data_5.1.8-2deepin3+rb1_all.deb
digest: c5323498567c4b1fd58c620d024a153dc9ed17de13291d25e41f89a214007b62
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fcitx5-qt/libfcitx5-qt6-1_5.1.8-2deepin3+rb1_amd64.deb
digest: e24bfbc28cfa374cf094bc4f71db8cac5090e78b0fdcf930af08b8f54e14b85a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fcitx5-qt/libfcitx5-qt6-dev_5.1.8-2deepin3+rb1_amd64.deb
digest: 31325e9bbcb1c37e32e0865ad55d2e6ee1bd4dced9cb8ae8588902e4f06d5904
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fcitx5/libfcitx5utils2_5.1.11-2deepin13_amd64.deb
digest: 3655ae98ebd4096c59141bf3e0830f3ed5a70af85d07387e0cf6389df2792183
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libf/libffi/libffi-dev_3.4.6-1_amd64.deb
digest: eadc61825e77bad028fd5eff398ac0e13da7a08870261058525d3f620d90cb7b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libf/libfile-find-rule-perl/libfile-find-rule-perl_0.34-1_all.deb
digest: 8ebc94473bf3381e34408415da523e390c2fb3be418f3c298deb6bc82373ded5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/flite/libflite1_2.2-7_amd64.deb
digest: 8851ce503276f63416a9f1776fe8051b87c2fafcb3ed0990bd4e1572b4ad3ec8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fmtlib/libfmt10_10.1.1+ds1-4deepin1_amd64.deb
digest: 00a674b9b4c7034dbda109a463cfc89e67f803b2fba83965992754a79e948fb2
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/fontconfig/libfontconfig-dev_2.15.0-2.3deepin1_amd64.deb
digest: f24f727e6c0976f6f7a728eadc4c887c847c6fa241f40c72b0db90d53441fe75
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/freetype/libfreetype-dev_2.13.2+dfsg-1deepin1_amd64.deb
digest: 96d67a80be9adf8a9418e1dd33d2bf12d36bb12d4518297842fc8de29bf50763
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/g/glib2.0/libgirepository-2.0-0_2.80.1-1deepin1_amd64.deb
digest: 6340c9628c7bcfda4c6826a49c52bc8bf28bfb8d12c163eb19ebde7b0ad61578
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libg/libglvnd/libgl-dev_1.7.0-1deepin1_amd64.deb
digest: 9555387119d2c7118202da7424f3d95a358843cb6e3369135979bf3fb1e7586e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/g/glib2.0/libglib2.0-dev-bin_2.80.1-1deepin1_amd64.deb
digest: 47e6ec3f082c09540ec0ce8ec0358e9d0d28ea7822e9e7cd5000672f6fd35adb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/g/glib2.0/libglib2.0-dev_2.80.1-1deepin1_amd64.deb
digest: f6e2df667c442e8ad0305ec62c85227aead61ff85d591ef32ec9de31d086a74e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libg/libglvnd/libglx-dev_1.7.0-1deepin1_amd64.deb
digest: 5b8281d799f1b3844524c1baa475e4876665b4d6062800655e180586dc0015bf
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/g/game-music-emu/libgme0_0.6.3.2-7deepin_amd64.deb
digest: 6f185c6ac2987d5d8ac0f81be7f0377ac34c00ba45ba8d206ae7ef5888bbca00
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/g/gst-plugins-base1.0/libgstreamer-gl1.0-0_1.24.6-1_amd64.deb
digest: 5e0621339870e5af412c689c0fc54313fa60f09c94262689c3b0b8fd6dead35d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libg/libgudev/libgudev-1.0-0_238-2deepin1_amd64.deb
digest: fb9f1c72e40fd7fece5eab37c9eb473bf3d19c84fb808512d60af3bc909a8c5f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libg/libgudev/libgudev-1.0-dev_238-2deepin1_amd64.deb
digest: b0b603d7732573aed035c0ab43d92a054eb4351a7098fe6f37e4c736c1b5bd12
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/g/gumbo-parser/libgumbo2_0.12.0+dfsg-2_amd64.deb
digest: b4036cefbbc4f6a5f73f6ac19d3065c52dc6b923691268c5b3032971465c35ac
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libi/libinput/libinput-bin_1.26.0-1deepin3_amd64.deb
digest: eb9aca98fdaf66cc394f87b65799ae177c2f97ca300e0c55a34ac736525c9733
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libi/libinput/libinput-dev_1.26.0-1deepin3_amd64.deb
digest: 9153a6287da744a308744636d0e39ed6a92c25f51d00d50e0376203a48e300c3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libi/libinput/libinput10_1.26.0-1deepin3_amd64.deb
digest: 52cbd20e0fc0708991bf66a0af9f5ad9a18d88a7552a8a1b46e209a2f54d25f0
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/j/jbigkit/libjbig-dev_2.1-3.1-deepin1_amd64.deb
digest: 7ce8d535aa0768ca1cf24178b956b3bbbc82cca19ce4bbe91ab32c36038ae336
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libj/libjpeg-turbo/libjpeg-dev_2.1.5-2_amd64.deb
digest: fbc596effd2b0a596b71e306d120e5b660bd478c8c9d24e47c61b4ce2db33d27
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libj/libjpeg-turbo/libjpeg62-turbo-dev_2.1.5-2_amd64.deb
digest: 126fa110768ecfbb4569ddb66d53621f7007dcefa1234e0ba4f37e364903a607
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/l/lerc/liblerc-dev_4.0.0+ds-3_amd64.deb
digest: 9bf199c57795a3e4c8e7cce1ef1803e32e9d31fc7cb82b5db8275f654e19b655
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/l/litehtml/liblitehtml0_0.9-0deepin1_amd64.deb
digest: 44596cdf0fefdc6412af3e1e0d0a4bdee4762d348cdf3818a2cca0daab437285
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/x/xz-utils/liblzma-dev_5.4.5-0.3_amd64.deb
digest: 0e611c43cc8cee4b31dd530ef21f4efbb16caab257685a770b612146e18a6b8b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mariadb/libmariadb3_11.8.1-4deepin1_amd64.deb
digest: a81ad1bcbf76123a98aca07e8bb02b9e21a592dfdc7513810335c18b471424b4
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mbedtls/libmbedcrypto3_2.16.9-0.1_amd64.deb
digest: 1e2259f608a4bd66990c6ec31539f6b328776721a6ab5893e172802db5b4d952
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/md4c/libmd4c0_0.4.8-1_amd64.deb
digest: 9f1630409adb3464aa42afc519d2163a7741d152b53c937eddea55b9fb6fb10a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libm/libmng/libmng1_1.0.10+dfsg-3.1-deepin1_amd64.deb
digest: 256423c8e3c4afcbdf72973db84b1e919187b65955c685ee16f9a5635d436943
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/u/util-linux/libmount-dev_2.40.4-3deepin4_amd64.deb
digest: b88f61259a6d84105bed6041a41348d696d49ff8aea65ef1308e84d9399999fe
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mpg123/libmpg123-0_1.32.8-1deepin1_amd64.deb
digest: 8da2a921507884c5bb32854be4feaa1fcf5cd51d5d41b413e0f75982ad578a9f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mtdev/libmtdev-dev_1.1.6-1_amd64.deb
digest: 92553337dcd1837205a4f136419b0cf40956e0975a938ad8e8e7b586659d0e46
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mtdev/libmtdev1_1.1.6-1_amd64.deb
digest: 28686d830a44272e63013aae1e508f0f767ea28c2a4856d6c6724e11b2a6f93e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/n/norm/libnorm1_1.5.9+dfsg-2_amd64.deb
digest: 5b552cdd40095bd94c6276021dfc5360f2a6289aa94f155ab3ab3daaef341c1d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libn/libnumber-compare-perl/libnumber-compare-perl_0.03-2_all.deb
digest: c37a63d53d982b9596a8e498e9ef95cf07cc245eaa2a8df8fc8546e82511fa7c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/u/unixodbc/libodbc1_2.3.6-0.1-deepin1_amd64.deb
digest: f38475bd848c5e0f4481bb11a55779bcf37d263523f5b7a7625511e7202236b0
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libg/libglvnd/libopengl-dev_1.7.0-1deepin1_amd64.deb
digest: 178ad33f72e1905c6d777a680fad42295608be7a6f8f95dfe5f2f27dbfcd5505
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libo/libopenmpt/libopenmpt0_0.5.13-1deepin0_amd64.deb
digest: a037354a8429c3c32358ee745ab5dfe3d92cc60b74fa68d6355e8b63ce100fcc
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pcre2/libpcre2-32-0_10.46-1_amd64.deb
digest: 97811098f7fc09c7cf0f3e1b5bdd9812af8aa5793039e8b678bfeb8d57b9750d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pcre2/libpcre2-dev_10.46-1_amd64.deb
digest: f1850c35ce5b42ad77153650ea66f8611b2c171b5b8761870f938795f517920f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pcre2/libpcre2-posix3_10.46-1_amd64.deb
digest: d4e0f487adebdfeb320945153d10ec21f094eb4aea3c806db768ab89f8da86eb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libp/libpgm/libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb
digest: b8f9b921c681e6c08abd8d452489762dc8ec3234e058407757f4f383ba2a01c5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pkgconf/libpkgconf3_1.8.1-4_amd64.deb
digest: e4677f42eb04cd63106e75ef1c008595a5b306129d6fdd58171a4b3732f2aca3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libp/libpng1.6/libpng-dev_1.6.45-1deepin1_amd64.deb
digest: 8d86e3bef4bb2aa5b9a98eab26d7bfc4929e2596808018ab4dcd905d7b045961
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/postgresql-16/libpq5_16.3-1_amd64.deb
digest: f458fa7e81f3f405b122df4a87d65d93446476b0e60da81ea8062235513df9eb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libp/libpthread-stubs/libpthread-stubs0-dev_0.4-1_amd64.deb
digest: 8be922fba920a96d098288da4fa5f1d5dfb778b362d7a26ed738014305aa3787
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6concurrent6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 55a196ff4bec5823b6a575786527ce5e3986828b51babd9e588bea8a155ccb8c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-5compat/libqt6core5compat6_6.8.0-0deepin_amd64.deb
digest: ab7b2830d58cf362c4f33c7252a7ffe5130893560082eb6a43a9d208e4407e84
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6core6_6.8.0+dfsg-0deepin23_amd64.deb
digest: f38eeba0a1b17444653ec405895b293a58ba9243b19cb4d769b9257b39c8305f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6dbus6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 4e746495d4b45b99d7631e7af5a3c828ad66b07f29ac539d31eab07d5cdf30d7
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/libqt6designer6_6.8.0-0deepin3_amd64.deb
digest: fca05a0b5e2a9e79d70fb282e4fd5be1d8c0e5218bb359e5985c47a3d886905b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/libqt6designercomponents6_6.8.0-0deepin3_amd64.deb
digest: a7cdf3370adfc03459761b96ea0701a32374981e41d875338cf21f68e32e31fb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6gui6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 48b849c1cfa4d1c125e3e74712fde44449b82d1069a0e1c9f1bc8a6bd0152a3b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/libqt6help6_6.8.0-0deepin3_amd64.deb
digest: 1c3db1f054f82d7c0957edb0e59a084a81a7c3df5c43357f479accbf9df075e5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-multimedia/libqt6multimedia6_6.8.0-0deepin_amd64.deb
digest: dbc187ef7ae9fc30a2880002a2cc4bfa132f83dc7c2abff91b480bec6a8fd187
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-multimedia/libqt6multimediawidgets6_6.8.0-0deepin_amd64.deb
digest: d754dd297c4bd2b2a93ef7d7bec5b1929a8f06a6b35ded515e01331633d1204d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6network6_6.8.0+dfsg-0deepin23_amd64.deb
digest: a6c55c0cc02b525308a1947845429bb3edf3d59744a3388ea6cac88d6a3ed4a1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6opengl6_6.8.0+dfsg-0deepin23_amd64.deb
digest: a6c7a015d5f7a2fdffcd889fee78e5da99bf0ad130f47a20133fb39301284949
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6openglwidgets6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 7ac0ebc7a2dae4913cad047b7e50f263060fb78ca4fa5abdb8590d49928ef697
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6pdf6_6.8.0-0deepin2_amd64.deb
digest: 5e0910080ac074b125725c176d0ade642eccb7e8c0598c26d9db20dd7ca47b29
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6pdfquick6_6.8.0-0deepin2_amd64.deb
digest: 1f8dd7dd059b5542d03d9c0372944ea8788d47b099876fb85c052862abd0bd76
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6pdfwidgets6_6.8.0-0deepin2_amd64.deb
digest: 07e0c3776663cd56ee15e5019c868a460f5ac9a34a263ecbbfc35b1b80c3d929
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-positioning/libqt6positioning6-plugins_6.8.0-0deepin_amd64.deb
digest: 1a56ff6f735c76dcd4844af8d33da545bd8205d828e7cc273b9a0699ee89ece8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-positioning/libqt6positioning6_6.8.0-0deepin_amd64.deb
digest: 6aca2b7a08e3dcb7fd06c96b58f6c281a3bc345bd1afc9053267dcfc50beb98b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-positioning/libqt6positioningquick6_6.8.0-0deepin_amd64.deb
digest: 545fb71e264f83227b6c2afa98b55a516bd90e88f0889f4830ff052e3c95b273
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6printsupport6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 6e5e294b19978fc4cd73d026cb49caa0c24203ad4a248b19bdee3501056ab2d1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6qml6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 36d0443dea97ca2a9a73b29b9cb0b88a12b21e68b1acbce9404b1b969c872486
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6qmlcompiler6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 1b4aacd3a5e015f4c51a9758b57955af6ecf8b57f724533462d968ce236d6924
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6qmlmodels6_6.8.0+dfsg-0deepin10_amd64.deb
digest: ad8f460c208955b9224a2b1d7aac20105f034dd4065863804b2356b036e79691
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-quick3d/libqt6quick3d6_6.8.0-0deepin2_amd64.deb
digest: 824c7f5ea18c56c178f06c891eb718c939fc0a4d387dc55c048b4b234a21017c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-quick3d/libqt6quick3druntimerender6_6.8.0-0deepin2_amd64.deb
digest: 48df47dc9dab619440be10b81db1a6d75c4e86a6f0b74b98f3d92f6cf97f3894
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-quick3d/libqt6quick3dutils6_6.8.0-0deepin2_amd64.deb
digest: ae1f26a30324396caf7f9b2bfe6194610e91d719d9a2b2d53be96426ebb553ef
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quick6_6.8.0+dfsg-0deepin10_amd64.deb
digest: d269d49afcda0e6563e82a86e21b92ede22845692b457b002a88c34410128893
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quickcontrols2-6_6.8.0+dfsg-0deepin10_amd64.deb
digest: cb774da0434e50790cd507a3fb666938ade62ad638139a2c61e7e5b19d81facd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quicktemplates2-6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 0206b6c4804ba11526a4d4750c4508fbc49a46a3395451442c22df7031c8f333
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quicktest6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 9536ca32686cc45e95b5e988630552aed8477a9f1100d46441d41191d56d0026
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quickvectorimage6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 318a26c06b6fe9e83821a2ab57206fe8fdf9ce65345db9b38e2e2cde778c071f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quickvectorimagegenerator6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 144c2893455bbf7beb309be8b7a160500f5707107272c54b0b5926ead066e7ce
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/libqt6quickwidgets6_6.8.0+dfsg-0deepin10_amd64.deb
digest: a061c61e695cf3b29da3d46106332dc0ed9983ca9114b933cfbc8539b0c82fc8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-serialport/libqt6serialport6_6.8.0-0deepin_amd64.deb
digest: 4d208ae6aa356741f38c81c02088715324c343115a149eb68ea6780a47744b6f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-shadertools/libqt6shadertools6_6.8.0-0deepin1_amd64.deb
digest: 4e5dc0e41f8c49451b4595e605ddbe74d5cb4fca3100d26b552aa6a0931d575c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-multimedia/libqt6spatialaudio6_6.8.0-0deepin_amd64.deb
digest: 73c0e26ebd541bd02158cf6265fcc55b16b7148f9db0a4130b7d7bb50a83978a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6sql6-ibase_6.8.0+dfsg-0deepin23_amd64.deb
digest: 81daa7ac7482425dadbc91b3e4a0b1d3937bbef908a676ab6387868399f27220
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6sql6-mysql_6.8.0+dfsg-0deepin23_amd64.deb
digest: e0a7e4c340f2cf2a3678f5b66fd7636a1b94628e5095f82c530d7e67393a756e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6sql6-odbc_6.8.0+dfsg-0deepin23_amd64.deb
digest: ee6d7effa7144c000e0c4f735718f3778803c5fe1a164b780d5c8dcc573567a3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6sql6-psql_6.8.0+dfsg-0deepin23_amd64.deb
digest: 0318d3ff15107f5c3e308712ce30a7112e678f1ecfccc2032079eb271d58bc9b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6sql6-sqlite_6.8.0+dfsg-0deepin23_amd64.deb
digest: 2c370a18a9c6a42a8283cdc53863769de52431cabd00b196b98608bb82234927
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6sql6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 992afc0c3df2e0dec237c134b5e5de9fd3f06978aeb1cd0a6ba99a33a8a1c57c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-svg/libqt6svg6_6.8.0-0deepin2_amd64.deb
digest: c06568eed5c1bb0163ab9100612d4755bd3bc73cef5c78c9e72cd6816828e0b4
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-svg/libqt6svgwidgets6_6.8.0-0deepin2_amd64.deb
digest: 893d6e756b112108101e2b7ce2645a4924afcd55462b96140974a580abee1799
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6test6_6.8.0+dfsg-0deepin23_amd64.deb
digest: f91971028658594b79a6304949a40eeca5a050fca4f33e75fc66f387f5235b81
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-speech/libqt6texttospeech6_6.8.0-0deepin1_amd64.deb
digest: b31569eb5340aa263ba7d526406c50d7877c94031bcfe9a6da22da6b794a934a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/libqt6uitools6_6.8.0-0deepin3_amd64.deb
digest: fccec1dfae75e5e95ee0c23f7b705c78e84c9646bbb7e2f929ae1bbfbef6e5a9
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-wayland/libqt6waylandclient6_6.8.0-0deepin8_amd64.deb
digest: 1a1fb4b98cc64fd4d31d3640d55902a1085d7af4e80006eb9d074d66ce386f01
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-wayland/libqt6waylandcompositor6_6.8.0-0deepin8_amd64.deb
digest: f0544b2ada9190e818c5d81a772e181179e6ae37451683a2f8ed9e20546e3055
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webchannel/libqt6webchannel6_6.8.0-0deepin_amd64.deb
digest: fc9ed264cf73ad331cceba8db922f4cbbfcf071f0884923f0423106a8d5f5b89
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webchannel/libqt6webchannelquick6_6.8.0-0deepin_amd64.deb
digest: fb9342cac6e8ed67d5f25f3010182d7a8599c32294a847693fba029cb042d1cb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6webengine6-data_6.8.0-0deepin2_amd64.deb
digest: 615fa8d9b60d83038ca5d3507c37b0348d3158a460f096c54f3d518a09ca72e3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6webenginecore6-bin_6.8.0-0deepin2_amd64.deb
digest: 9679bf15044fcb51560b2bf27f4cecc53c38c1852c76de9dc486c67bce0047c0
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6webenginecore6_6.8.0-0deepin2_amd64.deb
digest: da6017a0eb13b1f0f23091d9eefde4cbb06f41d6391bdea9bc2fa48c95b19a9b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6webenginequick6_6.8.0-0deepin2_amd64.deb
digest: 4d83abe0a44684161b08976d6e25b53553b7fd765a7b0c91b802745796ae96be
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/libqt6webenginewidgets6_6.8.0-0deepin2_amd64.deb
digest: 89b6a7fc50f3913a8467cbce0b6d2702cc1467e9895a2f2413bfbf845cf1b3d0
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6widgets6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 6dbeda2bff5ba28e56da3ea7f5930be7c749948288296f8de899e5ff4d4431d6
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-wayland/libqt6wlshellintegration6_6.8.0-0deepin8_amd64.deb
digest: 63d7a1cbd3a67e93f93ec6656bdff6787f51e506e0291634c85cff9d1656491a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/libqt6xml6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 547daa2881ec2cfae38d901ede4cd317f35445b2454c939696aa99eddd7e8853
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libr/librabbitmq/librabbitmq4_0.11.0-1_amd64.deb
digest: 4b74d4425bcb1d23d7763e62cb1c9f2be712d9f92e46542151125ba96d623164
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libr/librist/librist4_0.2.7+dfsg-1_amd64.deb
digest: a1b97e9333948a2fe8001e60d882e7decc9fabb83d5532305f3ae9a2f0473c69
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libs/libselinux/libselinux1-dev_3.5-1deepin5_amd64.deb
digest: f7dfdd9e463828cff8e624ceda7f13cc68f2c9d2e72b27dc7e7315e1193b7d92
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libs/libsepol/libsepol-dev_3.5-2_amd64.deb
digest: 4a1b7141086a540294dfc0df7eb707f2ef1e57d2a2f4b30f80821164d0f97b7b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libw/libwebp/libsharpyuv-dev_1.3.2-0.2_amd64.deb
digest: 7af3357f80d57fdc31a26596f9e93f0218a625929822228d312498cabdcea72e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libs/libsodium/libsodium23_1.0.18-1_amd64.deb
digest: b16ee914acaaad0cb1c062370f30934b76e401350bd531d169e5838927c4da30
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/s/spdlog/libspdlog1.12_1.12.0+ds-2_amd64.deb
digest: 44381cd9ad35fa6ffa7a0b3e27611011602bb32093efaf0c80117dc9f97a371b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/s/speech-dispatcher/libspeechd2_0.11.5-5_amd64.deb
digest: a5b9b34ea8699849e17a2e4c7428f5dabbda217a85ca9f2cc47e4ce6e0d250b5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/s/srt/libsrt1.4-gnutls_1.4.4-4deepin0_amd64.deb
digest: cda4bbbcedb3ddd9b6722acabb811b95d1a6573a60ad7e6fedfbccac843bf8f2
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libs/libssh/libssh-4_0.11.3-1_amd64.deb
digest: a525b7a475d9ef111dd4b9af0baa4eb5a06a15b008b5a9e27f754a5ee091eed7
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/s/startup-notification/libstartup-notification0_0.12-deepin1_amd64.deb
digest: b0e9783da04f53ba8da97660523021322c4477059c63d3684fab283b7f9aef9c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/f/ffmpeg/libswscale7_6.1.1-2deepin6_amd64.deb
digest: 23c5cbb956eacd24e11df263ff700de7557404a6c1309703716efb9eef0d10f5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/s/sysprof/libsysprof-capture-4-dev_46.0-1_amd64.deb
digest: bbaacdcbf341e500cd8fbe0dfb75fc98156b0a5abf94e43105bb5f745c3168dd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libt/libtext-glob-perl/libtext-glob-perl_0.11-2_all.deb
digest: 2e8cf563b486b56b4c875db16a37e5e24168085510b8bfd167efc8367cdcad1f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/t/tiff/libtiff-dev_4.7.1-1_amd64.deb
digest: b7e8b2a089951068c7a0d9d1fc96f1b7e5d6e64dec48f3d82f727e4cb3f59b45
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/t/tiff/libtiffxx6_4.7.1-1_amd64.deb
digest: 7768a717a7f93d1888403b7a1c875a2774c9b711ea84e8cbf17de9b31c617631
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libt/libtommath/libtommath1_1.2.0-6+deb12u1_amd64.deb
digest: 1da0a72adec71588a6ac641b6f60ce39aeaeaf6771bcd2386b7dd33ad49b0548
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/t/tslib/libts0_1.22-1+rb3_amd64.deb
digest: d7c7fffd808cd0b765d2287b98bea752d740994788dbf90de6db4f9710e41162
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/s/systemd/libudev-dev_255.2-4deepin19_amd64.deb
digest: 35f70a1375dc57938ff3592a62d6cfaa1d497cfc03aa867b1742b289c866930e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libu/libudfread/libudfread0_1.1.2-1_amd64.deb
digest: 5ebb4a61642a553212842e52f9bcca0bcdf2fa47f95d8d1a4b30d6096dbda8e9
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libv/libvorbis/libvorbisfile3_1.3.7-1_amd64.deb
digest: 50a8cfed14d73f5e15fe13de7faae7d05b5e3a5afa79bac1ed373cf8487213a1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/v/vulkan-loader/libvulkan-dev_1.3.296.0-1_amd64.deb
digest: 24e268d97e22c4ed71c91201fb5d54f8b4b8689cccd032f11bb4faa1143bae04
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libw/libwacom/libwacom-common_1.12-1_all.deb
digest: ae18d0c6d1b68084756ae6a5ca4d4d680659ad6a9e5384bdbb49de48ffb75bd8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libw/libwacom/libwacom-dev_1.12-1_amd64.deb
digest: 2e107e0a55003a2c223c792b5d505e566c553c42b0f6acc98f927f1a88bf4c2d
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libw/libwacom/libwacom2_1.12-1_amd64.deb
digest: 2e0eb22e108ff3de178a570dcd21ab3d6cc16f6baf94bec37595008786789280
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/w/wayland/libwayland-bin_1.23.1-3_amd64.deb
digest: 452bdd1fa61105c0e7a8aed8afbceac7a3c3cc07983ffec146f77581f48ac713
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/w/wayland/libwayland-dev_1.23.1-3_amd64.deb
digest: 475c2fc3207e28a3d5c54b81b313b00222fd52042fb2beb3cfe7814dd40bceea
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libw/libwebp/libwebp-dev_1.3.2-0.2_amd64.deb
digest: 0c60cd19f18fbd0cf299480c7e7cfcb7451e6b1b05dc8f2d5cae1cd248e4bc5f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libw/libwebp/libwebpdecoder3_1.3.2-0.2_amd64.deb
digest: 26d6ff4ed6bf1da7fe3eafe2514ef5c04a8792381b35e3bd3745fab1b6347246
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libx/libx11/libx11-dev_1.8.7-1_amd64.deb
digest: 93ec6c1345900f791549c12440757ba08e756379278bd6fe5133e6690c544621
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libx/libxau/libxau-dev_1.0.9-1_amd64.deb
digest: 784b6358825482c6b8e0a5515c1ea33a84e1ae70999df930a75c344a476dbafa
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libx/libxcb/libxcb1-dev_1.15-1_amd64.deb
digest: 981d5049c153139995fa5d28ca1da252bbd5239a25111dc7bc28ab8c556d1b0b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libx/libxdmcp/libxdmcp-dev_1.1.2-3_amd64.deb
digest: d0b1950a8dfb16ff2f3c6aac1296b508da0f25eef3bc636feed2116f7ba664bb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libx/libxkbcommon/libxkbcommon-dev_1.6.0-1_amd64.deb
digest: fd7cb0bb0dc64c7417a6418bdf4d67145947902d5dd668eab4949811b170ee51
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libx/libxslt/libxslt1.1_1.1.35-2deepin1_amd64.deb
digest: eed501b6df757628d03efd446bed3721b0d4dc2d15e6f7f664c334c68df54283
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/z/zeromq3/libzmq5_4.3.5-1_amd64.deb
digest: 6374362f4defd2e6a454b31a8fe8e407aeb5558c4cacebc6a97a3c9d7f639e18
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/libz/libzstd/libzstd-dev_1.5.6+dfsg-1_amd64.deb
digest: 92ec406d537e08271b66dbcf10d5730fff8eee067379c9fce7e74e4c53c6b4c3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/linguist-qt6_6.8.0-0deepin3_amd64.deb
digest: f7102c09d7ca6cf19598b0901a46799ed935bd3278323121b11360f38dc48c9f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/l/lsb/lsb-base_11.6_all.deb
digest: f8bedd167280e76636df3a1bc023cd2906d458916c1af4c1d7912c5b971fc642
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/l/lshw/lshw_02.19.git.2021.06.19.996aaad9c7-2deepin0_amd64.deb
digest: d184d5fd7e340055beee8115e1f28663e539c024ede10773ac03f4ca3f86e343
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mailcap/mailcap_3.70_all.deb
digest: 7ca67d118c03eaf58346eb1e676ff16f4d1aa5252a8cc6b5b3b1ed44556180f1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/make-dfsg/make_4.4.1-1_amd64.deb
digest: fc03b0233080c11aadc3ef81283bcba5ff4904e0591ecf2beda7a4e7157e9975
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mariadb/mariadb-common_11.8.1-4deepin1_all.deb
digest: 848333f2b40b586ecf8f0db2b6127398d0423867e689937c4427ab15570e5581
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mime-support/mime-support_3.66_all.deb
digest: 20294deda4378616c2b48614ee226731ec09663c3497c35a467e8ea5fa03f16a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/m/mysql-defaults/mysql-common_5.8+1.1.0_all.deb
digest: 729d9b051d2dcda0d0bf51fee21d3b685093314a0b2283926f1eb11f937cb04c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/patch/patch_2.8-2_amd64.deb
digest: a68c27b1c86624c5b6b60668fe0c11f4414134508fd97454a429e4b7211f70fe
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pkgconf/pkg-config_1.8.1-4_amd64.deb
digest: e9751c5efad4e9fb2150686bfb82ad13ff8b8f7d00592d3571f70f17a61ba884
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pkgconf/pkgconf-bin_1.8.1-4_amd64.deb
digest: 6d6e880665acf6c1600e779d00259242e7f58e957dda43d760b65df472ddbfbd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/pkgconf/pkgconf_1.8.1-4_amd64.deb
digest: 3e8dd26853b621b7b1ef82533bfb3bfa0c9ba07f581df727cb3271e7a35edf33
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/p/python-packaging/python3-packaging_25.0-1_all.deb
digest: 4b0fffc886401daa9acfb53e2b190528e3fad37a49b989c4fae6715004fda41e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/qdbus-qt6_6.8.0-0deepin3_amd64.deb
digest: 3f6d07590c1e8957fdc76082f19363f1fa8e5fcf94f7ae1bada4afbab55eb92b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/qmake6-bin_6.8.0+dfsg-0deepin23_amd64.deb
digest: d175f018dbbae1236092a09cceeb89b8686be4a1acdfecbe1b43f30382f97928
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/qmake6_6.8.0+dfsg-0deepin23_amd64.deb
digest: 3650095cac77b7bc99f11c237f73c55261a58be84049debe73d180177b8c13c2
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml-qt6_6.8.0+dfsg-0deepin10_amd64.deb
digest: 193d0cd790805e4de5e52be2b8f3265385b9bcea996bef78ac4993f6db0d4992
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qmltime_6.8.0+dfsg-0deepin10_amd64.deb
digest: dcdc98ee1686dbbc06ef7cf0931e8c2e1e99a9858b9d69cefcdd99765538e488
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-animation_6.8.0+dfsg-0deepin10_amd64.deb
digest: d54e7797c282b0801e714bb3f366ad7d5e45d4b60ed56e65479c6f9804156e74
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-folderlistmodel_6.8.0+dfsg-0deepin10_amd64.deb
digest: d9644e9dcbc8f947fa63244405ef49bdf1290f29eaa77f32fb94a4f4d6aa07f8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-platform_6.8.0+dfsg-0deepin10_amd64.deb
digest: bc0d4dcc7728fcd116cef421446f6bc5a2351e4c53c09c1cfe59454b9eebf354
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-qmlmodels_6.8.0+dfsg-0deepin10_amd64.deb
digest: 3e548303825c991635a8c36f00579fc94b615ccbc29c951985161078d7b57ab1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-settings_6.8.0+dfsg-0deepin10_amd64.deb
digest: db06883a729cce76bf6b86be68b625cb0d3f5d1f7eb5fcbace1ccb40e59c91b5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-sharedimage_6.8.0+dfsg-0deepin10_amd64.deb
digest: 742588b9264ee54dd4b6735b4dbf9069dfb8e25fab22068eb822f8a90fe04a46
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qt-labs-wavefrontmesh_6.8.0+dfsg-0deepin10_amd64.deb
digest: 1b4d670bf8331982f1908d16e46f8521552e311519d10d86945b1a2f67935e18
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-5compat/qml6-module-qt5compat-graphicaleffects_6.8.0-0deepin_amd64.deb
digest: e3ab20d4d1cf4ee712ac3e5624e78369d8cb5bdae57f830111ca244abbe9b4fb
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtcore_6.8.0+dfsg-0deepin10_amd64.deb
digest: b8f671a38688afa1bfd7d93c1900f284f546b09c60c2452cb460d7e5569f1bdd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-multimedia/qml6-module-qtmultimedia_6.8.0-0deepin_amd64.deb
digest: 3c7e5c7b9970e4d65a36a8480be3572faf88247c25e6885c46232042fb131cbf
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtqml-base_6.6.1+dfsg-1deepin7+rb1_amd64.deb
digest: f97ace68363e7bacbb9ccbea0e581efc04fa2bbca15a0f520e8ee2fe84ddea53
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtqml-models_6.8.0+dfsg-0deepin10_amd64.deb
digest: 521139891eea3b4d1c33963deafd837dc9ee6d607fa20a23e3da65ee2b4ec8d3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtqml-workerscript_6.8.0+dfsg-0deepin10_amd64.deb
digest: e6f714227289c2147b9e0a06256ffbd1ab0b4cea5a9c8fd869289249c608fc40
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtqml-xmllistmodel_6.8.0+dfsg-0deepin10_amd64.deb
digest: 538bd65bfe75cc3ee204032965cb0a8ba8d9819465e948201868c0acf4503de2
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtqml_6.8.0+dfsg-0deepin10_amd64.deb
digest: 18a2f9c2e2e2ed7fed356602edd52bc0c33c9e928c0157989c20b96f74494479
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/d/dtkdeclarative/qml6-module-qtquick-controls2-styles-chameleon_6.7.37_amd64.deb
digest: 0ef771aae1ebf4aa0312b270b77c62ade6d4c0b5494fd34cebe3b390718bc3d4
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-controls_6.8.0+dfsg-0deepin10_amd64.deb
digest: 9e603fc20b2b47bb238dfd9d94f73cef9b7b94f567afa9feddbc754c6712658c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-dialogs_6.8.0+dfsg-0deepin10_amd64.deb
digest: ca43a20e8b8bb2150ffb27d41ded38ddff12195aa3d5b3fd7c73e910cf009daa
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-effects_6.8.0+dfsg-0deepin10_amd64.deb
digest: 766e4e9675ce92ddd5ce65bb99fb17babade7d56a1a1d39bd3c7e61813d61a6b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-layouts_6.8.0+dfsg-0deepin10_amd64.deb
digest: a84a3c5d187cba95dc2952d697b8e9747e43c3b58fcfdbde6c08ba91b6c382e9
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-localstorage_6.8.0+dfsg-0deepin10_amd64.deb
digest: de620ec32a60fa4dae68a988328083c7b98793afcc42110009401205b100387f
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-nativestyle_6.8.0+dfsg-0deepin10_amd64.deb
digest: 4941c8bb2f3ddd5022ede266ed294a21fdd235ce95ee96ba056268972091f54a
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-particles_6.8.0+dfsg-0deepin10_amd64.deb
digest: 291bf32e9ba9f775291ee7d2d8d4b7526fcae6a3cb8d95188dc0f75597e45cd5
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/qml6-module-qtquick-pdf_6.8.0-0deepin2_amd64.deb
digest: a109dddfad006b1d4fe60e08b69462a5ade8f02b53c4be65fdf3346ef6901975
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-shapes_6.8.0+dfsg-0deepin10_amd64.deb
digest: 398c6bf2fc52f590262402b4801ec0c3dd0ce62a1add1cadc07789a64486a2aa
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-templates_6.8.0+dfsg-0deepin10_amd64.deb
digest: 190158cba91807284055a08222b8574411e267f05bb135c2463eae20a260ef33
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-tooling_6.8.0+dfsg-0deepin10_amd64.deb
digest: 5dc0ae7a825f9fb2c34d524d031e0743755569b7a6c608c60cd436fb08b6d908
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick-window_6.8.0+dfsg-0deepin10_amd64.deb
digest: 7f921346273a0cecf18a27b99431b493dfc1188505fd0a2e98dee6ef4968c255
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-multimedia/qml6-module-qtquick3d-spatialaudio_6.8.0-0deepin_amd64.deb
digest: 172fd1eead6e3bff1e2c19e5b6a42a6979ccb7600b2d7ac2a81cf404a1c351b1
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qtquick_6.8.0+dfsg-0deepin10_amd64.deb
digest: 6345b7d1d765d548f8a5ec3af7d764ef71ba382f238c420b0cce90cba4d4e9a8
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qml6-module-qttest_6.8.0+dfsg-0deepin10_amd64.deb
digest: 62ac1b64bc73421748409a73972f8775ee4c94a52989100d0f264f6660e09e4c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-speech/qml6-module-qttexttospeech_6.8.0-0deepin1_amd64.deb
digest: 470f392ceedbbb90b4f889aff6987106e864db604833e0fa3bddd61baa93f3ab
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-wayland/qml6-module-qtwayland-client-texturesharing_6.8.0-0deepin8_amd64.deb
digest: 96920d01282315fb3f99b3fe4cf3d5ec2c7cb64e0a28b20c44128d0990adbad3
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-wayland/qml6-module-qtwayland-compositor_6.8.0-0deepin8_amd64.deb
digest: 645bbfdd31ab123370895c7fd4eed44d17cd945681c77881af89fc119a71856e
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webchannel/qml6-module-qtwebchannel_6.8.0-0deepin_amd64.deb
digest: e3a0aca07707dbe0d908e9a62831ed95171605a6fa890e559948e59b6793af1b
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/qml6-module-qtwebengine-controlsdelegates_6.8.0-0deepin2_amd64.deb
digest: 69e4ba641ce6f6a3341ab19b3160f35184f90452028b6cc3f216d17e42816050
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/qml6-module-qtwebengine_6.8.0-0deepin2_amd64.deb
digest: 7486bdda88b6789ca67c0c92d22c97a00246e4b925985e3a7f05e7064d9d2b6c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qmlscene-qt6_6.8.0+dfsg-0deepin10_amd64.deb
digest: bf89838d941554aa33a82403893335a9654d7b7423731159ae0bc8b5b3b4e4ec
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-5compat/qt6-5compat-dev_6.8.0-0deepin_amd64.deb
digest: a61f1a75f31b6b3ea46551a2801de97d83282870c57ca69f7d916ecac63489ea
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/qt6-base-dev-tools_6.8.0+dfsg-0deepin23_amd64.deb
digest: 557a063f8555b0c5f19f3f5857a1252ef798e3ef900a651c2eef9dc1c255bc78
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/qt6-base-dev_6.8.0+dfsg-0deepin23_amd64.deb
digest: 5638a78999262aa08fb911ecfe8d72d82f0daee801624ebf16c5abd70bfc6f90
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/qt6-base-private-dev_6.8.0+dfsg-0deepin23_amd64.deb
digest: 1a30d7387e949a9e2c72e14fdce4379d0ff8d1afedb22132d3f4a921b2d20754
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qt6-declarative-dev-tools_6.8.0+dfsg-0deepin10_amd64.deb
digest: 7d2deb0c5aad1de440220c697b092bcca41c3ed77ea3eb1c4e4e7925bca2d9fd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qt6-declarative-dev_6.8.0+dfsg-0deepin10_amd64.deb
digest: 8337b9641a2da124be8869b52ba14f023fa92d168afb2c33d0aede82fe567829
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-declarative/qt6-declarative-private-dev_6.8.0+dfsg-0deepin10_amd64.deb
digest: 5ae031ed41159d621df92af9b4987162db5b3807e67e8b84f24a7c53db65a56c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/qt6-documentation-tools_6.8.0-0deepin3_amd64.deb
digest: 9e89f44e0c10a9e499487387a568a1690e46d77078969070fc0e1368a49180c6
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-base/qt6-gtk-platformtheme_6.8.0+dfsg-0deepin23_amd64.deb
digest: 861b548892972e2b92998fc2ef7c1f24ee950c7394408674348a735a79023f5c
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-webengine/qt6-image-formats-plugin-pdf_6.8.0-0deepin2_amd64.deb
digest: a0bda0dc9005e58441b3d11dc92ae7d236784e42c983ce673fbdaab25ccfebdd
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-imageformats/qt6-image-formats-plugins_6.8.0-0deepin1_amd64.deb
digest: 9673c22b10da7c5895a4d3697b970bc2e5217fe09a468eb79760bb5e03c62959
- kind: file
url: http://10.20.64.92:8080/crimson_runtime/stable_20260415/pool/main/q/qt6-tools/qt6-l10n-tools_6.8.0-0deepin3_amd64.deb