-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathPackages.manifest
More file actions
3145 lines (2957 loc) · 103 KB
/
Copy pathPackages.manifest
File metadata and controls
3145 lines (2957 loc) · 103 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
Package: 464xlat
Version: 12
Depends: libc, kmod-nat46, ip
Source: package/network/ipv6/464xlat
SourceName: 464xlat
License: GPL-2.0
Section: net
SourceDateEpoch: 1623666608
Maintainer: Hans Dedecker <dedeckeh@gmail.com>
Architecture: aarch64_cortex-a53
Installed-Size: 4327
Filename: 464xlat_12_aarch64_cortex-a53.ipk
Size: 5122
SHA256sum: de0a75e0f8025adfea97e26363c774a9d151add021b917143adcd4d2f57559ac
Description: 464xlat provides support to deploy limited IPv4 access services to mobile
and wireline IPv6-only edge networks without encapsulation (RFC6877)
Package: 6in4
Version: 26
Depends: libc, kmod-sit, uclient-fetch
Source: package/network/ipv6/6in4
SourceName: 6in4
License: GPL-2.0
Section: net
SourceDateEpoch: 1623666608
Maintainer: Jo-Philipp Wich <jo@mein.io>
Architecture: all
Installed-Size: 1698
Filename: 6in4_26_all.ipk
Size: 2502
SHA256sum: 0242b26914ac9aa00a7bf386c128aa51c04c8ed01a69b96bf0fcd9d0b9d7ccb7
Description: Provides support for 6in4 tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: 6rd
Version: 10
Depends: libc, kmod-sit
Source: package/network/ipv6/6rd
SourceName: 6rd
License: GPL-2.0
Section: net
SourceDateEpoch: 1623666608
Maintainer: Steven Barth <cyrus@openwrt.org>
Architecture: all
Installed-Size: 3103
Filename: 6rd_10_all.ipk
Size: 3883
SHA256sum: 690650e1ad768fbe10b6d3d8d6a9edd323575ed187afef8fb3db3397591022ea
Description: Provides support for 6rd tunnels in /etc/config/network.
Refer to http://wiki.openwrt.org/doc/uci/network for
configuration details.
Package: 6to4
Version: 13
Depends: libc, kmod-sit
Source: package/network/ipv6/6to4
SourceName: 6to4
License: GPL-2.0
Section: net
SourceDateEpoch: 1623666608
Maintainer: Jo-Philipp Wich <xm@subsignal.org>
Architecture: all
Installed-Size: 1036
Filename: 6to4_13_all.ipk
Size: 1838
SHA256sum: d8adc21e736fc0498e41b1a1c4f04546e920abb7734a184d4ec12650f1f8c5de
Description: Provides support for 6to4 tunnels in /etc/config/network.
Refer to https://openwrt.org/docs/guide-user/base-system/basic-networking
configuration details.
Package: LingTiGameAcc
Version: 2023-1.7.1
Depends: libc, kmod-tun
Source: package/LingTiGameAcc
SourceName: LingTiGameAcc
License: GPLv3
LicenseFiles: LICENSE
Section: opt
SourceDateEpoch: 1673196354
Maintainer: eSir Playground
Architecture: aarch64_cortex-a53
Installed-Size: 2003454
Filename: LingTiGameAcc_2023-1.7.1_aarch64_cortex-a53.ipk
Size: 1999882
SHA256sum: ad919bb86cdff048b6cd882a9ec0eb8119588a30ae4efbb5841b234a4e4bd5b4
Description: LingTi Game Acc is a Game Accelerator which is paid service.
Package: adbyby
Version: 2.7-20200315
Depends: libc
Source: package/lean/adbyby
SourceName: adbyby
Section: net
SourceDateEpoch: 1644735926
Architecture: aarch64_cortex-a53
Installed-Size: 455212
Filename: adbyby_2.7-20200315_aarch64_cortex-a53.ipk
Size: 455530
SHA256sum: 1a044cfa4247ecc180d6176a62bb740b7f396e8cfeee1d4b12a727f23e4c3238
Description: Adbyby is a powerful adblock module to block ad,just like adblock.
Package: appfilter
Version: 5.0.2-1
Depends: libc, libubox20220927, libubus20220601, libuci20130104, libpthread, libjson-c5, libblobmsg-json20220927
Source: package/OpenAppFilter/open-app-filter
SourceName: appfilter
Section: Derry Apps
SourceDateEpoch: 1680511115
Architecture: aarch64_cortex-a53
Installed-Size: 19888
Filename: appfilter_5.0.2-1_aarch64_cortex-a53.ipk
Size: 20589
SHA256sum: d18863d2fbe4fa66df9cffcfea1832eb04bfc03506a64f5d66f659d147c3d5ed
Description: open appfilter app
Package: automount
Version: 1-40
Depends: libc, block-mount, kmod-fs-exfat, kmod-fs-ext4, kmod-fs-vfat, libblkid1, kmod-usb-storage, kmod-usb-storage-extras, kmod-usb-storage-uas, kmod-fs-ntfs3
Source: package/lean/automount
SourceName: automount
Section: opt
SourceDateEpoch: 1671816406
Maintainer: Lean
Architecture: aarch64_cortex-a53
Installed-Size: 714
Filename: automount_1-40_aarch64_cortex-a53.ipk
Size: 1470
SHA256sum: bb35af4bb620cb808b82aff13cdfbde60cd5e495e030517546c1fde12719f130
Description: A usb autoconfig hotplug script.
Package: autosamba
Version: 1-13
Depends: libc, luci-app-samba4, wsdd2
Source: package/lean/autosamba
SourceName: autosamba
Section: opt
SourceDateEpoch: 1666672831
Maintainer: Lean
Architecture: aarch64_cortex-a53
Installed-Size: 1176
Filename: autosamba_1-13_aarch64_cortex-a53.ipk
Size: 1904
SHA256sum: 11b4753a4c39db2c531ed442a3ef542980829cea90dd1b7ac4cf7c6689709b37
Description: A hotplug script to config Samba share automatically.
Package: blkid
Version: 2.38.1-1
Depends: libc, libblkid1, libuuid1
Source: package/utils/util-linux
SourceName: blkid
License: GPL-2.0-only
LicenseFiles: COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
SourceDateEpoch: 1674631835
CPE-ID: cpe:/a:kernel:util-linux
Architecture: aarch64_cortex-a53
Installed-Size: 45579
Filename: blkid_2.38.1-1_aarch64_cortex-a53.ipk
Size: 46382
SHA256sum: 764c2d09aa1df2a942a1542d38d39f1382c421d84cb0ac8a2e22082e599e5841
Description: The blkid program is the command-line interface to working with the libblkid
library.
Package: brook
Version: 20230606-2
Depends: libc, ca-bundle
Source: package/openwrt-passwall/brook
SourceName: brook
License: GPL-3.0
LicenseFiles: LICENSE
Section: net
SourceDateEpoch: 1686317523
Maintainer: Tianling Shen <cnsztl@immortalwrt.org>
Architecture: aarch64_cortex-a53
Installed-Size: 7134125
Filename: brook_20230606-2_aarch64_cortex-a53.ipk
Size: 7038627
SHA256sum: 6963bf263293df5069baefa5b4223c4782ca2cd7865ea4fa820a79dd3a5d87c5
Description: Brook is a cross-platform strong encryption and not detectable proxy.
Zero-Configuration.
Package: busybox
Version: 1.36.0-1
Depends: libc
Conflicts: busybox-selinux
Source: package/utils/busybox
SourceName: busybox
License: GPL-2.0
LicenseFiles: LICENSE archival/libarchive/bz/LICENSE
Section: base
Require-User: ntp=123:ntp=123
SourceDateEpoch: 1674631835
CPE-ID: cpe:/a:busybox:busybox
Essential: yes
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 235816
Filename: busybox_1.36.0-1_aarch64_cortex-a53.ipk
Size: 236330
SHA256sum: 3292dde2174c8f9eb84f76f5bb7de2e4e9a7682c2fa12899e09f2223e637a0ed
Description: The Swiss Army Knife of embedded Linux.
It slices, it dices, it makes Julian Fries.
Package: bzip2
Version: 1.0.8-1
Depends: libc, libbz2-1.0
Source: package/utils/bzip2
SourceName: bzip2
License: bzip2-1.0.8
LicenseFiles: LICENSE
Section: utils
SourceDateEpoch: 1593703856
CPE-ID: cpe:/a:bzip:bzip2
Maintainer: Steven Barth <cyrus@openwrt.org>
Architecture: aarch64_cortex-a53
Installed-Size: 12632
Filename: bzip2_1.0.8-1_aarch64_cortex-a53.ipk
Size: 13431
SHA256sum: 458e36c39a6f6f26aee81f2290f1d958eb2d84a34c9ed64a90f251ed6dc5e1ee
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This package provides the binary.
Package: ca-bundle
Version: 20211016-1
Depends: libc
Provides: ca-certs
Source: package/system/ca-certificates
SourceName: ca-bundle
Section: base
SourceDateEpoch: 1670480457
Architecture: all
Installed-Size: 113266
Filename: ca-bundle_20211016-1_all.ipk
Size: 114079
SHA256sum: ca720d5131cb123c93ddfbdb271c96637e29a8157964d61031ca94ea73093e95
Description: System CA certificates as a bundle
Package: ca-certificates
Version: 20211016-1
Depends: libc
Provides: ca-certs
Source: package/system/ca-certificates
SourceName: ca-certificates
Section: base
SourceDateEpoch: 1670480457
Architecture: all
Installed-Size: 122716
Filename: ca-certificates_20211016-1_all.ipk
Size: 123437
SHA256sum: f6d2f000077fcca246e152f84308819482dcc385dc6e93d479204b6852127a90
Description: System CA certificates
Package: cfdisk
Version: 2.38.1-1
Depends: libc, libblkid1, libncurses6, libsmartcols1, libfdisk1, libmount1
Source: package/utils/util-linux
SourceName: cfdisk
License: GPL-2.0-only
LicenseFiles: COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
SourceDateEpoch: 1674631835
CPE-ID: cpe:/a:kernel:util-linux
Architecture: aarch64_cortex-a53
Installed-Size: 37772
Filename: cfdisk_2.38.1-1_aarch64_cortex-a53.ipk
Size: 38388
SHA256sum: 3b1f014364a060ded0a83d722d776a066c55d2257aad9ec10e42cf8a57316012
Description: cfdisk is a curses-based program for partitioning any hard disk drive
Package: chinadns-ng
Version: 2023.04.20-1
Depends: libc, ipset
Source: package/helloworld/chinadns-ng
SourceName: chinadns-ng
License: AGPL-3.0-only
LicenseFiles: LICENSE
Section: net
SourceDateEpoch: 1687030599
Maintainer: pexcn <i@pexcn.me>
Architecture: aarch64_cortex-a53
Installed-Size: 27704
Filename: chinadns-ng_2023.04.20-1_aarch64_cortex-a53.ipk
Size: 28479
SHA256sum: 6c58e52248eea74f576ecf8c697e822ba7ed35a476247c57f79f524bfcc8113d
Description: ChinaDNS next generation, refactoring with epoll and ipset.
Package: ddns-scripts_aliyun
Version: 1.0.3-1
Depends: libc, ddns-scripts, wget-ssl, openssl-util
Source: package/lean/ddns-scripts_aliyun
SourceName: ddns-scripts_aliyun
License: GPLv2
Section: net
SourceDateEpoch: 1675518867
Maintainer: Sense <sensec@gmail.com>
Architecture: all
Installed-Size: 3733
Filename: ddns-scripts_aliyun_1.0.3-1_all.ipk
Size: 4807
SHA256sum: 38cf4a487ec0c5413668b8a28cfb99433a8e1ebe35109b9f2be7a1078768cf0d
Description: Dynamic DNS Client scripts extension for AliYun.com
Package: ddns-scripts_dnspod
Version: 1.0.2-1
Depends: libc, ddns-scripts, wget-ssl, ca-bundle
Source: package/lean/ddns-scripts_dnspod
SourceName: ddns-scripts_dnspod
License: GPLv2
Section: net
SourceDateEpoch: 1678527023
Maintainer: Small_5
Architecture: all
Installed-Size: 2399
Filename: ddns-scripts_dnspod_1.0.2-1_all.ipk
Size: 3468
SHA256sum: 5941407b690e76d429bdfd0dbef85a2b2c141b37acc320b633f607c2747500e2
Description: Dynamic DNS Client scripts extension for Dnspod.com/Dnspod.cn
Package: default-settings
Version: 3-2
Depends: libc, luci-base, luci
Source: package/lean/default-settings
SourceName: default-settings
License: GPLv3
LicenseFiles: LICENSE
Section: luci
SourceDateEpoch: 1688660320
Architecture: all
Installed-Size: 2039
Filename: default-settings_3-2_all.ipk
Size: 2770
SHA256sum: 9329c492c9a1a98871e84f1a476812511aea94482ed2d0a925d47659322f2cc5
Description: Language Support Packages.
Package: dns2socks
Version: 2.1-2
Depends: libc, libpthread
Source: package/helloworld/dns2socks
SourceName: dns2socks
License: BSD-3-Clause
Section: net
SourceDateEpoch: 1668685365
Maintainer: ghostmaker
Architecture: aarch64_cortex-a53
Installed-Size: 11077
Filename: dns2socks_2.1-2_aarch64_cortex-a53.ipk
Size: 11877
SHA256sum: 2a52f53280413c11fe667a1bbdb6c50c079eba6040be0467634d57e891ef409f
Description: This is a command line utility to resolve DNS requests via
a SOCKS tunnel like Tor or a HTTP proxy.
Package: dns2tcp
Version: 1.1.0-1
Depends: libc
Source: package/helloworld/dns2tcp
SourceName: dns2tcp
License: AGPL-3.0-only
LicenseFiles: LICENSE
Section: net
SourceDateEpoch: 1654262844
Maintainer: Tianling Shen <cnsztl@immortalwrt.org>
Architecture: aarch64_cortex-a53
Installed-Size: 11901
Filename: dns2tcp_1.1.0-1_aarch64_cortex-a53.ipk
Size: 12679
SHA256sum: 662f171494bc1906ef83460cf5c603c5e6fccb049f357e820dfca4bbdff563fe
Description: utility to convert dns query from udp to tcp
Package: dnsmasq-full
Version: 2.88-1
Depends: libc, libubus20220601, kmod-ipt-ipset, nftables-json
Provides: dnsmasq
Source: package/network/services/dnsmasq
SourceName: dnsmasq-full
License: GPL-2.0
LicenseFiles: COPYING
Section: net
Require-User: dnsmasq=453:dnsmasq=453
SourceDateEpoch: 1672058431
CPE-ID: cpe:/a:thekelleys:dnsmasq
Architecture: aarch64_cortex-a53
Installed-Size: 175364
Filename: dnsmasq-full_2.88-1_aarch64_cortex-a53.ipk
Size: 176060
SHA256sum: 229e3fd23e79adfbb9c1d3f554bbbd836eff5abc2570bd12d6f334ef6db008a7
Description: It is intended to provide coupled DNS and DHCP service to a LAN.
This is a fully configurable variant with DHCPv4, DHCPv6, DNSSEC, Authoritative DNS
and nftset, Conntrack support & NO_ID enabled by default.
Package: e2fsprogs
Version: 1.46.5-2
Depends: libc, libuuid1, libext2fs2
Source: package/utils/e2fsprogs
SourceName: e2fsprogs
License: GPL-2.0
LicenseFiles: NOTICE
Section: utils
SourceDateEpoch: 1672818075
CPE-ID: cpe:/a:e2fsprogs_project:e2fsprogs
Architecture: aarch64_cortex-a53
Installed-Size: 193674
Filename: e2fsprogs_1.46.5-2_aarch64_cortex-a53.ipk
Size: 194421
SHA256sum: 2ea9f471138b609d79b25d0870e90af8d97a8023ee425f742e00c6aa1a8b5f42
Description: This package contains essential ext2 filesystem utilities which consists of
e2fsck, mke2fs and most of the other core ext2 filesystem utilities.
Package: eip197-mini-firmware
Version: 20230625-1
Depends: libc
Source: package/firmware/linux-firmware
SourceName: eip197-mini-firmware
Section: firmware
SourceDateEpoch: 1689343695
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 423
Filename: eip197-mini-firmware_20230625-1_aarch64_cortex-a53.ipk
Size: 1157
SHA256sum: b2148f8cc05de2e1326f083bf7ff7d2712864c190f4d505cc21469cf0dd8632f
Description: Inside Secure EIP197 mini firmware
Package: fdisk
Version: 2.38.1-1
Depends: libc, libblkid1, libsmartcols1, libfdisk1, libncursesw6
Source: package/utils/util-linux
SourceName: fdisk
License: GPL-2.0-only
LicenseFiles: COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: utils
SourceDateEpoch: 1674631835
CPE-ID: cpe:/a:kernel:util-linux
Architecture: aarch64_cortex-a53
Installed-Size: 55965
Filename: fdisk_2.38.1-1_aarch64_cortex-a53.ipk
Size: 56699
SHA256sum: cc2edf8c2420e7754434b36c97c1825bebbaa11cbfb6d2c4e30830714f71101a
Description: a menu-driven program for creation and manipulation of partition tables
Package: firewall
Version: 2022-02-17-4cd7d4f3-3
Depends: libc, libubox20220927, libubus20220601, libuci20130104, libip4tc2, libip6tc2, libxtables12, kmod-ipt-core, kmod-ipt-conntrack, kmod-nf-conntrack6, kmod-ipt-nat, iptables-mod-fullconenat
Source: package/network/config/firewall
SourceName: firewall
License: ISC
Section: net
SourceDateEpoch: 1681378413
Maintainer: Jo-Philipp Wich <jo@mein.io>
Architecture: aarch64_cortex-a53
Installed-Size: 52872
Filename: firewall_2022-02-17-4cd7d4f3-3_aarch64_cortex-a53.ipk
Size: 53666
SHA256sum: 6d41bc53c537a1ed4daa55f4cf6995d7a70a0d15caef90d19a1191cdd736b2c2
Description: This package provides a config-compatible C implementation of the UCI firewall.
Package: getrandom
Version: 2022-08-13-4c7b720b-14
Depends: libc
Source: package/system/ubox
SourceName: getrandom
License: GPL-2.0
Section: base
SourceDateEpoch: 1672818075
Maintainer: John Crispin <john@phrozen.org>
Architecture: aarch64_cortex-a53
Installed-Size: 1624
Filename: getrandom_2022-08-13-4c7b720b-14_aarch64_cortex-a53.ipk
Size: 2384
SHA256sum: b46422d736230a6bfbfc1be86f1c0ede891eb3997ea932d2057027444e33a54d
Description: OpenWrt getrandom system helper
Package: hostapd-common
Version: 2022-07-29-b704dc72-7
Depends: libc
Source: package/network/services/hostapd
SourceName: hostapd-common
License: BSD-3-Clause
Section: net
SourceDateEpoch: 1683192219
CPE-ID: cpe:/a:w1.fi:hostapd
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 12644
Filename: hostapd-common_2022-07-29-b704dc72-7_aarch64_cortex-a53.ipk
Size: 13429
SHA256sum: 3ca86372af10f14b58731c28f85397b25b541f81fbf34358cc4bcfa0b357425a
Description: hostapd/wpa_supplicant common support files
Package: hysteria
Version: 1.3.5-1
Depends: libc, ca-bundle
Source: package/helloworld/hysteria
SourceName: hysteria
License: MIT
Section: net
SourceDateEpoch: 1686596317
Maintainer: Tianling Shen <cnsztl@immortalwrt.org>
Architecture: aarch64_cortex-a53
Installed-Size: 6280955
Filename: hysteria_1.3.5-1_aarch64_cortex-a53.ipk
Size: 6260577
SHA256sum: 7a7f6604ce7c09aab08228124ed00a67239e8eb2dd286c6504e0d191bbd5cfa5
Description: Hysteria is a feature-packed network utility optimized for networks
of poor quality (e.g. satellite connections, congested public Wi-Fi,
connecting from China to servers abroad) powered by a custom version
of QUIC protocol.
Package: ip-full
Version: 6.2.0-1
Depends: libc, libnl-tiny2022-11-01, libbpf20220308
Provides: ip
Alternatives: 300:/sbin/ip:/usr/libexec/ip-full
Source: package/network/utils/iproute2
SourceName: ip-full
License: GPL-2.0
Section: net
SourceDateEpoch: 1678283784
CPE-ID: cpe:/a:iproute2_project:iproute2
Maintainer: Russell Senior <russell@personaltelco.net>
Architecture: aarch64_cortex-a53
Installed-Size: 234011
Filename: ip-full_6.2.0-1_aarch64_cortex-a53.ipk
Size: 234655
SHA256sum: d270c84b9b652f3e48c44c734931c0aa035428cfb6ad0576554c26283741901d
Description: Routing control utility (full)
Package: ipset
Version: 7.17-1
Depends: libc, kmod-ipt-ipset, libmnl0, libipset13
Source: package/network/utils/ipset
SourceName: ipset
License: GPL-2.0
Section: net
SourceDateEpoch: 1674450162
Maintainer: Jo-Philipp Wich <jo@mein.io>
Architecture: aarch64_cortex-a53
Installed-Size: 1482
Filename: ipset_7.17-1_aarch64_cortex-a53.ipk
Size: 2250
SHA256sum: 10b8eda12975762cd052ea30e683e7db960414499ea052a2152f13da672808d1
Description: IPset administration utility
Package: ipt2socks
Version: 1.1.3-3
Depends: libc, libpthread
Source: package/helloworld/ipt2socks
SourceName: ipt2socks
License: AGPL-3.0
Section: net
SourceDateEpoch: 1683527940
Architecture: aarch64_cortex-a53
Installed-Size: 26485
Filename: ipt2socks_1.1.3-3_aarch64_cortex-a53.ipk
Size: 27189
SHA256sum: 894c5951ceaee7d73cb10eb8e5c1023a8dca6760f9c59cf35ee4e3f1f718fabc
Description: Utility for converting iptables (redirect/tproxy) to socks5.
Package: iptables-mod-fullconenat
Version: 2022-02-13-108a36cb-10
Depends: libc, iptables, kmod-ipt-fullconenat
Source: package/network/services/fullconenat
SourceName: iptables-mod-fullconenat
License: GPL-2.0
LicenseFiles: LICENSE
Section: net
SourceDateEpoch: 1672378208
Maintainer: Chion Tang <tech@chionlab.moe>
Architecture: aarch64_cortex-a53
Installed-Size: 2519
Filename: iptables-mod-fullconenat_2022-02-13-108a36cb-10_aarch64_cortex-a53.ipk
Size: 3275
SHA256sum: 6716f5699d51b71d4065daf9235fcd4edadbdb8abe65921b082d7c1639399e15
Description: FULLCONENAT iptables extension
Package: ipv6helper
Version: 1.0-2
Depends: libc, luci-proto-ipv6, wget, ip6tables, libip6tc2, kmod-ipt-nat6, odhcpd-ipv6only, odhcp6c, 6in4
Source: package/lean/ipv6-helper
SourceName: ipv6helper
License: GPLv3
LicenseFiles: LICENSE
Section: ipv6
SourceDateEpoch: 1637477301
Maintainer: LEAN
Architecture: all
Installed-Size: 403
Filename: ipv6helper_1.0-2_all.ipk
Size: 1281
SHA256sum: c2198e6fedc562edfeac66de38f1d158fffc01baa6d595794b439ac7ac743b83
Description: IPv6 Helper and Dynamic Update he.net of ip
Package: iw
Version: 5.19-1
Depends: libc, libnl-tiny2022-11-01
Source: package/network/utils/iw
SourceName: iw
License: GPL-2.0
Section: net
SourceDateEpoch: 1683192219
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 56308
Filename: iw_5.19-1_aarch64_cortex-a53.ipk
Size: 57085
SHA256sum: b92950515e4025a0073e481d40decd2c5bfdf686bf6ab152e37aa791d4e26213
Description: cfg80211 interface configuration utility
Package: jansson4
Version: 2.14-3
Depends: libc
Provides: jansson
Source: package/libs/jansson
SourceName: jansson
License: MIT
LicenseFiles: LICENSE
Section: libs
SourceDateEpoch: 1670480457
ABIVersion: 4
CPE-ID: cpe:/a:jansson_project:jansson
Architecture: aarch64_cortex-a53
Installed-Size: 24594
Filename: jansson4_2.14-3_aarch64_cortex-a53.ipk
Size: 25348
SHA256sum: 09b4a9ba6812b42d81e74152a74c898fb23e44446086ef2cf4c1f08335105a9c
Description: Jansson is a C library for encoding, decoding and manipulating JSON data
Package: jshn
Version: 2022-09-27-ea560134-1
Depends: libc, libjson-c5, libubox20220927, libblobmsg-json20220927
Source: package/libs/libubox
SourceName: jshn
License: ISC
Section: utils
SourceDateEpoch: 1670480457
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 6815
Filename: jshn_2022-09-27-ea560134-1_aarch64_cortex-a53.ipk
Size: 7598
SHA256sum: 2252a18c396f4ca952643aa37cfbb51d3a81b3a75be838bc86263b2a8c81cd5c
Description: Library for parsing and generating JSON from shell scripts
Package: jsonfilter
Version: 2018-02-04-c7e938d6-1
Depends: libc, libubox20220927, libjson-c5
Source: package/utils/jsonfilter
SourceName: jsonfilter
License: ISC
Section: base
SourceDateEpoch: 1645891617
Maintainer: Jo-Philipp Wich <jo@mein.io>
Architecture: aarch64_cortex-a53
Installed-Size: 10295
Filename: jsonfilter_2018-02-04-c7e938d6-1_aarch64_cortex-a53.ipk
Size: 11035
SHA256sum: 439f6c8eef235b79e84576184177bcbcfcfa0cdd60bb659e0204c0c2362565f3
Description: OpenWrt JSON filter utility
Package: libblkid1
Version: 2.38.1-1
Depends: libc, libuuid1
Provides: libblkid
Source: package/utils/util-linux
SourceName: libblkid
License: GPL-2.0-only
LicenseFiles: COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
SourceDateEpoch: 1674631835
ABIVersion: 1
CPE-ID: cpe:/a:kernel:util-linux
Architecture: aarch64_cortex-a53
Installed-Size: 102287
Filename: libblkid1_2.38.1-1_aarch64_cortex-a53.ipk
Size: 103195
SHA256sum: 71b5e450db130d9e74c277105692dc64c8679a9f45422bc7aa3630b174cdb434
Description: The libblkid library is used to identify block devices (disks) as to their
content (e.g. filesystem type, partitions) as well as extracting additional
information such as filesystem labels/volume names, partitions, unique
identifiers/serial numbers...
Package: libblobmsg-json20220927
Version: 2022-09-27-ea560134-1
Depends: libc, libjson-c5, libubox20220927
Provides: libblobmsg-json
Source: package/libs/libubox
SourceName: libblobmsg-json
License: ISC
Section: libs
SourceDateEpoch: 1670480457
ABIVersion: 20220927
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 4047
Filename: libblobmsg-json20220927_2022-09-27-ea560134-1_aarch64_cortex-a53.ipk
Size: 4797
SHA256sum: 93efc290e37ac152d3df9d62b349d0dd86f31fdf5e79ab52fae02d507020539a
Description: blobmsg <-> json conversion library
Package: libbpf20220308
Version: 2022-03-08-04c465fd-1
Depends: libc, libelf1
Provides: libbpf
Source: package/network/utils/bpftools
SourceName: libbpf
License: LGPL-2.1 OR BSD-2-Clause
Section: libs
SourceDateEpoch: 1663215105
ABIVersion: 20220308
Maintainer: Tony Ambardar <itugrok@yahoo.com>
Architecture: aarch64_cortex-a53
Installed-Size: 138140
Filename: libbpf20220308_2022-03-08-04c465fd-1_aarch64_cortex-a53.ipk
Size: 139038
SHA256sum: 6a21ee8d459d371f5bd906cf68dac8ed99c255408189fa639a42b9ec07afd299
Description: libbpf is a library for loading eBPF programs and reading and manipulating eBPF objects from user-space.
Package: libbz2-1.0
Version: 1.0.8-1
Depends: libc
Provides: libbz2
Source: package/utils/bzip2
SourceName: libbz2
License: bzip2-1.0.8
LicenseFiles: LICENSE
Section: libs
SourceDateEpoch: 1593703856
ABIVersion: -1.0
CPE-ID: cpe:/a:bzip:bzip2
Maintainer: Steven Barth <cyrus@openwrt.org>
Architecture: aarch64_cortex-a53
Installed-Size: 26123
Filename: libbz2-1.0_1.0.8-1_aarch64_cortex-a53.ipk
Size: 26904
SHA256sum: ad0fe5f8b2ced01a9fdf073a37e38ca25aabd7af7ee4404aac12ee1de9969480
Description: bzip2 is a freely available, patent free, high-quality
data compressor. This packages provides libbz2 library.
Package: libcap-bin
Version: 2.68-1
Depends: libc, libcap
Source: package/libs/libcap
SourceName: libcap-bin
License: GPL-2.0-only
LicenseFiles: License
Section: libs
SourceDateEpoch: 1681833556
CPE-ID: cpe:/a:libcap_project:libcap
Maintainer: Paul Wassi <p.wassi@gmx.at>
Architecture: aarch64_cortex-a53
Installed-Size: 20924
Filename: libcap-bin_2.68-1_aarch64_cortex-a53.ipk
Size: 21703
SHA256sum: bbca8c691e58ba2308d6ff56bd5c58d2f42049f4af5c50ad906d0e3d2912efc9
Description: Linux capabilities
.
This package contains the libcap utilities.
Package: libcap
Version: 2.68-1
Depends: libc
Source: package/libs/libcap
SourceName: libcap
License: GPL-2.0-only
LicenseFiles: License
Section: libs
SourceDateEpoch: 1681833556
CPE-ID: cpe:/a:libcap_project:libcap
Maintainer: Paul Wassi <p.wassi@gmx.at>
Architecture: aarch64_cortex-a53
Installed-Size: 16027
Filename: libcap_2.68-1_aarch64_cortex-a53.ipk
Size: 16737
SHA256sum: db4cacd4ebc0c53e937a24175102b42a0e783e4e1cbc0fe800394c34eb61aa80
Description: Linux capabilities library library
Package: libcomerr0
Version: 1.46.5-2
Depends: libc, libuuid1
Provides: libcomerr
Source: package/utils/e2fsprogs
SourceName: libcomerr
License: GPL-2.0
LicenseFiles: NOTICE
Section: libs
SourceDateEpoch: 1672818075
ABIVersion: 0
CPE-ID: cpe:/a:e2fsprogs_project:e2fsprogs
Architecture: aarch64_cortex-a53
Installed-Size: 4200
Filename: libcomerr0_1.46.5-2_aarch64_cortex-a53.ipk
Size: 4986
SHA256sum: d61dffd183171fe67520bbbb6ac41be23a8b8565ce44fd7b57f858b4a0b87ba3
Description: This package contains libcom_err, the common error description library
bundled with e2fsprogs.
Package: libelf1
Version: 0.188-1
Depends: libc, zlib
Provides: libelf, libelf11
Source: package/libs/elfutils
SourceName: libelf
License: GPL-3.0-or-later
LicenseFiles: COPYING COPYING-GPLV2 COPYING-LGPLV3
Section: libs
SourceDateEpoch: 1674738953
ABIVersion: 1
CPE-ID: cpe:/a:elfutils_project:elfutils
Maintainer: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Architecture: aarch64_cortex-a53
Installed-Size: 41460
Filename: libelf1_0.188-1_aarch64_cortex-a53.ipk
Size: 42308
SHA256sum: c95008b915902bc6db24af26d2213dd1dcae158230d6cb6c0faeaf646df904e2
Description: ELF manipulation libraries (libelf)
Package: libeudev
Version: 3.2.10-1
Depends: libc
Conflicts: libudev-zero, udev
Provides: libudev
Source: package/qat/libs/eudev
SourceName: libeudev
License: GPL-2.0
Section: libs
SourceDateEpoch: 1650639027
Maintainer: Ian Cooper <iancooper@hotmail.com>
Architecture: aarch64_cortex-a53
Installed-Size: 61006
Filename: libeudev_3.2.10-1_aarch64_cortex-a53.ipk
Size: 61757
SHA256sum: 569caaea28b6a19c389da8ad8f29d5dd74d10cb0429dac212324874fc26dd1cb
Description: Dynamic device management subsystem
Package: libevent2-7
Version: 2.1.12-1
Depends: libc
Provides: libevent2
Source: package/libs/libevent2
SourceName: libevent2
License: BSD-3-Clause
LicenseFiles: LICENSE
Section: libs
SourceDateEpoch: 1623666608
ABIVersion: -7
CPE-ID: cpe:/a:libevent_project:libevent
Maintainer: Jo-Philipp Wich <jo@mein.io>
Architecture: aarch64_cortex-a53
Installed-Size: 103802
Filename: libevent2-7_2.1.12-1_aarch64_cortex-a53.ipk
Size: 104841
SHA256sum: d6551808f0294e18c3b985026a4da38a4e053b1ab8b1bf98a6d3c3e3d041d257
Description: The libevent API provides a mechanism to execute a callback function
when a specific event occurs on a file descriptor or after a timeout
has been reached. Furthermore, libevent also support callbacks due
to signals or regular timeouts.
libevent is meant to replace the event loop found in event driven
network servers. An application just needs to call event_dispatch()
and then add or remove events dynamically without having to change
the event loop.
This package contains the libevent shared library historically
containing both the core & extra libraries.
Package: libext2fs2
Version: 1.46.5-2
Depends: libc, libuuid1, libblkid1, libss2, libcomerr0
Provides: libext2fs
Source: package/utils/e2fsprogs
SourceName: libext2fs
License: GPL-2.0
LicenseFiles: NOTICE
Section: libs
SourceDateEpoch: 1672818075
ABIVersion: 2
CPE-ID: cpe:/a:e2fsprogs_project:e2fsprogs
Architecture: aarch64_cortex-a53
Installed-Size: 185480
Filename: libext2fs2_1.46.5-2_aarch64_cortex-a53.ipk
Size: 185959
SHA256sum: 9486c70b3ad75d5ad3b5086e6518b542a45890433aa04adf90b5c39f0a5edb61
Description: libext2fs is a library which can access ext2, ext3 and ext4 filesystems.
Package: libfdisk1
Version: 2.38.1-1
Depends: libc, libuuid1, libblkid1
Provides: libfdisk
Source: package/utils/util-linux
SourceName: libfdisk
License: GPL-2.0-only
LicenseFiles: COPYING libblkid/COPYING libmount/COPYING Documentation/licenses/COPYING.GPLv2 Documentation/licenses/COPYING.LGPLv2.1 libuuid/COPYING Documentation/licenses/COPYING.BSD-3
Section: libs
SourceDateEpoch: 1674631835
ABIVersion: 1
CPE-ID: cpe:/a:kernel:util-linux
Architecture: aarch64_cortex-a53
Installed-Size: 141444
Filename: libfdisk1_2.38.1-1_aarch64_cortex-a53.ipk
Size: 142216
SHA256sum: 6e7429921c0949a4d589c95dea32e8a93ca75ca4619212f2bd3b5d847a1197dd
Description: The libfdisk library is used for manipulating with partition tables.
Package: libgmp10
Version: 6.2.1-1
Depends: libc
Provides: libgmp
Source: package/libs/gmp
SourceName: libgmp
License: GPL-2.0-or-later
Section: libs
SourceDateEpoch: 1623666608
ABIVersion: 10
Architecture: aarch64_cortex-a53
Installed-Size: 220811
Filename: libgmp10_6.2.1-1_aarch64_cortex-a53.ipk
Size: 221597
SHA256sum: dd6624bd2af660b8a5392babd071f94422bb9593209d014d817332b2658e5321
Description: GMP is a free library for arbitrary precision arithmetic, operating on
signed integers, rational numbers, and floating point numbers.
Package: libipset13
Version: 7.17-1
Depends: libc, kmod-ipt-ipset, libmnl0
Provides: libipset
Source: package/network/utils/ipset
SourceName: libipset
License: GPL-2.0
Section: net
SourceDateEpoch: 1674450162
ABIVersion: 13
Maintainer: Jo-Philipp Wich <jo@mein.io>
Architecture: aarch64_cortex-a53
Installed-Size: 51324
Filename: libipset13_7.17-1_aarch64_cortex-a53.ipk
Size: 51850
SHA256sum: e9c822328a56982b21a007805da1366e60015b1caf97db2eeb233048a4de2e96
Description: IPset administration utility
Package: libjson-c5
Version: 0.16-2
Depends: libc
Provides: libjson-c
Source: package/libs/libjson-c
SourceName: libjson-c
License: MIT
LicenseFiles: COPYING
Section: libs
SourceDateEpoch: 1670480457
ABIVersion: 5
CPE-ID: cpe:/a:json-c_project:json-c
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 28762
Filename: libjson-c5_0.16-2_aarch64_cortex-a53.ipk
Size: 29522
SHA256sum: a93c19561802488528865f54051e975f5c79ee0d95c34124fc0b4a4d0ae8ea34
Description: This package contains a library for javascript object notation backends.
Package: libjson-script20220927
Version: 2022-09-27-ea560134-1
Depends: libc, libubox20220927
Provides: libjson-script
Source: package/libs/libubox
SourceName: libjson-script
License: ISC
Section: utils
SourceDateEpoch: 1670480457
ABIVersion: 20220927
Maintainer: Felix Fietkau <nbd@nbd.name>
Architecture: aarch64_cortex-a53
Installed-Size: 5475
Filename: libjson-script20220927_2022-09-27-ea560134-1_aarch64_cortex-a53.ipk
Size: 6224
SHA256sum: c3062a7c0ec9d832cb191bb9bf5af451ab19b32a1393d8887533d1212bb240e9
Description: Minimalistic JSON based scripting engine
Package: libltdl7
Version: 2.4.7-1
Depends: libc
Provides: libltdl
Source: package/libs/libtool
SourceName: libltdl
License: GPL-2.0+
LicenseFiles: COPYING
Section: libs
SourceDateEpoch: 1670227108
ABIVersion: 7
CPE-ID: cpe:/a:gnu:libtool
Architecture: aarch64_cortex-a53
Installed-Size: 15144
Filename: libltdl7_2.4.7-1_aarch64_cortex-a53.ipk
Size: 15892
SHA256sum: fd7a43e495ea0b7a68a183f74c6a1ba60a7c75e2fc2933dbf01906da960578c5
Description: A generic dynamic object loading library
Package: liblua5.1.5
Version: 5.1.5-10
Depends: libc