-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackages
1711 lines (1639 loc) · 64.2 KB
/
Packages
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
Package: td-janus
Source: janus
Version: 0.10.10-1
Architecture: amd64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3602
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, td-libnice-dev, td-libsrtp-dev, td-libwebsockets-dev
Filename: ./td-janus_0.10.10-1_amd64.deb
Size: 1142752
MD5sum: 11380a74ff5d174590158a2642d67298
SHA1: cc94725e6be7709c68a946c0cf7804c7d32f9d87
SHA256: 95fb0f5f4c21f2be25e4ed1956f650ae7a20a0ef5a1d7cc8c10a4d4b0f34c3e6
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-1
Architecture: arm64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3529
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, td-libnice-dev, td-libsrtp-dev, td-libwebsockets-dev
Filename: ./td-janus_0.10.10-1_arm64.deb
Size: 1081396
MD5sum: 1765337c445206a5c514c42c52e852ae
SHA1: 5a380219bd9dd82f7b2dc777f6e76908af8136df
SHA256: 268d5a73e43a9bbba0fb60e56e94e944666846e2fae69145d03ba825859f3769
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-2
Architecture: amd64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3602
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, td-libnice-dev, td-libsrtp-dev, td-libwebsockets-dev
Filename: ./td-janus_0.10.10-2_amd64.deb
Size: 1143072
MD5sum: 5d5148bec5cbd2b389c1f08d243f9fd4
SHA1: 13dd753b55f8f17ec6f14ce260fa58203c89e301
SHA256: 4c38ac22a94cda42ac55278b89bc3325f9af73457ab75c8a9c94a06f6fdc11f5
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-2
Architecture: arm64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3529
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, td-libnice-dev, td-libsrtp-dev, td-libwebsockets-dev
Filename: ./td-janus_0.10.10-2_arm64.deb
Size: 1081488
MD5sum: 4cef565740e22138ddb62df7cfa68d54
SHA1: ad3e36b28cbef77f7fd3dd0a997efc0924eee115
SHA256: d2bfae9d076f7e16d60742d6c6e6262cc6a1ab67861178229ef6ee0e69d19361
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-3
Architecture: arm64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3529
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, td-libnice-dev, td-libsrtp-dev, td-libwebsockets-dev, libgupnp-igd-1.0-dev
Filename: ./td-janus_0.10.10-3_arm64.deb
Size: 1080240
MD5sum: 2fe20e50cf457f320a9c539cb7d0af24
SHA1: 8977eddf42c3de5773dd6fcec3aa015518994ad4
SHA256: 1419a6f0fdd5817ac4b3b15b6f87200c1e2ec4b2630ccd2d55e585995775a43b
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-3
Architecture: amd64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3602
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, td-libnice-dev, td-libsrtp-dev, td-libwebsockets-dev, libgupnp-igd-1.0-dev
Filename: ./td-janus_0.10.10-3_amd64.deb
Size: 1143100
MD5sum: c9ea3cb61808aef5b527f09233176a5c
SHA1: 107d7086370ffec4129afa9de047a62b6280e91c
SHA256: 105a5fc6fbef197010d5965ba0b2a79cae1523cde03f16fd3e9f4db9012f9bb9
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-4
Architecture: arm64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3517
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, libnice-dev, libsrtp2-dev, libwebsockets-dev, libgupnp-igd-1.0-dev
Filename: ./td-janus_0.10.10-4_arm64.deb
Size: 1077244
MD5sum: f7c5aeca869179390357dc670bae1b00
SHA1: c84f143410a4deae6172835bfedab8f31b05239d
SHA256: a1391270aea6329c745b695b4b0e9b2e25597db730dc1190094a3fe0d3e6f25a
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-4
Architecture: amd64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3642
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, libnice-dev, libsrtp2-dev, libwebsockets-dev, libgupnp-igd-1.0-dev
Filename: ./td-janus_0.10.10-4_amd64.deb
Size: 1126248
MD5sum: 4ada113fdd7bb2f43a460aa21f1f0fe5
SHA1: 787820d1ef0b8ef72f42f835250d34e601c8868a
SHA256: 25e352869cbc075e30fa139f7d1a3528233e98855af46f47d1eefd9018f6f168
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-5
Architecture: arm64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3585
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, libnice-dev, libwebsockets-dev, libgupnp-igd-1.0-dev, td-libsrtp-dev (>= 2.3.0-3)
Filename: ./td-janus_0.10.10-5_arm64.deb
Size: 1101420
MD5sum: 93bacfc5c58e9eca65b96f40b19a9184
SHA1: d4311ca762fdb0ef9b478838101b4ab5bc88e80b
SHA256: 9bba7134dbc3a487a17436eddf013a316b5b0ac7e5a6f1e0c0e1f7edbb3742fe
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Source: janus
Version: 0.10.10-5
Architecture: amd64
Maintainer: Debian VoIP Team <[email protected]>
Installed-Size: 3706
Depends: gengetopt, libconfig-dev, libjansson-dev, libopus-dev, libnice-dev, libwebsockets-dev, libgupnp-igd-1.0-dev, td-libsrtp-dev (>= 2.3.0-3)
Filename: ./td-janus_0.10.10-5_amd64.deb
Size: 1150680
MD5sum: 396bee491abf5eb6112d8857802aae95
SHA1: 5fdb44d80a50db82809fa0ce57c627e83bddac02
SHA256: ec3a7ff20190f22ee48b688c6afe4167069a78063b598e78c356588fc745b062
Section: comm
Priority: optional
Homepage: https://janus.conf.meetecho.com
Description: general purpose WebRTC server/gateway
janus is a general purpose WebRTC server/gateway
with a minimal footprint.
.
As such, it doesn't provide any functionality per se
other than implementing the means to set up
a WebRTC media communication with a browser or application,
exchanging JSON messages with it over different transports,
and relaying RTP/RTCP and messages between clients
and the server-side application logic they're attached to.
Any specific feature/application is provided
by server side plugins,
that browsers can then contact via the server
to take advantage of the functionality they provide.
.
Example of such plugins can be implementations of applications
like echo tests, conference bridges, media recorders,
SIP gateways and the like.
Package: td-janus
Version: 0.10.9
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: gengetopt,
libconfig-dev,
libjansson-dev,
libopus-dev,
td-libnice-dev,
td-libsrtp-dev,
td-libwebsockets-dev
Filename: ./td-janus_0.10.9.deb
Size: 5710400
MD5sum: d15ccc70d857a56719d2e6cf3575a782
SHA1: fce4b5c3178c565280feef3260c1ca7d846fb98c
SHA256: f145a3de74e5e8759d6e6557fcacdff75e9adb1fec16490f0d33a318dd289fc6
Section: devel
Description: custom janus build
Package: td-janus
Version: 0.10.9+1
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: gengetopt,
libconfig-dev,
libjansson-dev,
libopus-dev,
td-libnice-dev,
td-libsrtp-dev,
td-libwebsockets-dev
Filename: ./td-janus_0.10.9+1.deb
Size: 5704748
MD5sum: 765e1be3f8f2dae8b8c0e484233e16dc
SHA1: d5fa2195603415738fa2172d78d881b21837aa11
SHA256: 89752f9e7ef4f9ee9bf4e5d18c5ea3c0d2c452048f7a001d5cf6f9e1bad248b7
Section: devel
Description: custom janus build
Package: td-janus
Version: 0.10.9+2
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: gengetopt,
libconfig-dev,
libjansson-dev,
libopus-dev,
td-libnice-dev,
td-libsrtp-dev,
td-libwebsockets-dev
Filename: ./td-janus_0.10.9+2.deb
Size: 5705352
MD5sum: 580ee0724e58d74df42c361c596acd8f
SHA1: 59a9e6be77d42f8b18520c034408f2d17664f7fb
SHA256: 492109c36ca210ed4759d0d78a79f08076773adc736377c8a01c77c9ad41448a
Section: devel
Description: custom janus build
Package: td-janus
Version: 0.10.9+2
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: gengetopt,
libconfig-dev,
libjansson-dev,
libopus-dev,
td-libnice-dev,
td-libsrtp-dev,
td-libwebsockets-dev
Filename: ./td-janus-dist/td-janus_0.10.9+2.deb
Size: 5705352
MD5sum: 580ee0724e58d74df42c361c596acd8f
SHA1: 59a9e6be77d42f8b18520c034408f2d17664f7fb
SHA256: 492109c36ca210ed4759d0d78a79f08076773adc736377c8a01c77c9ad41448a
Section: devel
Description: custom janus build
Package: td-libheif-dev
Source: libheif
Version: 1.12.0-1
Architecture: amd64
Maintainer: igo95862 <[email protected]>
Installed-Size: 2579
Depends: libaom0 (>= 1.0.0), libc6 (>= 2.29), libde265-0 (>= 1.0.2), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), libx265-179 (>= 3.2), libde265-dev, libx265-dev, libaom-dev
Conflicts: libheif-dev, libheif1
Filename: ./td-libheif-dev_1.12.0-1_amd64.deb
Size: 363404
MD5sum: 1c6d0f793c1f052480767429baac5271
SHA1: 350d56803f93203dfdd33a2dba9d5e8203eecce9
SHA256: fb4cb20608e9312d6a09ecfddbf042b27fceca35cb0a75a0a1e0b3ef6391b2c6
Section: libs
Priority: optional
Multi-Arch: same
Description: libheif for tada-team
Package: td-libheif-dev
Source: libheif
Version: 1.12.0-1
Architecture: arm64
Maintainer: igo95862 <[email protected]>
Installed-Size: 2500
Depends: libaom0 (>= 1.0.0), libc6 (>= 2.29), libde265-0 (>= 1.0.2), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), libx265-179 (>= 3.2), libde265-dev, libx265-dev, libaom-dev
Conflicts: libheif-dev, libheif1
Filename: ./td-libheif-dev_1.12.0-1_arm64.deb
Size: 327228
MD5sum: a5677a8a4f4da0dcc19a334ff08baddd
SHA1: 117afdcb1c0f07a76f8eeddbd0e643736766fb65
SHA256: 9e7931b2262c00663688923a06105160ca69bcec5bee372b273e58f845d4148d
Section: libs
Priority: optional
Multi-Arch: same
Description: libheif for tada-team
Package: td-libheif-dev
Source: libheif
Version: 1.12.0-1
Architecture: amd64
Maintainer: igo95862 <[email protected]>
Installed-Size: 2579
Depends: libaom0 (>= 1.0.0), libc6 (>= 2.29), libde265-0 (>= 1.0.2), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), libx265-179 (>= 3.2), libde265-dev, libx265-dev, libaom-dev
Conflicts: libheif-dev, libheif1
Filename: ./td-libvips-dev-dist/td-libheif-dev_1.12.0-1_amd64.deb
Size: 363404
MD5sum: 1c6d0f793c1f052480767429baac5271
SHA1: 350d56803f93203dfdd33a2dba9d5e8203eecce9
SHA256: fb4cb20608e9312d6a09ecfddbf042b27fceca35cb0a75a0a1e0b3ef6391b2c6
Section: libs
Priority: optional
Multi-Arch: same
Description: libheif for tada-team
Package: td-libheif-dev
Source: libheif
Version: 1.12.0-1
Architecture: arm64
Maintainer: igo95862 <[email protected]>
Installed-Size: 2500
Depends: libaom0 (>= 1.0.0), libc6 (>= 2.29), libde265-0 (>= 1.0.2), libgcc-s1 (>= 3.0), libstdc++6 (>= 9), libx265-179 (>= 3.2), libde265-dev, libx265-dev, libaom-dev
Conflicts: libheif-dev, libheif1
Filename: ./td-libvips-dev-dist/td-libheif-dev_1.12.0-1_arm64.deb
Size: 327228
MD5sum: a5677a8a4f4da0dcc19a334ff08baddd
SHA1: 117afdcb1c0f07a76f8eeddbd0e643736766fb65
SHA256: 9e7931b2262c00663688923a06105160ca69bcec5bee372b273e58f845d4148d
Section: libs
Priority: optional
Multi-Arch: same
Description: libheif for tada-team
Package: td-libnice-dev
Version: 0.1.16
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: build-essential,
libssl-dev,
gtk-doc-tools
Conflicts: libnice-dev
Filename: ./td-libnice-dev_0.1.16.deb
Size: 323540
MD5sum: 14940c3d788ef63965a75f4502267e77
SHA1: a8b0ec53fd653c47dc72a0dc04a7c6eca8110b43
SHA256: f3ddabab818b76881f55cbb2daef0d1956ebf084a207adce4c52f8e1caeb9ad6
Section: devel
Description: custom libnice build
Package: td-libnice-dev
Version: 0.1.16
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: build-essential,
libssl-dev,
gtk-doc-tools
Conflicts: libnice-dev
Filename: ./td-libnice-dev-dist/td-libnice-dev_0.1.16.deb
Size: 323540
MD5sum: 14940c3d788ef63965a75f4502267e77
SHA1: a8b0ec53fd653c47dc72a0dc04a7c6eca8110b43
SHA256: f3ddabab818b76881f55cbb2daef0d1956ebf084a207adce4c52f8e1caeb9ad6
Section: devel
Description: custom libnice build
Package: td-libnice-dev
Version: 0.1.16-2
Architecture: amd64
Maintainer: Tada.team <[email protected]>
Installed-Size: 598
Depends: libssl-dev
Conflicts: libnice-dev
Filename: ./td-libnice-dev_0.1.16-2_amd64.deb
Size: 164404
MD5sum: 3477d0878e52f5f1b80cb4122eb1d550
SHA1: 1897eca8955306c2f41dbf2569b8a4c1b7635158
SHA256: 36683472a1079e9ba2302904b2c3db18622f2f9b44928dd5baa76501cc6db134
Section: devel
Priority: optional
Description: custom libnice build
Package: td-libnice-dev
Version: 0.1.16-2
Architecture: arm64
Maintainer: Tada.team <[email protected]>
Installed-Size: 551
Depends: libssl-dev
Conflicts: libnice-dev
Filename: ./td-libnice-dev_0.1.16-2_arm64.deb
Size: 140836
MD5sum: 0063bc9e3ee1794a3110336c0229c995
SHA1: 0639bd5f503b44e116a1b3b68df55c2034a10ac0
SHA256: c02ad2f56a544eb0526d13150d4a8b349ea03afa864355ae72508c3de8192d80
Section: devel
Priority: optional
Description: custom libnice build
Package: td-libsrtp-dev
Version: 2.2.0
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: build-essential
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev_2.2.0.deb
Size: 227600
MD5sum: 8c25229f96bc2936d4d4c91a7dd67cde
SHA1: 5a6efd14096e16fbba25b079e72ae78968b0661f
SHA256: fbe0283344804333216443ff2e041a726e6e85196aa7e0e0058ba7bcad8df753
Section: devel
Description: custom libsrtp build
Package: td-libsrtp-dev
Version: 2.3.0
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: build-essential, libssl-dev
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev_2.3.0.deb
Size: 401124
MD5sum: aa313fc5f04857e34ace9e699760e01c
SHA1: 9c94aef99b50d90f70a6bcd0a0e86d50c61030d2
SHA256: 757a5b5dc8d6bbb3bac19b2a1ccb02ba045014e8963b6e13697d5eb79e0ddd69
Section: devel
Description: custom libsrtp build
Package: td-libsrtp-dev
Version: 2.3.0
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: build-essential, libssl-dev
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev-dist/td-libsrtp-dev_2.3.0.deb
Size: 401124
MD5sum: aa313fc5f04857e34ace9e699760e01c
SHA1: 9c94aef99b50d90f70a6bcd0a0e86d50c61030d2
SHA256: 757a5b5dc8d6bbb3bac19b2a1ccb02ba045014e8963b6e13697d5eb79e0ddd69
Section: devel
Description: custom libsrtp build
Package: td-libsrtp-dev
Version: 2.3.0-2
Architecture: amd64
Maintainer: Tada.team <[email protected]>
Installed-Size: 238
Depends: libssl-dev
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev_2.3.0-2_amd64.deb
Size: 44520
MD5sum: 5c016c6da494a872817a0c5b022cbe9a
SHA1: 547de219bc5ab6175fc2f0e494a9d8b840bcc4ad
SHA256: d08962f5924a636a0c65893b25ac3bc074fa544e90800a1d685042a3eb3a0dab
Section: devel
Priority: optional
Description: custom libsrtp build
Package: td-libsrtp-dev
Version: 2.3.0-2
Architecture: arm64
Maintainer: Tada.team <[email protected]>
Installed-Size: 228
Depends: libssl-dev
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev_2.3.0-2_arm64.deb
Size: 41688
MD5sum: bd863432a3881afd69b619b12c66d717
SHA1: 1878e07f790329611c34c95039e023b8c4fdb16d
SHA256: 0fdecdcb67ee1766ac315604d8daaf8716c6a1e8cef2afa7979346efed515d1c
Section: devel
Priority: optional
Description: custom libsrtp build
Package: td-libsrtp-dev
Source: libsrtp
Version: 2.3.0-3
Architecture: amd64
Maintainer: Tada.team <[email protected]>
Installed-Size: 241
Depends: libssl-dev
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev_2.3.0-3_amd64.deb
Size: 44800
MD5sum: 3cebf669de9a1fb5e2b3918bd8893002
SHA1: 4935b8bddf24139b74a65397c50baa9129171bf4
SHA256: 201900a1a771913a26f39d1fbe97d71150bb04667da9289615ab663cca6ba2f2
Section: devel
Priority: optional
Description: custom libsrtp build
Package: td-libsrtp-dev
Source: libsrtp
Version: 2.3.0-3
Architecture: arm64
Maintainer: Tada.team <[email protected]>
Installed-Size: 244
Depends: libssl-dev
Conflicts: libsrtp-dev
Filename: ./td-libsrtp-dev_2.3.0-3_arm64.deb
Size: 44804
MD5sum: 0c36d00a98dfcc960a2bb25f6f4b9ca2
SHA1: 6594757a6d8714858a2d007beb700fcc7aed2a79
SHA256: a67836712a7084c090f37176f0070dc94dcb58bfe9899725a0ef8da166236e9d
Section: devel
Priority: optional
Description: custom libsrtp build
Package: td-libvips-dev
Version: 8.10.5
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: automake,
build-essential,
cmake,
giflib-tools,
gobject-introspection,
gtk-doc-tools,
libexif-dev,
libexpat1-dev,
libgif-dev,
libgif7,
libglib2.0-dev,
libgsf-1-dev,
libjpeg-dev,
liblcms2-dev,
libmagickcore-dev,
libpng-dev,
libpoppler-glib-dev,
libtiff5-dev,
libtool,
libwebp-dev,
libxml2-dev,
swig
Conflicts: libvips-dev
Filename: ./td-libvips-dev_8.10.5.deb
Size: 16161084
MD5sum: d2105776c525559e1d6efa1a4d371bd6
SHA1: 36ed0cf763adf0691874edf80054bd52219f67b5
SHA256: 0d4cb67888286f5667cd8b26a18d14d0a596ec7f5d1f6b35457faddecaefb305
Section: devel
Description: custom libvips build
Package: td-libvips-dev
Version: 8.10.5+1
Architecture: all
Maintainer: Tada.team <[email protected]>
Depends: automake,
build-essential,
cmake,
giflib-tools,
gobject-introspection,
gtk-doc-tools,
libexif-dev,
libexpat1-dev,
libgif-dev,
libgif7,
libglib2.0-dev,
libgsf-1-dev,
libjpeg-dev,
liblcms2-dev,
libmagickcore-dev,
libpng-dev,
libpoppler-glib-dev,
libtiff5-dev,
libtool,
libwebp-dev,
libxml2-dev,
swig
Conflicts: libvips-dev
Filename: ./td-libvips-dev_8.10.5+1.deb
Size: 16157864
MD5sum: 7d6d054ce1751e140bf5642094824ea5
SHA1: cf120c6ab179742cf80b2ca0579d58b4525301b3
SHA256: ddc5376dda8e9bcf09d22415b59f152981fe1bfa5a57034654d006a9426584c1
Section: devel
Description: custom libvips build
Package: td-libvips-dev
Version: 8.10.5+2
Architecture: amd64
Maintainer: Tada.team <[email protected]>
Depends: automake,
build-essential,
cmake,
giflib-tools,
gobject-introspection,
gtk-doc-tools,
libexif-dev,
libexpat1-dev,
libgif-dev,
libgif7,
libglib2.0-dev,
libgsf-1-dev,
libjpeg-dev,
liblcms2-dev,
libmagickcore-dev,
libpng-dev,
libpoppler-glib-dev,
libtiff5-dev,
libtool,
libwebp-dev,
libxml2-dev,
swig
Conflicts: libvips-dev
Filename: ./td-libvips-dev_8.10.5+2.deb
Size: 16256612
MD5sum: 188a7fa50b2afe8c4e721fa988269416
SHA1: 4ac7bb57ce2c48eb28441a72324a0c23177469c7
SHA256: b0add43a3f0f1fe464e0490ce64b61cf3206125df4404c0af8759099a740763c
Section: devel
Description: custom libvips build
Package: td-libvips-dev
Source: vips
Version: 8.10.5-3
Architecture: arm64
Maintainer: Laszlo Boszormenyi (GCS) <[email protected]>
Installed-Size: 452
Depends: td-libvips42 (= 8.10.5-3), libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig
Recommends: td-libvips-tools
Suggests: nip2
Conflicts: libvips-dev
Filename: ./td-libvips-dev_8.10.5-3_arm64.deb
Size: 71124
MD5sum: 1579fbfd92c0913d5d97269cb82abafd
SHA1: 5c5709b44583a5a2886113762d9ab04ac98200ee
SHA256: 84913a5435600b8b1af1c5a4e5b3ee01550dd74a8ab731c9524f59813419f3b5
Section: libdevel
Priority: optional
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
VIPS consists of two main components: an image processing library
with some command-line tools and a spreadsheet-like graphical user
interface. The graphical interface is available in the nip2 package.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.5-3
Architecture: amd64
Maintainer: Laszlo Boszormenyi (GCS) <[email protected]>
Installed-Size: 452
Depends: td-libvips42 (= 8.10.5-3), libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig
Recommends: td-libvips-tools
Suggests: nip2
Conflicts: libvips-dev
Filename: ./td-libvips-dev_8.10.5-3_amd64.deb
Size: 71132
MD5sum: f10ccea67e990d052fdae781f9cbeb19
SHA1: 32091aa0dba3f1d89c336f593f8fea921fe77b7e
SHA256: 08394199dc7663e891055db6213a8b56166bbc69cc804d1f6585e8bb81436339
Section: libdevel
Priority: optional
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
VIPS consists of two main components: an image processing library
with some command-line tools and a spreadsheet-like graphical user
interface. The graphical interface is available in the nip2 package.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.5-4
Architecture: arm64
Maintainer: igo95862 <[email protected]>
Installed-Size: 3517
Depends: libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig
Conflicts: libvips-dev, libvips-tools, libvips42
Filename: ./td-libvips-dev_8.10.5-4_arm64.deb
Size: 963936
MD5sum: 92c380d6b0e876b4bb06589f2318ae2a
SHA1: 355da6b7aa85cc68536baf677360986ffb2aa992
SHA256: 866dc98b3a016c462dd8e52256fc42242442dfebf662a2dafff3f9021fbe7cae
Section: libdevel
Priority: optional
Multi-Arch: same
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.5-4
Architecture: amd64
Maintainer: igo95862 <[email protected]>
Installed-Size: 3860
Depends: libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig
Conflicts: libvips-dev, libvips-tools, libvips42
Filename: ./td-libvips-dev_8.10.5-4_amd64.deb
Size: 1098888
MD5sum: 915e627aa6355b1f5cf43251ad0516bf
SHA1: ba848d9df977c582dd3bcc491818cf56689a2218
SHA256: 1dff9046d8071d9ee3a49fae21cd86d5afb9086ec083ac3f88edb91957f9d54e
Section: libdevel
Priority: optional
Multi-Arch: same
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.6-1
Architecture: amd64
Maintainer: igo95862 <[email protected]>
Installed-Size: 3944
Depends: libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig
Conflicts: libvips-dev, libvips-tools, libvips42
Filename: ./td-libvips-dev_8.10.6-1_amd64.deb
Size: 1106024
MD5sum: 3042c17209fe021a474bebad43ba5852
SHA1: 223ac22c5e43980204f8e590f5d9153de8d9b8b7
SHA256: a69967e51e8efa45759689787e547b9ee3f78262e62dcda36f1bb973bf2fecbb
Section: libdevel
Priority: optional
Multi-Arch: same
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.6-1
Architecture: arm64
Maintainer: igo95862 <[email protected]>
Installed-Size: 3777
Depends: libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig
Conflicts: libvips-dev, libvips-tools, libvips42
Filename: ./td-libvips-dev_8.10.6-1_arm64.deb
Size: 1022976
MD5sum: a3eeef4c1d6b0c2e51d865295171367e
SHA1: 693b263289f63b19b2722201d40800559787f66b
SHA256: f0269fe7ad36a3dbeb79a84f70e3579a28f6cba383a9b2c6897dc105d8f5bf4d
Section: libdevel
Priority: optional
Multi-Arch: same
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.6-2
Architecture: amd64
Maintainer: igo95862 <[email protected]>
Installed-Size: 3968
Depends: libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig, libheif-dev
Conflicts: libvips-dev, libvips-tools, libvips42
Filename: ./td-libvips-dev_8.10.6-2_amd64.deb
Size: 1108596
MD5sum: 5ff6dc4c9da8be9978d82fc62633b58f
SHA1: b7ea656057afa7ec7494bf561079a4c2253d7272
SHA256: aa7797fe2000d43147311f5d81569e7a173b3374f72875cd6e33664823f45ced
Section: libdevel
Priority: optional
Multi-Arch: same
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev
Source: vips
Version: 8.10.6-2
Architecture: arm64
Maintainer: igo95862 <[email protected]>
Installed-Size: 3805
Depends: libexif-dev, libexpat1-dev, libgif-dev, libgif7, libglib2.0-dev, libgsf-1-dev, libjpeg-dev, liblcms2-dev, libmagickcore-6.q16-dev, libpng-dev, libpoppler-glib-dev, libtiff5-dev, libtool, libwebp-dev, libxml2-dev, swig, libheif-dev
Conflicts: libvips-dev, libvips-tools, libvips42
Filename: ./td-libvips-dev_8.10.6-2_arm64.deb
Size: 1028372
MD5sum: fcfabca18d32c8a404bbdd914a10ffa9
SHA1: ed6e9638e69b8bd0aaa5dddfb2aa52a89a909383
SHA256: 7882cc2f86791e7d8bfde7a6504c5079be616ef1862a03e1a8b1f7efc4e1f94b
Section: libdevel
Priority: optional
Multi-Arch: same
Homepage: https://libvips.github.io/libvips/
Description: image processing system good for very large ones (dev)
VIPS is an image processing system designed with efficiency in mind.
It is good with large images (ones that larger than the amount of RAM in
your machine), and for working with colour. It can perform many
image manipulation tasks much faster than other packages such as
ImageMagick and the GIMP and includes some special features such as
creating single "mosaic" images from multiple parts.
.
This package includes all development files needed to compile
applications that use the vips library.
Package: td-libvips-dev